@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;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-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-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-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-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-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-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
}
.elxr_elxr_twisterInUp {
  -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-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-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-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);
  }
}
@-moz-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2,2);
    -moz-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1,1);
    -moz-filter: blur(0px);
  }
}
@-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);
  }
}
@-o-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1,1);
    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);
  }
}#jr_overlay{top:0;left:0;padding:0;margin:0;z-index:2147483646;position:absolute}#jr_wrap{position:absolute;text-align:center;width:100%;z-index:2147483647;padding:0;margin:0}#jr_inner{font-family:"Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;font-size:12px;background:#FFF;border:1px solid #CCC;color:#4f4f4f;margin:0 auto;height:auto;padding:20px;position:relative}#jr_header{display:block;color:#333;padding:5px;padding-bottom:0;margin:0;font-family:Helvetica,Arial,sans-serif;font-weight:bold;text-align:left;font-size:1.3em;margin-bottom:.5em}#jr_inner p{text-align:left;padding:5px;margin:0}#jr_inner ul{list-style-image:none;list-style-position:outside;list-style-type:none;margin:0;padding:0}#jr_inner ul li{cursor:pointer;float:left;width:120px;height:122px;margin:0 10px 10px 10px;padding:0;text-align:center}#jr_inner li a{color:#333;font-size:.8em;text-decoration:none;padding:0;margin:0}#jr_inner li a:hover{text-decoration:underline}#jr_inner .jr_icon{width:100px;height:100px;margin:1px auto;padding:0;background:transparent no-repeat scroll left top;cursor:pointer}#jr_close{margin:0 0 0 50px;clear:both;text-align:left;padding:0;margin:0}#jr_close a{color:#000;display:block;width:auto;margin:0;padding:0;text-decoration:underline}#jr_close p{padding:10px 0 0 0;margin:0}h1#jr_header{letter-spacing:1px!important}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_7095Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_7095Calligrapher, .stacks_in_7095Calligrapher h1, .stacks_in_7095Calligrapher h2, .stacks_in_7095Calligrapher h3, .stacks_in_7095Calligrapher h4, .stacks_in_7095Calligrapher h5, .stacks_in_7095Calligrapher h6{	font-family: Georgia, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_7095targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_7095 {
	margin: 20px 0px 0px 0px;
}



/* Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=d8af81a1923d4f2ba59a)
 * Config saved to config.json and https://gist.github.com/d8af81a1923d4f2ba59a
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

#stacks_in_7097 .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_7097 .btn:focus,
#stacks_in_7097 .btn:active:focus,
#stacks_in_7097 .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
#stacks_in_7097 .btn:hover,
#stacks_in_7097 .btn:focus {
  color: #333333;
  text-decoration: none;
}
#stacks_in_7097 .btn:active,
#stacks_in_7097 .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
#stacks_in_7097 .btn.disabled,
#stacks_in_7097 .btn[disabled],
#stacks_in_7097 fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_7097 .btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
#stacks_in_7097 .btn-default:hover,
#stacks_in_7097 .btn-default:focus,
#stacks_in_7097 .btn-default:active,
#stacks_in_7097 .btn-default.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
#stacks_in_7097 .btn-default:active,
#stacks_in_7097 .btn-default.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-default {
  background-image: none;
}
#stacks_in_7097 .btn-default.disabled,
#stacks_in_7097 .btn-default[disabled],
#stacks_in_7097 fieldset[disabled] .btn-default,
#stacks_in_7097 .btn-default.disabled:hover,
#stacks_in_7097 .btn-default[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-default:hover,
#stacks_in_7097 .btn-default.disabled:focus,
#stacks_in_7097 .btn-default[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-default:focus,
#stacks_in_7097 .btn-default.disabled:active,
#stacks_in_7097 .btn-default[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-default:active,
#stacks_in_7097 .btn-default.disabled.active,
#stacks_in_7097 .btn-default[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc;
}
#stacks_in_7097 .btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
#stacks_in_7097 .btn-primary {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}
#stacks_in_7097 .btn-primary:hover,
#stacks_in_7097 .btn-primary:focus,
#stacks_in_7097 .btn-primary:active,
#stacks_in_7097 .btn-primary.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #3071a9;
  border-color: #285e8e;
}
#stacks_in_7097 .btn-primary:active,
#stacks_in_7097 .btn-primary.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-primary {
  background-image: none;
}
#stacks_in_7097 .btn-primary.disabled,
#stacks_in_7097 .btn-primary[disabled],
#stacks_in_7097 fieldset[disabled] .btn-primary,
#stacks_in_7097 .btn-primary.disabled:hover,
#stacks_in_7097 .btn-primary[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-primary:hover,
#stacks_in_7097 .btn-primary.disabled:focus,
#stacks_in_7097 .btn-primary[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-primary:focus,
#stacks_in_7097 .btn-primary.disabled:active,
#stacks_in_7097 .btn-primary[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-primary:active,
#stacks_in_7097 .btn-primary.disabled.active,
#stacks_in_7097 .btn-primary[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
#stacks_in_7097 .btn-primary .badge {
  color: #428bca;
  background-color: #ffffff;
}
#stacks_in_7097 .btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
#stacks_in_7097 .btn-success:hover,
#stacks_in_7097 .btn-success:focus,
#stacks_in_7097 .btn-success:active,
#stacks_in_7097 .btn-success.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
#stacks_in_7097 .btn-success:active,
#stacks_in_7097 .btn-success.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-success {
  background-image: none;
}
#stacks_in_7097 .btn-success.disabled,
#stacks_in_7097 .btn-success[disabled],
#stacks_in_7097 fieldset[disabled] .btn-success,
#stacks_in_7097 .btn-success.disabled:hover,
#stacks_in_7097 .btn-success[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-success:hover,
#stacks_in_7097 .btn-success.disabled:focus,
#stacks_in_7097 .btn-success[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-success:focus,
#stacks_in_7097 .btn-success.disabled:active,
#stacks_in_7097 .btn-success[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-success:active,
#stacks_in_7097 .btn-success.disabled.active,
#stacks_in_7097 .btn-success[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
#stacks_in_7097 .btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}
#stacks_in_7097 .btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
#stacks_in_7097 .btn-info:hover,
#stacks_in_7097 .btn-info:focus,
#stacks_in_7097 .btn-info:active,
#stacks_in_7097 .btn-info.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
#stacks_in_7097 .btn-info:active,
#stacks_in_7097 .btn-info.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-info {
  background-image: none;
}
#stacks_in_7097 .btn-info.disabled,
#stacks_in_7097 .btn-info[disabled],
#stacks_in_7097 fieldset[disabled] .btn-info,
#stacks_in_7097 .btn-info.disabled:hover,
#stacks_in_7097 .btn-info[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-info:hover,
#stacks_in_7097 .btn-info.disabled:focus,
#stacks_in_7097 .btn-info[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-info:focus,
#stacks_in_7097 .btn-info.disabled:active,
#stacks_in_7097 .btn-info[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-info:active,
#stacks_in_7097 .btn-info.disabled.active,
#stacks_in_7097 .btn-info[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
#stacks_in_7097 .btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
#stacks_in_7097 .btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
#stacks_in_7097 .btn-warning:hover,
#stacks_in_7097 .btn-warning:focus,
#stacks_in_7097 .btn-warning:active,
#stacks_in_7097 .btn-warning.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
#stacks_in_7097 .btn-warning:active,
#stacks_in_7097 .btn-warning.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-warning {
  background-image: none;
}
#stacks_in_7097 .btn-warning.disabled,
#stacks_in_7097 .btn-warning[disabled],
#stacks_in_7097 fieldset[disabled] .btn-warning,
#stacks_in_7097 .btn-warning.disabled:hover,
#stacks_in_7097 .btn-warning[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-warning:hover,
#stacks_in_7097 .btn-warning.disabled:focus,
#stacks_in_7097 .btn-warning[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-warning:focus,
#stacks_in_7097 .btn-warning.disabled:active,
#stacks_in_7097 .btn-warning[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-warning:active,
#stacks_in_7097 .btn-warning.disabled.active,
#stacks_in_7097 .btn-warning[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
#stacks_in_7097 .btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
#stacks_in_7097 .btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
#stacks_in_7097 .btn-danger:hover,
#stacks_in_7097 .btn-danger:focus,
#stacks_in_7097 .btn-danger:active,
#stacks_in_7097 .btn-danger.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
#stacks_in_7097 .btn-danger:active,
#stacks_in_7097 .btn-danger.active,
#stacks_in_7097 .open > .dropdown-toggle.btn-danger {
  background-image: none;
}
#stacks_in_7097 .btn-danger.disabled,
#stacks_in_7097 .btn-danger[disabled],
#stacks_in_7097 fieldset[disabled] .btn-danger,
#stacks_in_7097 .btn-danger.disabled:hover,
#stacks_in_7097 .btn-danger[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-danger:hover,
#stacks_in_7097 .btn-danger.disabled:focus,
#stacks_in_7097 .btn-danger[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-danger:focus,
#stacks_in_7097 .btn-danger.disabled:active,
#stacks_in_7097 .btn-danger[disabled]:active,
#stacks_in_7097 fieldset[disabled] .btn-danger:active,
#stacks_in_7097 .btn-danger.disabled.active,
#stacks_in_7097 .btn-danger[disabled].active,
#stacks_in_7097 fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
#stacks_in_7097 .btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}
#stacks_in_7097 .btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
#stacks_in_7097 .btn-link,
#stacks_in_7097 .btn-link:active,
#stacks_in_7097 .btn-link[disabled],
#stacks_in_7097 fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_7097 .btn-link,
#stacks_in_7097 .btn-link:hover,
#stacks_in_7097 .btn-link:focus,
#stacks_in_7097 .btn-link:active {
  border-color: transparent;
}
#stacks_in_7097 .btn-link:hover,
#stacks_in_7097 .btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
#stacks_in_7097 .btn-link[disabled]:hover,
#stacks_in_7097 fieldset[disabled] .btn-link:hover,
#stacks_in_7097 .btn-link[disabled]:focus,
#stacks_in_7097 fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
#stacks_in_7097 .btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
#stacks_in_7097 .btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
#stacks_in_7097 .btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
#stacks_in_7097 .btn-block {
  display: block;
  width: 100%;
}
#stacks_in_7097 .btn-block + .btn-block {
  margin-top: 5px;
}
#stacks_in_7097 input[type="submit"].btn-block,
#stacks_in_7097 input[type="reset"].btn-block,
#stacks_in_7097 input[type="button"].btn-block {
  width: 100%;
}
#stacks_in_7097 .clearfix:before,
#stacks_in_7097 .clearfix:after {
  content: " ";
  display: table;
}
#stacks_in_7097 .clearfix:after {
  clear: both;
}
#stacks_in_7097 .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#stacks_in_7097 .pull-right {
  float: right !important;
}
#stacks_in_7097 .pull-left {
  float: left !important;
}
#stacks_in_7097 .hide {
  display: none !important;
}
#stacks_in_7097 .show {
  display: block !important;
}
#stacks_in_7097 .invisible {
  visibility: hidden;
}
#stacks_in_7097 .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
#stacks_in_7097 .hidden {
  display: none !important;
  visibility: hidden !important;
}
#stacks_in_7097 .affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#stacks_in_7097 a.editIcon i.log-in { font-size: 22px;	}

#stacks_in_7097 a.editIcon i.log-in{ color: rgba(186, 186, 186, 1.00); }
#stacks_in_7097 a.editIcon i.log-in:hover{ color: rgba(69, 188, 225, 1.00); } 

#stacks_in_7097 .remove{ display: none; }
#stacks_in_7097 .ed-btn{ text-decoration: none; color: #FFFFFF !important; background-color: #FFFFFF !important; border-color: #BFBFBF !important; }

#stacks_in_7097 .ed-btn:hover { background-color: #F2F2F2 !important; border-color: #D8D8D8 !important; }

#stacks_in_7097 .ed-btn.link{background-color: none !important; background: none;}
#stacks_in_7097 table td ul{padding-left: 15px;}
#stacks_in_7097 span{	font-weight: normal; font-style: normal; }


/* PREVIEW */

#stacks_in_7097 {
	margin: 0px 0px 120px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_16621 article,
#stacks_in_16621 aside,
#stacks_in_16621 details,
#stacks_in_16621 figcaption,
#stacks_in_16621 figure,
#stacks_in_16621 footer,
#stacks_in_16621 header,
#stacks_in_16621 hgroup,
#stacks_in_16621 main,
#stacks_in_16621 nav,
#stacks_in_16621 section,
#stacks_in_16621 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_16621 audio,
#stacks_in_16621 canvas,
#stacks_in_16621 progress,
#stacks_in_16621 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_16621 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_16621 [hidden],
#stacks_in_16621 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_16621 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_16621 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_16621 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_16621 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_16621 code,
#stacks_in_16621 kbd,
#stacks_in_16621 pre,
#stacks_in_16621 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */
%[if ]%
  %[if edit]%
    #stacks_in_16621 {
      background-image: url(../files/images/preview_numbers_background.png), url(../files/images/preview_striped_background.png);
      background-repeat: no-repeat, repeat-y;
      background-size: 100%, 100%;
      background-position: center top, center 100px;
      border-radius: 4px;
      padding-top: 75px;
      padding-bottom: 25px;
      border: 1px solid #e9e9e9;
    }
  %[endif]%
%[endif]%

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

%[if !edit]%
#stacks_in_16621 .wow {
  visibility: hidden;
}
%[endif]%

#stacks_in_16621>ul li {
  padding-bottom: 0 !important;
}

/* iPhone aka SMALL */
@media only screen {
  #stacks_in_16621>ul>li {
    margin-bottom: px;
  }
}



%[if ]%
/* iPad aka MEDIUM */
@media only screen and (min-width: 40.063em) {
  #stacks_in_16621>ul>li {
    margin-bottom: px;
  }
}
%[endif]%


%[if ]%
/* Desktop aka LARGE */
@media only screen and (min-width: 64.063em) {
  #stacks_in_16621>ul>li {
    margin-bottom: px;
  }
}
%[endif]%





/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.   

*/


#stacks_in_16621 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_16621 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_16621 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_16621 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_16621 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_16621 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_16621 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_16621 .left {
  float: left !important; }

#stacks_in_16621 .right {
  float: right !important; }

#stacks_in_16621 .clearfix:before, 
#stacks_in_16621 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_16621 .clearfix:after {
  clear: both; }

#stacks_in_16621 .hide {
  display: none; }

#stacks_in_16621 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_16621 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_16621 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_16621 select {
  width: 100%; }

#stacks_in_16621 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}


#stacks_in_16621 .row {
  max-width: 62.5em; 
}


#stacks_in_16621 .row:before, 
#stacks_in_16621 .row:after {
  content: " ";
  display: table; }

#stacks_in_16621 .row:after {
  clear: both; }

#stacks_in_16621 .row.collapse > .column,
#stacks_in_16621 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_16621 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_16621 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_16621 .row .row:before, 
#stacks_in_16621 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_16621 .row .row:after {
  clear: both; }

#stacks_in_16621 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_16621 .row .row.collapse:before, 
#stacks_in_16621 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_16621 .row .row.collapse:after {
  clear: both; }

#stacks_in_16621 .column,
#stacks_in_16621 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left; }

#stacks_in_16621 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_16621 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_16621 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16621 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16621 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16621 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16621 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16621 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16621 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16621 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16621 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16621 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16621 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16621 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16621 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16621 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16621 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16621 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16621 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16621 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16621 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16621 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16621 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16621 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16621 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16621 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16621 .column,
  #stacks_in_16621 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16621 .small-1 {
    width: 8.33333%; }

  #stacks_in_16621 .small-2 {
    width: 16.66667%; }

  #stacks_in_16621 .small-3 {
    width: 25%; }

  #stacks_in_16621 .small-4 {
    width: 33.33333%; }

  #stacks_in_16621 .small-5 {
    width: 41.66667%; }

  #stacks_in_16621 .small-6 {
    width: 50%; }

  #stacks_in_16621 .small-7 {
    width: 58.33333%; }

  #stacks_in_16621 .small-8 {
    width: 66.66667%; }

  #stacks_in_16621 .small-9 {
    width: 75%; }

  #stacks_in_16621 .small-10 {
    width: 83.33333%; }

  #stacks_in_16621 .small-11 {
    width: 91.66667%; }

  #stacks_in_16621 .small-12 {
    width: 100%; }

  #stacks_in_16621 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16621 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16621 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16621 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16621 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16621 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16621 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16621 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16621 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16621 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16621 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16621 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16621 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16621 .column.small-centered,
  #stacks_in_16621 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16621 .column.small-uncentered,
  #stacks_in_16621 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16621 .column.small-centered:last-child,
  #stacks_in_16621 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_16621 .column.small-uncentered:last-child,
  #stacks_in_16621 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_16621 .column.small-uncentered.opposite,
  #stacks_in_16621 .columns.small-uncentered.opposite {
    float: right; } 
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_16621 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16621 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16621 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16621 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16621 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16621 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16621 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16621 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16621 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16621 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16621 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16621 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16621 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16621 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16621 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16621 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16621 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16621 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16621 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16621 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16621 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16621 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16621 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16621 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16621 .column,
  #stacks_in_16621 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16621 .medium-1 {
    width: 8.33333%; }

  #stacks_in_16621 .medium-2 {
    width: 16.66667%; }

  #stacks_in_16621 .medium-3 {
    width: 25%; }

  #stacks_in_16621 .medium-4 {
    width: 33.33333%; }

  #stacks_in_16621 .medium-5 {
    width: 41.66667%; }

  #stacks_in_16621 .medium-6 {
    width: 50%; }

  #stacks_in_16621 .medium-7 {
    width: 58.33333%; }

  #stacks_in_16621 .medium-8 {
    width: 66.66667%; }

  #stacks_in_16621 .medium-9 {
    width: 75%; }

  #stacks_in_16621 .medium-10 {
    width: 83.33333%; }

  #stacks_in_16621 .medium-11 {
    width: 91.66667%; }

  #stacks_in_16621 .medium-12 {
    width: 100%; }

  #stacks_in_16621 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16621 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16621 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16621 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16621 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16621 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16621 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16621 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16621 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16621 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16621 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16621 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16621 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16621 .column.medium-centered,
  #stacks_in_16621 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16621 .column.medium-uncentered,
  #stacks_in_16621 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16621 .column.medium-centered:last-child,
  #stacks_in_16621 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_16621 .column.medium-uncentered:last-child,
  #stacks_in_16621 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_16621 .column.medium-uncentered.opposite,
  #stacks_in_16621 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_16621 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16621 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16621 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16621 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16621 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16621 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16621 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16621 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16621 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16621 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16621 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16621 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16621 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16621 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16621 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16621 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16621 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16621 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16621 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16621 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16621 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16621 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16621 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16621 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_16621 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16621 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16621 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16621 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16621 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16621 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16621 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16621 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16621 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16621 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16621 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16621 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16621 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16621 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16621 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16621 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16621 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16621 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16621 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16621 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16621 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16621 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16621 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16621 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16621 .column,
  #stacks_in_16621 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16621 .large-1 {
    width: 8.33333%; }

  #stacks_in_16621 .large-2 {
    width: 16.66667%; }

  #stacks_in_16621 .large-3 {
    width: 25%; }

  #stacks_in_16621 .large-4 {
    width: 33.33333%; }

  #stacks_in_16621 .large-5 {
    width: 41.66667%; }

  #stacks_in_16621 .large-6 {
    width: 50%; }

  #stacks_in_16621 .large-7 {
    width: 58.33333%; }

  #stacks_in_16621 .large-8 {
    width: 66.66667%; }

  #stacks_in_16621 .large-9 {
    width: 75%; }

  #stacks_in_16621 .large-10 {
    width: 83.33333%; }

  #stacks_in_16621 .large-11 {
    width: 91.66667%; }

  #stacks_in_16621 .large-12 {
    width: 100%; }

  #stacks_in_16621 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16621 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16621 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16621 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16621 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16621 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16621 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16621 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16621 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16621 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16621 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16621 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16621 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16621 .column.large-centered,
  #stacks_in_16621 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16621 .column.large-uncentered,
  #stacks_in_16621 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16621 .column.large-centered:last-child,
  #stacks_in_16621 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_16621 .column.large-uncentered:last-child,
  #stacks_in_16621 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_16621 .column.large-uncentered.opposite,
  #stacks_in_16621 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_16621 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16621 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16621 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16621 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16621 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16621 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16621 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16621 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16621 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16621 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16621 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16621 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16621 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16621 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16621 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16621 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16621 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16621 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16621 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16621 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16621 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16621 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16621 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16621 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

#stacks_in_16621 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_16621 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_16621 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_16621 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_16621 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_16621 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_16621 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_16621 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16621 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16621 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 40.063em) {
#stacks_in_16621 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16621 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16621 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 64.063em) {
#stacks_in_16621 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16621 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16621 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16621 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

/* Visibility CSS - Foundation */

/* small displays */
@media only screen {
  #stacks_in_16621 .show-for-small-only, #stacks_in_16621 .show-for-small-up, #stacks_in_16621 .show-for-small, #stacks_in_16621 .show-for-small-down, #stacks_in_16621 .hide-for-medium-only, #stacks_in_16621 .hide-for-medium-up, #stacks_in_16621 .hide-for-medium, #stacks_in_16621 .show-for-medium-down, #stacks_in_16621 .hide-for-large-only, #stacks_in_16621 .hide-for-large-up, #stacks_in_16621 .hide-for-large, #stacks_in_16621 .show-for-large-down, #stacks_in_16621 .hide-for-xlarge-only, #stacks_in_16621 .hide-for-xlarge-up, #stacks_in_16621 .hide-for-xxlarge-only, #stacks_in_16621 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16621 .hide-for-small-only, #stacks_in_16621 .hide-for-small-up, #stacks_in_16621 .hide-for-small, #stacks_in_16621 .hide-for-small-down, #stacks_in_16621 .show-for-medium-only, #stacks_in_16621 .show-for-medium-up, #stacks_in_16621 .show-for-medium, #stacks_in_16621 .hide-for-medium-down, #stacks_in_16621 .show-for-large-only, #stacks_in_16621 .show-for-large-up, #stacks_in_16621 .show-for-large, #stacks_in_16621 .hide-for-large-down, #stacks_in_16621 .show-for-xlarge-only, #stacks_in_16621 .show-for-xlarge-up, #stacks_in_16621 .show-for-xxlarge-only, #stacks_in_16621 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16621 .visible-for-small-only, #stacks_in_16621 .visible-for-small-up, #stacks_in_16621 .visible-for-small, #stacks_in_16621 .visible-for-small-down, #stacks_in_16621 .hidden-for-medium-only, #stacks_in_16621 .hidden-for-medium-up, #stacks_in_16621 .hidden-for-medium, #stacks_in_16621 .visible-for-medium-down, #stacks_in_16621 .hidden-for-large-only, #stacks_in_16621 .hidden-for-large-up, #stacks_in_16621 .hidden-for-large, #stacks_in_16621 .visible-for-large-down, #stacks_in_16621 .hidden-for-xlarge-only, #stacks_in_16621 .hidden-for-xlarge-up, #stacks_in_16621 .hidden-for-xxlarge-only, #stacks_in_16621 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16621 .hidden-for-small-only, #stacks_in_16621 .hidden-for-small-up, #stacks_in_16621 .hidden-for-small, #stacks_in_16621 .hidden-for-small-down, #stacks_in_16621 .visible-for-medium-only, #stacks_in_16621 .visible-for-medium-up, #stacks_in_16621 .visible-for-medium, #stacks_in_16621 .hidden-for-medium-down, #stacks_in_16621 .visible-for-large-only, #stacks_in_16621 .visible-for-large-up, #stacks_in_16621 .visible-for-large, #stacks_in_16621 .hidden-for-large-down, #stacks_in_16621 .visible-for-xlarge-only, #stacks_in_16621 .visible-for-xlarge-up, #stacks_in_16621 .visible-for-xxlarge-only, #stacks_in_16621 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16621 table.show-for-small-only, #stacks_in_16621 table.show-for-small-up, #stacks_in_16621 table.show-for-small, #stacks_in_16621 table.show-for-small-down, #stacks_in_16621 table.hide-for-medium-only, #stacks_in_16621 table.hide-for-medium-up, #stacks_in_16621 table.hide-for-medium, #stacks_in_16621 table.show-for-medium-down, #stacks_in_16621 table.hide-for-large-only, #stacks_in_16621 table.hide-for-large-up, #stacks_in_16621 table.hide-for-large, #stacks_in_16621 table.show-for-large-down, #stacks_in_16621 table.hide-for-xlarge-only, #stacks_in_16621 table.hide-for-xlarge-up, #stacks_in_16621 table.hide-for-xxlarge-only, #stacks_in_16621 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16621 thead.show-for-small-only, #stacks_in_16621 thead.show-for-small-up, #stacks_in_16621 thead.show-for-small, #stacks_in_16621 thead.show-for-small-down, #stacks_in_16621 thead.hide-for-medium-only, #stacks_in_16621 thead.hide-for-medium-up, #stacks_in_16621 thead.hide-for-medium, #stacks_in_16621 thead.show-for-medium-down, #stacks_in_16621 thead.hide-for-large-only, #stacks_in_16621 thead.hide-for-large-up, #stacks_in_16621 thead.hide-for-large, #stacks_in_16621 thead.show-for-large-down, #stacks_in_16621 thead.hide-for-xlarge-only, #stacks_in_16621 thead.hide-for-xlarge-up, #stacks_in_16621 thead.hide-for-xxlarge-only, #stacks_in_16621 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.show-for-small-only, #stacks_in_16621 tbody.show-for-small-up, #stacks_in_16621 tbody.show-for-small, #stacks_in_16621 tbody.show-for-small-down, #stacks_in_16621 tbody.hide-for-medium-only, #stacks_in_16621 tbody.hide-for-medium-up, #stacks_in_16621 tbody.hide-for-medium, #stacks_in_16621 tbody.show-for-medium-down, #stacks_in_16621 tbody.hide-for-large-only, #stacks_in_16621 tbody.hide-for-large-up, #stacks_in_16621 tbody.hide-for-large, #stacks_in_16621 tbody.show-for-large-down, #stacks_in_16621 tbody.hide-for-xlarge-only, #stacks_in_16621 tbody.hide-for-xlarge-up, #stacks_in_16621 tbody.hide-for-xxlarge-only, #stacks_in_16621 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16621 tr.show-for-small-only, #stacks_in_16621 tr.show-for-small-up, #stacks_in_16621 tr.show-for-small, #stacks_in_16621 tr.show-for-small-down, #stacks_in_16621 tr.hide-for-medium-only, #stacks_in_16621 tr.hide-for-medium-up, #stacks_in_16621 tr.hide-for-medium, #stacks_in_16621 tr.show-for-medium-down, #stacks_in_16621 tr.hide-for-large-only, #stacks_in_16621 tr.hide-for-large-up, #stacks_in_16621 tr.hide-for-large, #stacks_in_16621 tr.show-for-large-down, #stacks_in_16621 tr.hide-for-xlarge-only, #stacks_in_16621 tr.hide-for-xlarge-up, #stacks_in_16621 tr.hide-for-xxlarge-only, #stacks_in_16621 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16621 th.show-for-small-only, #stacks_in_16621 td.show-for-small-only, #stacks_in_16621 th.show-for-small-up, #stacks_in_16621 td.show-for-small-up, #stacks_in_16621 th.show-for-small, #stacks_in_16621 td.show-for-small, #stacks_in_16621 th.show-for-small-down, #stacks_in_16621 td.show-for-small-down, #stacks_in_16621 th.hide-for-medium-only, #stacks_in_16621 td.hide-for-medium-only, #stacks_in_16621 th.hide-for-medium-up, #stacks_in_16621 td.hide-for-medium-up, #stacks_in_16621 th.hide-for-medium, #stacks_in_16621 td.hide-for-medium, #stacks_in_16621 th.show-for-medium-down, #stacks_in_16621 td.show-for-medium-down, #stacks_in_16621 th.hide-for-large-only, #stacks_in_16621 td.hide-for-large-only, #stacks_in_16621 th.hide-for-large-up, #stacks_in_16621 td.hide-for-large-up, #stacks_in_16621 th.hide-for-large, #stacks_in_16621 td.hide-for-large, #stacks_in_16621 th.show-for-large-down, #stacks_in_16621 td.show-for-large-down, #stacks_in_16621 th.hide-for-xlarge-only, #stacks_in_16621 td.hide-for-xlarge-only, #stacks_in_16621 th.hide-for-xlarge-up, #stacks_in_16621 td.hide-for-xlarge-up, #stacks_in_16621 th.hide-for-xxlarge-only, #stacks_in_16621 td.hide-for-xxlarge-only, #stacks_in_16621 th.hide-for-xxlarge-up, #stacks_in_16621 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* medium displays */
@media only screen and (min-width: 40.063em) {
  #stacks_in_16621 .hide-for-small-only, #stacks_in_16621 .show-for-small-up, #stacks_in_16621 .hide-for-small, #stacks_in_16621 .hide-for-small-down, #stacks_in_16621 .show-for-medium-only, #stacks_in_16621 .show-for-medium-up, #stacks_in_16621 .show-for-medium, #stacks_in_16621 .show-for-medium-down, #stacks_in_16621 .hide-for-large-only, #stacks_in_16621 .hide-for-large-up, #stacks_in_16621 .hide-for-large, #stacks_in_16621 .show-for-large-down, #stacks_in_16621 .hide-for-xlarge-only, #stacks_in_16621 .hide-for-xlarge-up, #stacks_in_16621 .hide-for-xxlarge-only, #stacks_in_16621 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16621 .show-for-small-only, #stacks_in_16621 .hide-for-small-up, #stacks_in_16621 .show-for-small, #stacks_in_16621 .show-for-small-down, #stacks_in_16621 .hide-for-medium-only, #stacks_in_16621 .hide-for-medium-up, #stacks_in_16621 .hide-for-medium, #stacks_in_16621 .hide-for-medium-down, #stacks_in_16621 .show-for-large-only, #stacks_in_16621 .show-for-large-up, #stacks_in_16621 .show-for-large, #stacks_in_16621 .hide-for-large-down, #stacks_in_16621 .show-for-xlarge-only, #stacks_in_16621 .show-for-xlarge-up, #stacks_in_16621 .show-for-xxlarge-only, #stacks_in_16621 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16621 .hidden-for-small-only, #stacks_in_16621 .visible-for-small-up, #stacks_in_16621 .hidden-for-small, #stacks_in_16621 .hidden-for-small-down, #stacks_in_16621 .visible-for-medium-only, #stacks_in_16621 .visible-for-medium-up, #stacks_in_16621 .visible-for-medium, #stacks_in_16621 .visible-for-medium-down, #stacks_in_16621 .hidden-for-large-only, #stacks_in_16621 .hidden-for-large-up, #stacks_in_16621 .hidden-for-large, #stacks_in_16621 .visible-for-large-down, #stacks_in_16621 .hidden-for-xlarge-only, #stacks_in_16621 .hidden-for-xlarge-up, #stacks_in_16621 .hidden-for-xxlarge-only, #stacks_in_16621 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16621 .visible-for-small-only, #stacks_in_16621 .hidden-for-small-up, #stacks_in_16621 .visible-for-small, #stacks_in_16621 .visible-for-small-down, #stacks_in_16621 .hidden-for-medium-only, #stacks_in_16621 .hidden-for-medium-up, #stacks_in_16621 .hidden-for-medium, #stacks_in_16621 .hidden-for-medium-down, #stacks_in_16621 .visible-for-large-only, #stacks_in_16621 .visible-for-large-up, #stacks_in_16621 .visible-for-large, #stacks_in_16621 .hidden-for-large-down, #stacks_in_16621 .visible-for-xlarge-only, #stacks_in_16621 .visible-for-xlarge-up, #stacks_in_16621 .visible-for-xxlarge-only, #stacks_in_16621 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16621 table.hide-for-small-only, #stacks_in_16621 table.show-for-small-up, #stacks_in_16621 table.hide-for-small, #stacks_in_16621 table.hide-for-small-down, #stacks_in_16621 table.show-for-medium-only, #stacks_in_16621 table.show-for-medium-up, #stacks_in_16621 table.show-for-medium, #stacks_in_16621 table.show-for-medium-down, #stacks_in_16621 table.hide-for-large-only, #stacks_in_16621 table.hide-for-large-up, #stacks_in_16621 table.hide-for-large, #stacks_in_16621 table.show-for-large-down, #stacks_in_16621 table.hide-for-xlarge-only, #stacks_in_16621 table.hide-for-xlarge-up, #stacks_in_16621 table.hide-for-xxlarge-only, #stacks_in_16621 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16621 thead.hide-for-small-only, #stacks_in_16621 thead.show-for-small-up, #stacks_in_16621 thead.hide-for-small, #stacks_in_16621 thead.hide-for-small-down, #stacks_in_16621 thead.show-for-medium-only, #stacks_in_16621 thead.show-for-medium-up, #stacks_in_16621 thead.show-for-medium, #stacks_in_16621 thead.show-for-medium-down, #stacks_in_16621 thead.hide-for-large-only, #stacks_in_16621 thead.hide-for-large-up, #stacks_in_16621 thead.hide-for-large, #stacks_in_16621 thead.show-for-large-down, #stacks_in_16621 thead.hide-for-xlarge-only, #stacks_in_16621 thead.hide-for-xlarge-up, #stacks_in_16621 thead.hide-for-xxlarge-only, #stacks_in_16621 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.hide-for-small-only, #stacks_in_16621 tbody.show-for-small-up, #stacks_in_16621 tbody.hide-for-small, #stacks_in_16621 tbody.hide-for-small-down, #stacks_in_16621 tbody.show-for-medium-only, #stacks_in_16621 tbody.show-for-medium-up, #stacks_in_16621 tbody.show-for-medium, #stacks_in_16621 tbody.show-for-medium-down, #stacks_in_16621 tbody.hide-for-large-only, #stacks_in_16621 tbody.hide-for-large-up, #stacks_in_16621 tbody.hide-for-large, #stacks_in_16621 tbody.show-for-large-down, #stacks_in_16621 tbody.hide-for-xlarge-only, #stacks_in_16621 tbody.hide-for-xlarge-up, #stacks_in_16621 tbody.hide-for-xxlarge-only, #stacks_in_16621 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16621 tr.hide-for-small-only, #stacks_in_16621 tr.show-for-small-up, #stacks_in_16621 tr.hide-for-small, #stacks_in_16621 tr.hide-for-small-down, #stacks_in_16621 tr.show-for-medium-only, #stacks_in_16621 tr.show-for-medium-up, #stacks_in_16621 tr.show-for-medium, #stacks_in_16621 tr.show-for-medium-down, #stacks_in_16621 tr.hide-for-large-only, #stacks_in_16621 tr.hide-for-large-up, #stacks_in_16621 tr.hide-for-large, #stacks_in_16621 tr.show-for-large-down, #stacks_in_16621 tr.hide-for-xlarge-only, #stacks_in_16621 tr.hide-for-xlarge-up, #stacks_in_16621 tr.hide-for-xxlarge-only, #stacks_in_16621 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16621 th.hide-for-small-only, #stacks_in_16621 td.hide-for-small-only, #stacks_in_16621 th.show-for-small-up, #stacks_in_16621 td.show-for-small-up, #stacks_in_16621 th.hide-for-small, #stacks_in_16621 td.hide-for-small, #stacks_in_16621 th.hide-for-small-down, #stacks_in_16621 td.hide-for-small-down, #stacks_in_16621 th.show-for-medium-only, #stacks_in_16621 td.show-for-medium-only, #stacks_in_16621 th.show-for-medium-up, #stacks_in_16621 td.show-for-medium-up, #stacks_in_16621 th.show-for-medium, #stacks_in_16621 td.show-for-medium, #stacks_in_16621 th.show-for-medium-down, #stacks_in_16621 td.show-for-medium-down, #stacks_in_16621 th.hide-for-large-only, #stacks_in_16621 td.hide-for-large-only, #stacks_in_16621 th.hide-for-large-up, #stacks_in_16621 td.hide-for-large-up, #stacks_in_16621 th.hide-for-large, #stacks_in_16621 td.hide-for-large, #stacks_in_16621 th.show-for-large-down, #stacks_in_16621 td.show-for-large-down, #stacks_in_16621 th.hide-for-xlarge-only, #stacks_in_16621 td.hide-for-xlarge-only, #stacks_in_16621 th.hide-for-xlarge-up, #stacks_in_16621 td.hide-for-xlarge-up, #stacks_in_16621 th.hide-for-xxlarge-only, #stacks_in_16621 td.hide-for-xxlarge-only, #stacks_in_16621 th.hide-for-xxlarge-up, #stacks_in_16621 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* large displays */
@media only screen and (min-width: 64.063em) {
  #stacks_in_16621 .hide-for-small-only, #stacks_in_16621 .show-for-small-up, #stacks_in_16621 .hide-for-small, #stacks_in_16621 .hide-for-small-down, #stacks_in_16621 .hide-for-medium-only, #stacks_in_16621 .show-for-medium-up, #stacks_in_16621 .hide-for-medium, #stacks_in_16621 .hide-for-medium-down, #stacks_in_16621 .show-for-large-only, #stacks_in_16621 .show-for-large-up, #stacks_in_16621 .show-for-large, #stacks_in_16621 .show-for-large-down, #stacks_in_16621 .hide-for-xlarge-only, #stacks_in_16621 .hide-for-xlarge-up, #stacks_in_16621 .hide-for-xxlarge-only, #stacks_in_16621 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16621 .show-for-small-only, #stacks_in_16621 .hide-for-small-up, #stacks_in_16621 .show-for-small, #stacks_in_16621 .show-for-small-down, #stacks_in_16621 .show-for-medium-only, #stacks_in_16621 .hide-for-medium-up, #stacks_in_16621 .show-for-medium, #stacks_in_16621 .show-for-medium-down, #stacks_in_16621 .hide-for-large-only, #stacks_in_16621 .hide-for-large-up, #stacks_in_16621 .hide-for-large, #stacks_in_16621 .hide-for-large-down, #stacks_in_16621 .show-for-xlarge-only, #stacks_in_16621 .show-for-xlarge-up, #stacks_in_16621 .show-for-xxlarge-only, #stacks_in_16621 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16621 .hidden-for-small-only, #stacks_in_16621 .visible-for-small-up, #stacks_in_16621 .hidden-for-small, #stacks_in_16621 .hidden-for-small-down, #stacks_in_16621 .hidden-for-medium-only, #stacks_in_16621 .visible-for-medium-up, #stacks_in_16621 .hidden-for-medium, #stacks_in_16621 .hidden-for-medium-down, #stacks_in_16621 .visible-for-large-only, #stacks_in_16621 .visible-for-large-up, #stacks_in_16621 .visible-for-large, #stacks_in_16621 .visible-for-large-down, #stacks_in_16621 .hidden-for-xlarge-only, #stacks_in_16621 .hidden-for-xlarge-up, #stacks_in_16621 .hidden-for-xxlarge-only, #stacks_in_16621 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16621 .visible-for-small-only, #stacks_in_16621 .hidden-for-small-up, #stacks_in_16621 .visible-for-small, #stacks_in_16621 .visible-for-small-down, #stacks_in_16621 .visible-for-medium-only, #stacks_in_16621 .hidden-for-medium-up, #stacks_in_16621 .visible-for-medium, #stacks_in_16621 .visible-for-medium-down, #stacks_in_16621 .hidden-for-large-only, #stacks_in_16621 .hidden-for-large-up, #stacks_in_16621 .hidden-for-large, #stacks_in_16621 .hidden-for-large-down, #stacks_in_16621 .visible-for-xlarge-only, #stacks_in_16621 .visible-for-xlarge-up, #stacks_in_16621 .visible-for-xxlarge-only, #stacks_in_16621 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16621 table.hide-for-small-only, #stacks_in_16621 table.show-for-small-up, #stacks_in_16621 table.hide-for-small, #stacks_in_16621 table.hide-for-small-down, #stacks_in_16621 table.hide-for-medium-only, #stacks_in_16621 table.show-for-medium-up, #stacks_in_16621 table.hide-for-medium, #stacks_in_16621 table.hide-for-medium-down, #stacks_in_16621 table.show-for-large-only, #stacks_in_16621 table.show-for-large-up, #stacks_in_16621 table.show-for-large, #stacks_in_16621 table.show-for-large-down, #stacks_in_16621 table.hide-for-xlarge-only, #stacks_in_16621 table.hide-for-xlarge-up, #stacks_in_16621 table.hide-for-xxlarge-only, #stacks_in_16621 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16621 thead.hide-for-small-only, #stacks_in_16621 thead.show-for-small-up, #stacks_in_16621 thead.hide-for-small, #stacks_in_16621 thead.hide-for-small-down, #stacks_in_16621 thead.hide-for-medium-only, #stacks_in_16621 thead.show-for-medium-up, #stacks_in_16621 thead.hide-for-medium, #stacks_in_16621 thead.hide-for-medium-down, #stacks_in_16621 thead.show-for-large-only, #stacks_in_16621 thead.show-for-large-up, #stacks_in_16621 thead.show-for-large, #stacks_in_16621 thead.show-for-large-down, #stacks_in_16621 thead.hide-for-xlarge-only, #stacks_in_16621 thead.hide-for-xlarge-up, #stacks_in_16621 thead.hide-for-xxlarge-only, #stacks_in_16621 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.hide-for-small-only, #stacks_in_16621 tbody.show-for-small-up, #stacks_in_16621 tbody.hide-for-small, #stacks_in_16621 tbody.hide-for-small-down, #stacks_in_16621 tbody.hide-for-medium-only, #stacks_in_16621 tbody.show-for-medium-up, #stacks_in_16621 tbody.hide-for-medium, #stacks_in_16621 tbody.hide-for-medium-down, #stacks_in_16621 tbody.show-for-large-only, #stacks_in_16621 tbody.show-for-large-up, #stacks_in_16621 tbody.show-for-large, #stacks_in_16621 tbody.show-for-large-down, #stacks_in_16621 tbody.hide-for-xlarge-only, #stacks_in_16621 tbody.hide-for-xlarge-up, #stacks_in_16621 tbody.hide-for-xxlarge-only, #stacks_in_16621 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16621 tr.hide-for-small-only, #stacks_in_16621 tr.show-for-small-up, #stacks_in_16621 tr.hide-for-small, #stacks_in_16621 tr.hide-for-small-down, #stacks_in_16621 tr.hide-for-medium-only, #stacks_in_16621 tr.show-for-medium-up, #stacks_in_16621 tr.hide-for-medium, #stacks_in_16621 tr.hide-for-medium-down, #stacks_in_16621 tr.show-for-large-only, #stacks_in_16621 tr.show-for-large-up, #stacks_in_16621 tr.show-for-large, #stacks_in_16621 tr.show-for-large-down, #stacks_in_16621 tr.hide-for-xlarge-only, #stacks_in_16621 tr.hide-for-xlarge-up, #stacks_in_16621 tr.hide-for-xxlarge-only, #stacks_in_16621 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16621 th.hide-for-small-only, #stacks_in_16621 td.hide-for-small-only, #stacks_in_16621 th.show-for-small-up, #stacks_in_16621 td.show-for-small-up, #stacks_in_16621 th.hide-for-small, #stacks_in_16621 td.hide-for-small, #stacks_in_16621 th.hide-for-small-down, #stacks_in_16621 td.hide-for-small-down, #stacks_in_16621 th.hide-for-medium-only, #stacks_in_16621 td.hide-for-medium-only, #stacks_in_16621 th.show-for-medium-up, #stacks_in_16621 td.show-for-medium-up, #stacks_in_16621 th.hide-for-medium, #stacks_in_16621 td.hide-for-medium, #stacks_in_16621 th.hide-for-medium-down, #stacks_in_16621 td.hide-for-medium-down, #stacks_in_16621 th.show-for-large-only, #stacks_in_16621 td.show-for-large-only, #stacks_in_16621 th.show-for-large-up, #stacks_in_16621 td.show-for-large-up, #stacks_in_16621 th.show-for-large, #stacks_in_16621 td.show-for-large, #stacks_in_16621 th.show-for-large-down, #stacks_in_16621 td.show-for-large-down, #stacks_in_16621 th.hide-for-xlarge-only, #stacks_in_16621 td.hide-for-xlarge-only, #stacks_in_16621 th.hide-for-xlarge-up, #stacks_in_16621 td.hide-for-xlarge-up, #stacks_in_16621 th.hide-for-xxlarge-only, #stacks_in_16621 td.hide-for-xxlarge-only, #stacks_in_16621 th.hide-for-xxlarge-up, #stacks_in_16621 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xlarge displays */
@media only screen and (min-width: 90.063em) {
  #stacks_in_16621 .hide-for-small-only, #stacks_in_16621 .show-for-small-up, #stacks_in_16621 .hide-for-small, #stacks_in_16621 .hide-for-small-down, #stacks_in_16621 .hide-for-medium-only, #stacks_in_16621 .show-for-medium-up, #stacks_in_16621 .hide-for-medium, #stacks_in_16621 .hide-for-medium-down, #stacks_in_16621 .hide-for-large-only, #stacks_in_16621 .show-for-large-up, #stacks_in_16621 .hide-for-large, #stacks_in_16621 .hide-for-large-down, #stacks_in_16621 .show-for-xlarge-only, #stacks_in_16621 .show-for-xlarge-up, #stacks_in_16621 .hide-for-xxlarge-only, #stacks_in_16621 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16621 .show-for-small-only, #stacks_in_16621 .hide-for-small-up, #stacks_in_16621 .show-for-small, #stacks_in_16621 .show-for-small-down, #stacks_in_16621 .show-for-medium-only, #stacks_in_16621 .hide-for-medium-up, #stacks_in_16621 .show-for-medium, #stacks_in_16621 .show-for-medium-down, #stacks_in_16621 .show-for-large-only, #stacks_in_16621 .hide-for-large-up, #stacks_in_16621 .show-for-large, #stacks_in_16621 .show-for-large-down, #stacks_in_16621 .hide-for-xlarge-only, #stacks_in_16621 .hide-for-xlarge-up, #stacks_in_16621 .show-for-xxlarge-only, #stacks_in_16621 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16621 .hidden-for-small-only, #stacks_in_16621 .visible-for-small-up, #stacks_in_16621 .hidden-for-small, #stacks_in_16621 .hidden-for-small-down, #stacks_in_16621 .hidden-for-medium-only, #stacks_in_16621 .visible-for-medium-up, #stacks_in_16621 .hidden-for-medium, #stacks_in_16621 .hidden-for-medium-down, #stacks_in_16621 .hidden-for-large-only, #stacks_in_16621 .visible-for-large-up, #stacks_in_16621 .hidden-for-large, #stacks_in_16621 .hidden-for-large-down, #stacks_in_16621 .visible-for-xlarge-only, #stacks_in_16621 .visible-for-xlarge-up, #stacks_in_16621 .hidden-for-xxlarge-only, #stacks_in_16621 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16621 .visible-for-small-only, #stacks_in_16621 .hidden-for-small-up, #stacks_in_16621 .visible-for-small, #stacks_in_16621 .visible-for-small-down, #stacks_in_16621 .visible-for-medium-only, #stacks_in_16621 .hidden-for-medium-up, #stacks_in_16621 .visible-for-medium, #stacks_in_16621 .visible-for-medium-down, #stacks_in_16621 .visible-for-large-only, #stacks_in_16621 .hidden-for-large-up, #stacks_in_16621 .visible-for-large, #stacks_in_16621 .visible-for-large-down, #stacks_in_16621 .hidden-for-xlarge-only, #stacks_in_16621 .hidden-for-xlarge-up, #stacks_in_16621 .visible-for-xxlarge-only, #stacks_in_16621 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16621 table.hide-for-small-only, #stacks_in_16621 table.show-for-small-up, #stacks_in_16621 table.hide-for-small, #stacks_in_16621 table.hide-for-small-down, #stacks_in_16621 table.hide-for-medium-only, #stacks_in_16621 table.show-for-medium-up, #stacks_in_16621 table.hide-for-medium, #stacks_in_16621 table.hide-for-medium-down, #stacks_in_16621 table.hide-for-large-only, #stacks_in_16621 table.show-for-large-up, #stacks_in_16621 table.hide-for-large, #stacks_in_16621 table.hide-for-large-down, #stacks_in_16621 table.show-for-xlarge-only, #stacks_in_16621 table.show-for-xlarge-up, #stacks_in_16621 table.hide-for-xxlarge-only, #stacks_in_16621 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16621 thead.hide-for-small-only, #stacks_in_16621 thead.show-for-small-up, #stacks_in_16621 thead.hide-for-small, #stacks_in_16621 thead.hide-for-small-down, #stacks_in_16621 thead.hide-for-medium-only, #stacks_in_16621 thead.show-for-medium-up, #stacks_in_16621 thead.hide-for-medium, #stacks_in_16621 thead.hide-for-medium-down, #stacks_in_16621 thead.hide-for-large-only, #stacks_in_16621 thead.show-for-large-up, #stacks_in_16621 thead.hide-for-large, #stacks_in_16621 thead.hide-for-large-down, #stacks_in_16621 thead.show-for-xlarge-only, #stacks_in_16621 thead.show-for-xlarge-up, #stacks_in_16621 thead.hide-for-xxlarge-only, #stacks_in_16621 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.hide-for-small-only, #stacks_in_16621 tbody.show-for-small-up, #stacks_in_16621 tbody.hide-for-small, #stacks_in_16621 tbody.hide-for-small-down, #stacks_in_16621 tbody.hide-for-medium-only, #stacks_in_16621 tbody.show-for-medium-up, #stacks_in_16621 tbody.hide-for-medium, #stacks_in_16621 tbody.hide-for-medium-down, #stacks_in_16621 tbody.hide-for-large-only, #stacks_in_16621 tbody.show-for-large-up, #stacks_in_16621 tbody.hide-for-large, #stacks_in_16621 tbody.hide-for-large-down, #stacks_in_16621 tbody.show-for-xlarge-only, #stacks_in_16621 tbody.show-for-xlarge-up, #stacks_in_16621 tbody.hide-for-xxlarge-only, #stacks_in_16621 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16621 tr.hide-for-small-only, #stacks_in_16621 tr.show-for-small-up, #stacks_in_16621 tr.hide-for-small, #stacks_in_16621 tr.hide-for-small-down, #stacks_in_16621 tr.hide-for-medium-only, #stacks_in_16621 tr.show-for-medium-up, #stacks_in_16621 tr.hide-for-medium, #stacks_in_16621 tr.hide-for-medium-down, #stacks_in_16621 tr.hide-for-large-only, #stacks_in_16621 tr.show-for-large-up, #stacks_in_16621 tr.hide-for-large, #stacks_in_16621 tr.hide-for-large-down, #stacks_in_16621 tr.show-for-xlarge-only, #stacks_in_16621 tr.show-for-xlarge-up, #stacks_in_16621 tr.hide-for-xxlarge-only, #stacks_in_16621 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16621 th.hide-for-small-only, #stacks_in_16621 td.hide-for-small-only, #stacks_in_16621 th.show-for-small-up, #stacks_in_16621 td.show-for-small-up, #stacks_in_16621 th.hide-for-small, #stacks_in_16621 td.hide-for-small, #stacks_in_16621 th.hide-for-small-down, #stacks_in_16621 td.hide-for-small-down, #stacks_in_16621 th.hide-for-medium-only, #stacks_in_16621 td.hide-for-medium-only, #stacks_in_16621 th.show-for-medium-up, #stacks_in_16621 td.show-for-medium-up, #stacks_in_16621 th.hide-for-medium, #stacks_in_16621 td.hide-for-medium, #stacks_in_16621 th.hide-for-medium-down, #stacks_in_16621 td.hide-for-medium-down, #stacks_in_16621 th.hide-for-large-only, #stacks_in_16621 td.hide-for-large-only, #stacks_in_16621 th.show-for-large-up, #stacks_in_16621 td.show-for-large-up, #stacks_in_16621 th.hide-for-large, #stacks_in_16621 td.hide-for-large, #stacks_in_16621 th.hide-for-large-down, #stacks_in_16621 td.hide-for-large-down, #stacks_in_16621 th.show-for-xlarge-only, #stacks_in_16621 td.show-for-xlarge-only, #stacks_in_16621 th.show-for-xlarge-up, #stacks_in_16621 td.show-for-xlarge-up, #stacks_in_16621 th.hide-for-xxlarge-only, #stacks_in_16621 td.hide-for-xxlarge-only, #stacks_in_16621 th.hide-for-xxlarge-up, #stacks_in_16621 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xxlarge displays */
@media only screen and (min-width: 120.063em) {
  #stacks_in_16621 .hide-for-small-only, #stacks_in_16621 .show-for-small-up, #stacks_in_16621 .hide-for-small, #stacks_in_16621 .hide-for-small-down, #stacks_in_16621 .hide-for-medium-only, #stacks_in_16621 .show-for-medium-up, #stacks_in_16621 .hide-for-medium, #stacks_in_16621 .hide-for-medium-down, #stacks_in_16621 .hide-for-large-only, #stacks_in_16621 .show-for-large-up, #stacks_in_16621 .hide-for-large, #stacks_in_16621 .hide-for-large-down, #stacks_in_16621 .hide-for-xlarge-only, #stacks_in_16621 .show-for-xlarge-up, #stacks_in_16621 .show-for-xxlarge-only, #stacks_in_16621 .show-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16621 .show-for-small-only, #stacks_in_16621 .hide-for-small-up, #stacks_in_16621 .show-for-small, #stacks_in_16621 .show-for-small-down, #stacks_in_16621 .show-for-medium-only, #stacks_in_16621 .hide-for-medium-up, #stacks_in_16621 .show-for-medium, #stacks_in_16621 .show-for-medium-down, #stacks_in_16621 .show-for-large-only, #stacks_in_16621 .hide-for-large-up, #stacks_in_16621 .show-for-large, #stacks_in_16621 .show-for-large-down, #stacks_in_16621 .show-for-xlarge-only, #stacks_in_16621 .hide-for-xlarge-up, #stacks_in_16621 .hide-for-xxlarge-only, #stacks_in_16621 .hide-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16621 .hidden-for-small-only, #stacks_in_16621 .visible-for-small-up, #stacks_in_16621 .hidden-for-small, #stacks_in_16621 .hidden-for-small-down, #stacks_in_16621 .hidden-for-medium-only, #stacks_in_16621 .visible-for-medium-up, #stacks_in_16621 .hidden-for-medium, #stacks_in_16621 .hidden-for-medium-down, #stacks_in_16621 .hidden-for-large-only, #stacks_in_16621 .visible-for-large-up, #stacks_in_16621 .hidden-for-large, #stacks_in_16621 .hidden-for-large-down, #stacks_in_16621 .hidden-for-xlarge-only, #stacks_in_16621 .visible-for-xlarge-up, #stacks_in_16621 .visible-for-xxlarge-only, #stacks_in_16621 .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16621 .visible-for-small-only, #stacks_in_16621 .hidden-for-small-up, #stacks_in_16621 .visible-for-small, #stacks_in_16621 .visible-for-small-down, #stacks_in_16621 .visible-for-medium-only, #stacks_in_16621 .hidden-for-medium-up, #stacks_in_16621 .visible-for-medium, #stacks_in_16621 .visible-for-medium-down, #stacks_in_16621 .visible-for-large-only, #stacks_in_16621 .hidden-for-large-up, #stacks_in_16621 .visible-for-large, #stacks_in_16621 .visible-for-large-down, #stacks_in_16621 .visible-for-xlarge-only, #stacks_in_16621 .hidden-for-xlarge-up, #stacks_in_16621 .hidden-for-xxlarge-only, #stacks_in_16621 .hidden-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16621 table.hide-for-small-only, #stacks_in_16621 table.show-for-small-up, #stacks_in_16621 table.hide-for-small, #stacks_in_16621 table.hide-for-small-down, #stacks_in_16621 table.hide-for-medium-only, #stacks_in_16621 table.show-for-medium-up, #stacks_in_16621 table.hide-for-medium, #stacks_in_16621 table.hide-for-medium-down, #stacks_in_16621 table.hide-for-large-only, #stacks_in_16621 table.show-for-large-up, #stacks_in_16621 table.hide-for-large, #stacks_in_16621 table.hide-for-large-down, #stacks_in_16621 table.hide-for-xlarge-only, #stacks_in_16621 table.show-for-xlarge-up, #stacks_in_16621 table.show-for-xxlarge-only, #stacks_in_16621 table.show-for-xxlarge-up {
    display: table; }

  #stacks_in_16621 thead.hide-for-small-only, #stacks_in_16621 thead.show-for-small-up, #stacks_in_16621 thead.hide-for-small, #stacks_in_16621 thead.hide-for-small-down, #stacks_in_16621 thead.hide-for-medium-only, #stacks_in_16621 thead.show-for-medium-up, #stacks_in_16621 thead.hide-for-medium, #stacks_in_16621 thead.hide-for-medium-down, #stacks_in_16621 thead.hide-for-large-only, #stacks_in_16621 thead.show-for-large-up, #stacks_in_16621 thead.hide-for-large, #stacks_in_16621 thead.hide-for-large-down, #stacks_in_16621 thead.hide-for-xlarge-only, #stacks_in_16621 thead.show-for-xlarge-up, #stacks_in_16621 thead.show-for-xxlarge-only, #stacks_in_16621 thead.show-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.hide-for-small-only, #stacks_in_16621 tbody.show-for-small-up, #stacks_in_16621 tbody.hide-for-small, #stacks_in_16621 tbody.hide-for-small-down, #stacks_in_16621 tbody.hide-for-medium-only, #stacks_in_16621 tbody.show-for-medium-up, #stacks_in_16621 tbody.hide-for-medium, #stacks_in_16621 tbody.hide-for-medium-down, #stacks_in_16621 tbody.hide-for-large-only, #stacks_in_16621 tbody.show-for-large-up, #stacks_in_16621 tbody.hide-for-large, #stacks_in_16621 tbody.hide-for-large-down, #stacks_in_16621 tbody.hide-for-xlarge-only, #stacks_in_16621 tbody.show-for-xlarge-up, #stacks_in_16621 tbody.show-for-xxlarge-only, #stacks_in_16621 tbody.show-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16621 tr.hide-for-small-only, #stacks_in_16621 tr.show-for-small-up, #stacks_in_16621 tr.hide-for-small, #stacks_in_16621 tr.hide-for-small-down, #stacks_in_16621 tr.hide-for-medium-only, #stacks_in_16621 tr.show-for-medium-up, #stacks_in_16621 tr.hide-for-medium, #stacks_in_16621 tr.hide-for-medium-down, #stacks_in_16621 tr.hide-for-large-only, #stacks_in_16621 tr.show-for-large-up, #stacks_in_16621 tr.hide-for-large, #stacks_in_16621 tr.hide-for-large-down, #stacks_in_16621 tr.hide-for-xlarge-only, #stacks_in_16621 tr.show-for-xlarge-up, #stacks_in_16621 tr.show-for-xxlarge-only, #stacks_in_16621 tr.show-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16621 th.hide-for-small-only, #stacks_in_16621 td.hide-for-small-only, #stacks_in_16621 th.show-for-small-up, #stacks_in_16621 td.show-for-small-up, #stacks_in_16621 th.hide-for-small, #stacks_in_16621 td.hide-for-small, #stacks_in_16621 th.hide-for-small-down, #stacks_in_16621 td.hide-for-small-down, #stacks_in_16621 th.hide-for-medium-only, #stacks_in_16621 td.hide-for-medium-only, #stacks_in_16621 th.show-for-medium-up, #stacks_in_16621 td.show-for-medium-up, #stacks_in_16621 th.hide-for-medium, #stacks_in_16621 td.hide-for-medium, #stacks_in_16621 th.hide-for-medium-down, #stacks_in_16621 td.hide-for-medium-down, #stacks_in_16621 th.hide-for-large-only, #stacks_in_16621 td.hide-for-large-only, #stacks_in_16621 th.show-for-large-up, #stacks_in_16621 td.show-for-large-up, #stacks_in_16621 th.hide-for-large, #stacks_in_16621 td.hide-for-large, #stacks_in_16621 th.hide-for-large-down, #stacks_in_16621 td.hide-for-large-down, #stacks_in_16621 th.hide-for-xlarge-only, #stacks_in_16621 td.hide-for-xlarge-only, #stacks_in_16621 th.show-for-xlarge-up, #stacks_in_16621 td.show-for-xlarge-up, #stacks_in_16621 th.show-for-xxlarge-only, #stacks_in_16621 td.show-for-xxlarge-only, #stacks_in_16621 th.show-for-xxlarge-up, #stacks_in_16621 td.show-for-xxlarge-up {
    display: table-cell !important; } }
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_16621 table.hide-for-landscape, #stacks_in_16621 table.show-for-portrait {
  display: table; }

#stacks_in_16621 thead.hide-for-landscape, #stacks_in_16621 thead.show-for-portrait {
  display: table-header-group !important; }

#stacks_in_16621 tbody.hide-for-landscape, #stacks_in_16621 tbody.show-for-portrait {
  display: table-row-group !important; }

#stacks_in_16621 tr.hide-for-landscape, #stacks_in_16621 tr.show-for-portrait {
  display: table-row !important; }

#stacks_in_16621 td.hide-for-landscape, #stacks_in_16621 td.show-for-portrait,
#stacks_in_16621 th.hide-for-landscape,
#stacks_in_16621 th.show-for-portrait {
  display: table-cell !important; }

@media only screen and (orientation: landscape) {
  #stacks_in_16621 .show-for-landscape,
  #stacks_in_16621 .hide-for-portrait {
    display: inherit !important; }

  #stacks_in_16621 .hide-for-landscape,
  #stacks_in_16621 .show-for-portrait {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_16621 table.show-for-landscape, #stacks_in_16621 table.hide-for-portrait {
    display: table; }

  #stacks_in_16621 thead.show-for-landscape, #stacks_in_16621 thead.hide-for-portrait {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.show-for-landscape, #stacks_in_16621 tbody.hide-for-portrait {
    display: table-row-group !important; }

  #stacks_in_16621 tr.show-for-landscape, #stacks_in_16621 tr.hide-for-portrait {
    display: table-row !important; }

  #stacks_in_16621 td.show-for-landscape, #stacks_in_16621 td.hide-for-portrait,
  #stacks_in_16621 th.show-for-landscape,
  #stacks_in_16621 th.hide-for-portrait {
    display: table-cell !important; } }
@media only screen and (orientation: portrait) {
  #stacks_in_16621 .show-for-portrait,
  #stacks_in_16621 .hide-for-landscape {
    display: inherit !important; }

  #stacks_in_16621 .hide-for-portrait,
  #stacks_in_16621 .show-for-landscape {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_16621 table.show-for-portrait, #stacks_in_16621 table.hide-for-landscape {
    display: table; }

  #stacks_in_16621 thead.show-for-portrait, #stacks_in_16621 thead.hide-for-landscape {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.show-for-portrait, #stacks_in_16621 tbody.hide-for-landscape {
    display: table-row-group !important; }

  #stacks_in_16621 tr.show-for-portrait, #stacks_in_16621 tr.hide-for-landscape {
    display: table-row !important; }

  #stacks_in_16621 td.show-for-portrait, #stacks_in_16621 td.hide-for-landscape,
  #stacks_in_16621 th.show-for-portrait,
  #stacks_in_16621 th.hide-for-landscape {
    display: table-cell !important; } }
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important; }

.hide-for-touch {
  display: inherit !important; }

.touch #stacks_in_16621 .show-for-touch {
  display: inherit !important; }

.touch #stacks_in_16621 .hide-for-touch {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_16621 table.hide-for-touch {
  display: table; }

.touch #stacks_in_16621 table.show-for-touch {
  display: table; }

#stacks_in_16621 thead.hide-for-touch {
  display: table-header-group !important; }

.touch #stacks_in_16621 thead.show-for-touch {
  display: table-header-group !important; }

#stacks_in_16621 tbody.hide-for-touch {
  display: table-row-group !important; }

.touch #stacks_in_16621 tbody.show-for-touch {
  display: table-row-group !important; }

#stacks_in_16621 tr.hide-for-touch {
  display: table-row !important; }

.touch #stacks_in_16621 tr.show-for-touch {
  display: table-row !important; }

#stacks_in_16621 td.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_16621 td.show-for-touch {
  display: table-cell !important; }

#stacks_in_16621 th.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_16621 th.show-for-touch {
  display: table-cell !important; }

/* Print visibility */
@media print {
  #stacks_in_16621 .show-for-print {
    display: block; }

  #stacks_in_16621 .hide-for-print {
    display: none; }

  #stacks_in_16621 table.show-for-print {
    display: table; }

  #stacks_in_16621 thead.show-for-print {
    display: table-header-group !important; }

  #stacks_in_16621 tbody.show-for-print {
    display: table-row-group !important; }

  #stacks_in_16621 tr.show-for-print {
    display: table-row !important; }

  #stacks_in_16621 td.show-for-print {
    display: table-cell !important; }

  #stacks_in_16621 th.show-for-print {
    display: table-cell !important; } }
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17941 a:before, .link_effect1stacks_in_17941 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #999999 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17941 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17941 a:hover:before, .link_effect1stacks_in_17941 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17941 a   {
	
	color: #999999 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17941 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17941 .link_effect2stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17941 .link_effect2stacks_in_17941 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17941 .link_effect3stacks_in_17941 {
  	text-decoration: none;
}

#stacks_in_17941 .link_effect3stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17941 .link_effect3stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect3stacks_in_17941 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17941 .link_effect4stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect4stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect4stacks_in_17941 a::before,
#stacks_in_17941 .link_effect%stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect4stacks_in_17941 {
}

#stacks_in_17941 .link_effect4stacks_in_17941 a {
	font-weight:normal;;
}

#stacks_in_17941 .link_effect4stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17941 .link_effect4stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect4stacks_in_17941 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17941 .link_effect5stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect5stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect5stacks_in_17941 a::before,
#stacks_in_17941 .link_effect5stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect5stacks_in_17941 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17941 .link_effect5stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17941 .link_effect5stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect5stacks_in_17941 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17941 .link_effect6stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect6stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect6stacks_in_17941 a::before,
#stacks_in_17941 .link_effect6stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect6stacks_in_17941 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17941 .link_effect6stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17941 .link_effect6stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect6stacks_in_17941 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17941 .link_effect7stacks_in_17941 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect7stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect7stacks_in_17941 a::before,
#stacks_in_17941 .link_effect7stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect7stacks_in_17941 {
	position: relative;
}

#stacks_in_17941 .link_effect7stacks_in_17941 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17941 .link_effect7stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17941 .link_effect7stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect7stacks_in_17941 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17941 .link_effect8stacks_in_17941 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect8stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect8stacks_in_17941 a::before,
#stacks_in_17941 .link_effect8stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17941 .link_effect8stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17941 .link_effect8stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect8stacks_in_17941 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17941 .link_effect8stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17941 .link_effect8stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect8stacks_in_17941 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17941 .link_effect9stacks_in_17941 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect9stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect9stacks_in_17941 a::before,
#stacks_in_17941 .link_effect9stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect9stacks_in_17941 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17941 .link_effect9stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect9stacks_in_17941 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17941 .link_effect9stacks_in_17941 a::before,
#stacks_in_17941 .link_effect9stacks_in_17941 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17941 .link_effect9stacks_in_17941 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17941 .link_effect9stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect9stacks_in_17941 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17941 .link_effect9stacks_in_17941 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17941 .link_effect10stacks_in_17941 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect10stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect10stacks_in_17941 a::before,
#stacks_in_17941 .link_effect10stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect10stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17941 .link_effect10stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect10stacks_in_17941 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17941 .link_effect10stacks_in_17941 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17941 .link_effect10stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect10stacks_in_17941 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17941 .link_effect11stacks_in_17941 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17941 .link_effect11stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect11stacks_in_17941 a::before,
#stacks_in_17941 .link_effect11stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect11stacks_in_17941 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17941 .link_effect11stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect11stacks_in_17941 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17941 .link_effect11stacks_in_17941 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17941 .link_effect11stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect11stacks_in_17941 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17941 .link_effect12stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect12stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect12stacks_in_17941 a::before,
#stacks_in_17941 .link_effect12stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect12stacks_in_17941 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17941 .link_effect12stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect12stacks_in_17941 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17941 .link_effect12stacks_in_17941 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17941 .link_effect12stacks_in_17941 a,
#stacks_in_17941 .link_effect12stacks_in_17941 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17941 .link_effect12stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect12stacks_in_17941 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17941 .link_effect13stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect13stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect13stacks_in_17941 a::before,
#stacks_in_17941 .link_effect13stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect13stacks_in_17941 {
}

#stacks_in_17941 .link_effect13stacks_in_17941 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
}

#stacks_in_17941 .link_effect13stacks_in_17941 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17941 .link_effect13stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect13stacks_in_17941 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17941 .link_effect14stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect14stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect14stacks_in_17941 a::before,
#stacks_in_17941 .link_effect14stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect14stacks_in_17941 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17941 .link_effect14stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect14stacks_in_17941 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17941 .link_effect14stacks_in_17941 a::before,
#stacks_in_17941 .link_effect14stacks_in_17941 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17941 .link_effect14stacks_in_17941 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17941 .link_effect14stacks_in_17941 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17941 .link_effect14stacks_in_17941 a:hover::after,
#stacks_in_17941 .link_effect14stacks_in_17941 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17941 .link_effect15stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect15stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect15stacks_in_17941 a::before,
#stacks_in_17941 .link_effect15stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect15stacks_in_17941 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17941 .link_effect15stacks_in_17941 a::before,
#stacks_in_17941 .link_effect15stacks_in_17941 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17941 .link_effect15stacks_in_17941 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17941 .link_effect15stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect15stacks_in_17941 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17941 .link_effect15stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect15stacks_in_17941 a:focus::before,
#stacks_in_17941 .link_effect15stacks_in_17941 a:hover::after,
#stacks_in_17941 .link_effect15stacks_in_17941 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17941 .link_effect15stacks_in_17941 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17941 .link_effect15stacks_in_17941 a:hover::after,
#stacks_in_17941 .link_effect15stacks_in_17941 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17941 .link_effect16stacks_in_17941 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a::before,
#stacks_in_17941 .link_effect16stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a:hover {
	color: #d04c3f;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a::before,
#stacks_in_17941 .link_effect16stacks_in_17941 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17941 .link_effect16stacks_in_17941 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17941 .link_effect16stacks_in_17941 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17941 .link_effect16stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect16stacks_in_17941 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17941 .link_effect17stacks_in_17941 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #999999 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17941 .link_effect17stacks_in_17941 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #999999 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17941 .link_effect17stacks_in_17941 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17941 .link_effect18stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect18stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect18stacks_in_17941 a::before,
#stacks_in_17941 .link_effect18stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17941 .link_effect18stacks_in_17941 {
}

#stacks_in_17941 .link_effect18stacks_in_17941 a {
	padding: 0 ;
	color: #999999;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17941 .link_effect18stacks_in_17941 a::before,
#stacks_in_17941 .link_effect18stacks_in_17941 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #999999;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17941 .link_effect18stacks_in_17941 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17941 .link_effect18stacks_in_17941 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17941 .link_effect18stacks_in_17941 a:hover,
#stacks_in_17941 .link_effect18stacks_in_17941 a:focus {
	color: #fff;
}

#stacks_in_17941 .link_effect18stacks_in_17941 a:hover::before,
#stacks_in_17941 .link_effect18stacks_in_17941 a:focus::before,
#stacks_in_17941 .link_effect18stacks_in_17941 a:hover::after,
#stacks_in_17941 .link_effect18stacks_in_17941 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17941 .link_effect19stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect19stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect19stacks_in_17941 a::before,
#stacks_in_17941 .link_effect19stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17941 a {
}

.link_effect19stacks_in_17941 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17941 a:hover::after,
.link_effect19stacks_in_17941 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17941 .link_effect20stacks_in_17941 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17941 .link_effect20stacks_in_17941 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17941 .link_effect20stacks_in_17941 a::before,
#stacks_in_17941 .link_effect20stacks_in_17941 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17941 a {
}

.link_effect20stacks_in_17941 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17941 a:hover::after,
.link_effect20stacks_in_17941 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_18302 article,
#stacks_in_18302 aside,
#stacks_in_18302 details,
#stacks_in_18302 figcaption,
#stacks_in_18302 figure,
#stacks_in_18302 footer,
#stacks_in_18302 header,
#stacks_in_18302 hgroup,
#stacks_in_18302 main,
#stacks_in_18302 nav,
#stacks_in_18302 section,
#stacks_in_18302 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_18302 audio,
#stacks_in_18302 canvas,
#stacks_in_18302 progress,
#stacks_in_18302 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_18302 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_18302 [hidden],
#stacks_in_18302 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_18302 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_18302 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_18302 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_18302 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_18302 code,
#stacks_in_18302 kbd,
#stacks_in_18302 pre,
#stacks_in_18302 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_18302 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_18302 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_18302 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_18302 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_18302 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_18302 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_18302 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_18302 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_18302 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_18302 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_18302 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_18302 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_18302 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_18302 .left {
  float: left !important; }

#stacks_in_18302 .right {
  float: right !important; }

#stacks_in_18302 .clearfix:before,
#stacks_in_18302 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_18302 .clearfix:after {
  clear: both; }

#stacks_in_18302 .hide {
  display: none; }

#stacks_in_18302 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_18302 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_18302 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_18302 select {
  width: 100%; }

#stacks_in_18302 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_18302 .row:before,
#stacks_in_18302 .row:after {
  content: " ";
  display: table; }

#stacks_in_18302 .row:after {
  clear: both; }

#stacks_in_18302 .row.collapse > .column,
#stacks_in_18302 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_18302 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_18302 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_18302 .row .row:before,
#stacks_in_18302 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_18302 .row .row:after {
  clear: both; }

#stacks_in_18302 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_18302 .row .row.collapse:before,
#stacks_in_18302 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_18302 .row .row.collapse:after {
  clear: both; }

#stacks_in_18302 .column,
#stacks_in_18302 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_18302 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_18302 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_18302 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18302 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18302 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18302 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18302 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18302 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18302 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18302 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18302 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18302 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18302 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18302 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18302 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18302 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18302 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18302 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18302 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18302 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18302 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18302 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18302 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18302 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18302 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18302 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18302 .column,
  #stacks_in_18302 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18302 .small-1 {
    width: 8.33333%; }

  #stacks_in_18302 .small-2 {
    width: 16.66667%; }

  #stacks_in_18302 .small-3 {
    width: 25%; }

  #stacks_in_18302 .small-4 {
    width: 33.33333%; }

  #stacks_in_18302 .small-5 {
    width: 41.66667%; }

  #stacks_in_18302 .small-6 {
    width: 50%; }

  #stacks_in_18302 .small-7 {
    width: 58.33333%; }

  #stacks_in_18302 .small-8 {
    width: 66.66667%; }

  #stacks_in_18302 .small-9 {
    width: 75%; }

  #stacks_in_18302 .small-10 {
    width: 83.33333%; }

  #stacks_in_18302 .small-11 {
    width: 91.66667%; }

  #stacks_in_18302 .small-12 {
    width: 100%; }

  #stacks_in_18302 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18302 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18302 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18302 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18302 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18302 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18302 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18302 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18302 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18302 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18302 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18302 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18302 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18302 .column.small-centered,
  #stacks_in_18302 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18302 .column.small-uncentered,
  #stacks_in_18302 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18302 .column.small-centered:last-child,
  #stacks_in_18302 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_18302 .column.small-uncentered:last-child,
  #stacks_in_18302 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_18302 .column.small-uncentered.opposite,
  #stacks_in_18302 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_18302 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18302 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18302 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18302 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18302 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18302 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18302 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18302 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18302 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18302 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18302 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18302 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18302 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18302 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18302 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18302 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18302 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18302 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18302 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18302 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18302 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18302 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18302 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18302 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18302 .column,
  #stacks_in_18302 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18302 .medium-1 {
    width: 8.33333%; }

  #stacks_in_18302 .medium-2 {
    width: 16.66667%; }

  #stacks_in_18302 .medium-3 {
    width: 25%; }

  #stacks_in_18302 .medium-4 {
    width: 33.33333%; }

  #stacks_in_18302 .medium-5 {
    width: 41.66667%; }

  #stacks_in_18302 .medium-6 {
    width: 50%; }

  #stacks_in_18302 .medium-7 {
    width: 58.33333%; }

  #stacks_in_18302 .medium-8 {
    width: 66.66667%; }

  #stacks_in_18302 .medium-9 {
    width: 75%; }

  #stacks_in_18302 .medium-10 {
    width: 83.33333%; }

  #stacks_in_18302 .medium-11 {
    width: 91.66667%; }

  #stacks_in_18302 .medium-12 {
    width: 100%; }

  #stacks_in_18302 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18302 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18302 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18302 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18302 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18302 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18302 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18302 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18302 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18302 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18302 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18302 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18302 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18302 .column.medium-centered,
  #stacks_in_18302 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18302 .column.medium-uncentered,
  #stacks_in_18302 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18302 .column.medium-centered:last-child,
  #stacks_in_18302 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_18302 .column.medium-uncentered:last-child,
  #stacks_in_18302 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_18302 .column.medium-uncentered.opposite,
  #stacks_in_18302 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_18302 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18302 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18302 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18302 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18302 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18302 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18302 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18302 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18302 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18302 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18302 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18302 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18302 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18302 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18302 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18302 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18302 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18302 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18302 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18302 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18302 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18302 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18302 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18302 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_18302 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18302 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18302 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18302 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18302 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18302 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18302 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18302 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18302 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18302 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18302 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18302 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18302 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18302 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18302 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18302 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18302 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18302 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18302 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18302 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18302 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18302 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18302 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18302 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18302 .column,
  #stacks_in_18302 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18302 .large-1 {
    width: 8.33333%; }

  #stacks_in_18302 .large-2 {
    width: 16.66667%; }

  #stacks_in_18302 .large-3 {
    width: 25%; }

  #stacks_in_18302 .large-4 {
    width: 33.33333%; }

  #stacks_in_18302 .large-5 {
    width: 41.66667%; }

  #stacks_in_18302 .large-6 {
    width: 50%; }

  #stacks_in_18302 .large-7 {
    width: 58.33333%; }

  #stacks_in_18302 .large-8 {
    width: 66.66667%; }

  #stacks_in_18302 .large-9 {
    width: 75%; }

  #stacks_in_18302 .large-10 {
    width: 83.33333%; }

  #stacks_in_18302 .large-11 {
    width: 91.66667%; }

  #stacks_in_18302 .large-12 {
    width: 100%; }

  #stacks_in_18302 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18302 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18302 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18302 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18302 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18302 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18302 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18302 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18302 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18302 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18302 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18302 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18302 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18302 .column.large-centered,
  #stacks_in_18302 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18302 .column.large-uncentered,
  #stacks_in_18302 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18302 .column.large-centered:last-child,
  #stacks_in_18302 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_18302 .column.large-uncentered:last-child,
  #stacks_in_18302 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_18302 .column.large-uncentered.opposite,
  #stacks_in_18302 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_18302 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18302 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18302 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18302 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18302 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18302 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18302 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18302 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18302 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18302 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18302 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18302 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18302 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18302 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18302 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18302 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18302 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18302 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18302 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18302 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18302 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18302 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18302 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18302 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_18302 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_18302 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_18302 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_18302 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_18302 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_18302 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_18302 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_18302 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18302 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18302 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_18302 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18302 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18302 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_18302 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18302 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18302 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18302 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_out_18302 {
	width: 35%;
}
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18305   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18305 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18305 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18305 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18305 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18305 .captionThing {
}


#stacks_in_18305 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #DEC8B8;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18305 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18305 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18305 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18305 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18305 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18305	.shadow-style1stacks_in_18305  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18305	.shadow-style1stacks_in_18305 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18313 a:before, .link_effect1stacks_in_18313 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18313 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18313 a:hover:before, .link_effect1stacks_in_18313 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18313 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18313 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18313 .link_effect2stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18313 .link_effect2stacks_in_18313 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18313 .link_effect3stacks_in_18313 {
  	text-decoration: none;
}

#stacks_in_18313 .link_effect3stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18313 .link_effect3stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect3stacks_in_18313 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18313 .link_effect4stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect4stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect4stacks_in_18313 a::before,
#stacks_in_18313 .link_effect%stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect4stacks_in_18313 {
}

#stacks_in_18313 .link_effect4stacks_in_18313 a {
	font-weight:normal;;
}

#stacks_in_18313 .link_effect4stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18313 .link_effect4stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect4stacks_in_18313 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18313 .link_effect5stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect5stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect5stacks_in_18313 a::before,
#stacks_in_18313 .link_effect5stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect5stacks_in_18313 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18313 .link_effect5stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18313 .link_effect5stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect5stacks_in_18313 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18313 .link_effect6stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect6stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect6stacks_in_18313 a::before,
#stacks_in_18313 .link_effect6stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect6stacks_in_18313 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18313 .link_effect6stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18313 .link_effect6stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect6stacks_in_18313 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18313 .link_effect7stacks_in_18313 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect7stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect7stacks_in_18313 a::before,
#stacks_in_18313 .link_effect7stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect7stacks_in_18313 {
	position: relative;
}

#stacks_in_18313 .link_effect7stacks_in_18313 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18313 .link_effect7stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18313 .link_effect7stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect7stacks_in_18313 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18313 .link_effect8stacks_in_18313 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect8stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect8stacks_in_18313 a::before,
#stacks_in_18313 .link_effect8stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18313 .link_effect8stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18313 .link_effect8stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect8stacks_in_18313 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18313 .link_effect8stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18313 .link_effect8stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect8stacks_in_18313 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18313 .link_effect9stacks_in_18313 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect9stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect9stacks_in_18313 a::before,
#stacks_in_18313 .link_effect9stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect9stacks_in_18313 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18313 .link_effect9stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect9stacks_in_18313 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18313 .link_effect9stacks_in_18313 a::before,
#stacks_in_18313 .link_effect9stacks_in_18313 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18313 .link_effect9stacks_in_18313 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18313 .link_effect9stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect9stacks_in_18313 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18313 .link_effect9stacks_in_18313 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18313 .link_effect10stacks_in_18313 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect10stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect10stacks_in_18313 a::before,
#stacks_in_18313 .link_effect10stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect10stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18313 .link_effect10stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect10stacks_in_18313 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18313 .link_effect10stacks_in_18313 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18313 .link_effect10stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect10stacks_in_18313 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18313 .link_effect11stacks_in_18313 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18313 .link_effect11stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect11stacks_in_18313 a::before,
#stacks_in_18313 .link_effect11stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect11stacks_in_18313 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18313 .link_effect11stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect11stacks_in_18313 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18313 .link_effect11stacks_in_18313 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18313 .link_effect11stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect11stacks_in_18313 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18313 .link_effect12stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect12stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect12stacks_in_18313 a::before,
#stacks_in_18313 .link_effect12stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect12stacks_in_18313 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18313 .link_effect12stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect12stacks_in_18313 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18313 .link_effect12stacks_in_18313 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18313 .link_effect12stacks_in_18313 a,
#stacks_in_18313 .link_effect12stacks_in_18313 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18313 .link_effect12stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect12stacks_in_18313 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18313 .link_effect13stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect13stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect13stacks_in_18313 a::before,
#stacks_in_18313 .link_effect13stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect13stacks_in_18313 {
}

#stacks_in_18313 .link_effect13stacks_in_18313 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18313 .link_effect13stacks_in_18313 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18313 .link_effect13stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect13stacks_in_18313 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18313 .link_effect14stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect14stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect14stacks_in_18313 a::before,
#stacks_in_18313 .link_effect14stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect14stacks_in_18313 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18313 .link_effect14stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect14stacks_in_18313 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18313 .link_effect14stacks_in_18313 a::before,
#stacks_in_18313 .link_effect14stacks_in_18313 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18313 .link_effect14stacks_in_18313 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18313 .link_effect14stacks_in_18313 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18313 .link_effect14stacks_in_18313 a:hover::after,
#stacks_in_18313 .link_effect14stacks_in_18313 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18313 .link_effect15stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect15stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect15stacks_in_18313 a::before,
#stacks_in_18313 .link_effect15stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect15stacks_in_18313 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18313 .link_effect15stacks_in_18313 a::before,
#stacks_in_18313 .link_effect15stacks_in_18313 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18313 .link_effect15stacks_in_18313 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18313 .link_effect15stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect15stacks_in_18313 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18313 .link_effect15stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect15stacks_in_18313 a:focus::before,
#stacks_in_18313 .link_effect15stacks_in_18313 a:hover::after,
#stacks_in_18313 .link_effect15stacks_in_18313 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18313 .link_effect15stacks_in_18313 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18313 .link_effect15stacks_in_18313 a:hover::after,
#stacks_in_18313 .link_effect15stacks_in_18313 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18313 .link_effect16stacks_in_18313 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a::before,
#stacks_in_18313 .link_effect16stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a:hover {
	color: #d04c3f;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a::before,
#stacks_in_18313 .link_effect16stacks_in_18313 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18313 .link_effect16stacks_in_18313 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18313 .link_effect16stacks_in_18313 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18313 .link_effect16stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect16stacks_in_18313 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18313 .link_effect17stacks_in_18313 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18313 .link_effect17stacks_in_18313 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18313 .link_effect17stacks_in_18313 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18313 .link_effect18stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect18stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect18stacks_in_18313 a::before,
#stacks_in_18313 .link_effect18stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18313 .link_effect18stacks_in_18313 {
}

#stacks_in_18313 .link_effect18stacks_in_18313 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18313 .link_effect18stacks_in_18313 a::before,
#stacks_in_18313 .link_effect18stacks_in_18313 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18313 .link_effect18stacks_in_18313 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18313 .link_effect18stacks_in_18313 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18313 .link_effect18stacks_in_18313 a:hover,
#stacks_in_18313 .link_effect18stacks_in_18313 a:focus {
	color: #fff;
}

#stacks_in_18313 .link_effect18stacks_in_18313 a:hover::before,
#stacks_in_18313 .link_effect18stacks_in_18313 a:focus::before,
#stacks_in_18313 .link_effect18stacks_in_18313 a:hover::after,
#stacks_in_18313 .link_effect18stacks_in_18313 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18313 .link_effect19stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect19stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect19stacks_in_18313 a::before,
#stacks_in_18313 .link_effect19stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18313 a {
}

.link_effect19stacks_in_18313 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18313 a:hover::after,
.link_effect19stacks_in_18313 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18313 .link_effect20stacks_in_18313 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18313 .link_effect20stacks_in_18313 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18313 .link_effect20stacks_in_18313 a::before,
#stacks_in_18313 .link_effect20stacks_in_18313 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18313 a {
}

.link_effect20stacks_in_18313 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18313 a:hover::after,
.link_effect20stacks_in_18313 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17937 article,
#stacks_in_17937 aside,
#stacks_in_17937 details,
#stacks_in_17937 figcaption,
#stacks_in_17937 figure,
#stacks_in_17937 footer,
#stacks_in_17937 header,
#stacks_in_17937 hgroup,
#stacks_in_17937 main,
#stacks_in_17937 nav,
#stacks_in_17937 section,
#stacks_in_17937 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17937 audio,
#stacks_in_17937 canvas,
#stacks_in_17937 progress,
#stacks_in_17937 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17937 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17937 [hidden],
#stacks_in_17937 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17937 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17937 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17937 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17937 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17937 code,
#stacks_in_17937 kbd,
#stacks_in_17937 pre,
#stacks_in_17937 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17937 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17937 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17937 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17937 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17937 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17937 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17937 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17937 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17937 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17937 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17937 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17937 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17937 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17937 .left {
  float: left !important; }

#stacks_in_17937 .right {
  float: right !important; }

#stacks_in_17937 .clearfix:before,
#stacks_in_17937 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17937 .clearfix:after {
  clear: both; }

#stacks_in_17937 .hide {
  display: none; }

#stacks_in_17937 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17937 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17937 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17937 select {
  width: 100%; }

#stacks_in_17937 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17937 .row:before,
#stacks_in_17937 .row:after {
  content: " ";
  display: table; }

#stacks_in_17937 .row:after {
  clear: both; }

#stacks_in_17937 .row.collapse > .column,
#stacks_in_17937 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17937 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17937 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17937 .row .row:before,
#stacks_in_17937 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17937 .row .row:after {
  clear: both; }

#stacks_in_17937 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17937 .row .row.collapse:before,
#stacks_in_17937 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17937 .row .row.collapse:after {
  clear: both; }

#stacks_in_17937 .column,
#stacks_in_17937 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17937 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17937 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17937 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17937 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17937 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17937 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17937 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17937 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17937 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17937 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17937 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17937 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17937 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17937 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17937 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17937 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17937 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17937 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17937 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17937 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17937 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17937 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17937 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17937 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17937 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17937 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17937 .column,
  #stacks_in_17937 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17937 .small-1 {
    width: 8.33333%; }

  #stacks_in_17937 .small-2 {
    width: 16.66667%; }

  #stacks_in_17937 .small-3 {
    width: 25%; }

  #stacks_in_17937 .small-4 {
    width: 33.33333%; }

  #stacks_in_17937 .small-5 {
    width: 41.66667%; }

  #stacks_in_17937 .small-6 {
    width: 50%; }

  #stacks_in_17937 .small-7 {
    width: 58.33333%; }

  #stacks_in_17937 .small-8 {
    width: 66.66667%; }

  #stacks_in_17937 .small-9 {
    width: 75%; }

  #stacks_in_17937 .small-10 {
    width: 83.33333%; }

  #stacks_in_17937 .small-11 {
    width: 91.66667%; }

  #stacks_in_17937 .small-12 {
    width: 100%; }

  #stacks_in_17937 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17937 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17937 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17937 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17937 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17937 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17937 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17937 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17937 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17937 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17937 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17937 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17937 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17937 .column.small-centered,
  #stacks_in_17937 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17937 .column.small-uncentered,
  #stacks_in_17937 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17937 .column.small-centered:last-child,
  #stacks_in_17937 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17937 .column.small-uncentered:last-child,
  #stacks_in_17937 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17937 .column.small-uncentered.opposite,
  #stacks_in_17937 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17937 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17937 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17937 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17937 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17937 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17937 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17937 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17937 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17937 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17937 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17937 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17937 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17937 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17937 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17937 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17937 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17937 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17937 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17937 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17937 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17937 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17937 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17937 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17937 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17937 .column,
  #stacks_in_17937 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17937 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17937 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17937 .medium-3 {
    width: 25%; }

  #stacks_in_17937 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17937 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17937 .medium-6 {
    width: 50%; }

  #stacks_in_17937 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17937 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17937 .medium-9 {
    width: 75%; }

  #stacks_in_17937 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17937 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17937 .medium-12 {
    width: 100%; }

  #stacks_in_17937 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17937 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17937 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17937 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17937 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17937 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17937 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17937 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17937 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17937 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17937 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17937 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17937 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17937 .column.medium-centered,
  #stacks_in_17937 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17937 .column.medium-uncentered,
  #stacks_in_17937 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17937 .column.medium-centered:last-child,
  #stacks_in_17937 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17937 .column.medium-uncentered:last-child,
  #stacks_in_17937 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17937 .column.medium-uncentered.opposite,
  #stacks_in_17937 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17937 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17937 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17937 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17937 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17937 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17937 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17937 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17937 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17937 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17937 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17937 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17937 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17937 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17937 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17937 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17937 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17937 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17937 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17937 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17937 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17937 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17937 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17937 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17937 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17937 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17937 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17937 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17937 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17937 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17937 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17937 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17937 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17937 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17937 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17937 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17937 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17937 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17937 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17937 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17937 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17937 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17937 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17937 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17937 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17937 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17937 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17937 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17937 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17937 .column,
  #stacks_in_17937 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17937 .large-1 {
    width: 8.33333%; }

  #stacks_in_17937 .large-2 {
    width: 16.66667%; }

  #stacks_in_17937 .large-3 {
    width: 25%; }

  #stacks_in_17937 .large-4 {
    width: 33.33333%; }

  #stacks_in_17937 .large-5 {
    width: 41.66667%; }

  #stacks_in_17937 .large-6 {
    width: 50%; }

  #stacks_in_17937 .large-7 {
    width: 58.33333%; }

  #stacks_in_17937 .large-8 {
    width: 66.66667%; }

  #stacks_in_17937 .large-9 {
    width: 75%; }

  #stacks_in_17937 .large-10 {
    width: 83.33333%; }

  #stacks_in_17937 .large-11 {
    width: 91.66667%; }

  #stacks_in_17937 .large-12 {
    width: 100%; }

  #stacks_in_17937 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17937 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17937 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17937 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17937 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17937 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17937 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17937 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17937 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17937 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17937 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17937 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17937 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17937 .column.large-centered,
  #stacks_in_17937 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17937 .column.large-uncentered,
  #stacks_in_17937 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17937 .column.large-centered:last-child,
  #stacks_in_17937 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17937 .column.large-uncentered:last-child,
  #stacks_in_17937 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17937 .column.large-uncentered.opposite,
  #stacks_in_17937 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17937 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17937 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17937 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17937 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17937 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17937 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17937 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17937 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17937 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17937 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17937 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17937 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17937 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17937 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17937 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17937 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17937 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17937 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17937 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17937 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17937 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17937 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17937 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17937 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17937 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17937 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17937 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17937 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17937 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17937 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17937 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17937 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17937 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17937 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17937 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17937 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17937 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17937 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17937 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17937 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17937 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18266   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18266 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18266 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18266 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18266 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18266 .captionThing {
}


#stacks_in_18266 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #F19F57;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18266 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18266 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18266 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18266 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18266 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18266	.shadow-style1stacks_in_18266  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18266	.shadow-style1stacks_in_18266 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18274 a:before, .link_effect1stacks_in_18274 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18274 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18274 a:hover:before, .link_effect1stacks_in_18274 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18274 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18274 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18274 .link_effect2stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18274 .link_effect2stacks_in_18274 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18274 .link_effect3stacks_in_18274 {
  	text-decoration: none;
}

#stacks_in_18274 .link_effect3stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18274 .link_effect3stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect3stacks_in_18274 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18274 .link_effect4stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect4stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect4stacks_in_18274 a::before,
#stacks_in_18274 .link_effect%stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect4stacks_in_18274 {
}

#stacks_in_18274 .link_effect4stacks_in_18274 a {
	font-weight:normal;;
}

#stacks_in_18274 .link_effect4stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18274 .link_effect4stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect4stacks_in_18274 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18274 .link_effect5stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect5stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect5stacks_in_18274 a::before,
#stacks_in_18274 .link_effect5stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect5stacks_in_18274 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18274 .link_effect5stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18274 .link_effect5stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect5stacks_in_18274 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18274 .link_effect6stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect6stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect6stacks_in_18274 a::before,
#stacks_in_18274 .link_effect6stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect6stacks_in_18274 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18274 .link_effect6stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18274 .link_effect6stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect6stacks_in_18274 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18274 .link_effect7stacks_in_18274 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect7stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect7stacks_in_18274 a::before,
#stacks_in_18274 .link_effect7stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect7stacks_in_18274 {
	position: relative;
}

#stacks_in_18274 .link_effect7stacks_in_18274 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18274 .link_effect7stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18274 .link_effect7stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect7stacks_in_18274 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18274 .link_effect8stacks_in_18274 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect8stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect8stacks_in_18274 a::before,
#stacks_in_18274 .link_effect8stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18274 .link_effect8stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18274 .link_effect8stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect8stacks_in_18274 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18274 .link_effect8stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18274 .link_effect8stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect8stacks_in_18274 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18274 .link_effect9stacks_in_18274 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect9stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect9stacks_in_18274 a::before,
#stacks_in_18274 .link_effect9stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect9stacks_in_18274 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18274 .link_effect9stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect9stacks_in_18274 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18274 .link_effect9stacks_in_18274 a::before,
#stacks_in_18274 .link_effect9stacks_in_18274 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18274 .link_effect9stacks_in_18274 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18274 .link_effect9stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect9stacks_in_18274 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18274 .link_effect9stacks_in_18274 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18274 .link_effect10stacks_in_18274 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect10stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect10stacks_in_18274 a::before,
#stacks_in_18274 .link_effect10stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect10stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18274 .link_effect10stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect10stacks_in_18274 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18274 .link_effect10stacks_in_18274 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18274 .link_effect10stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect10stacks_in_18274 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18274 .link_effect11stacks_in_18274 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18274 .link_effect11stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect11stacks_in_18274 a::before,
#stacks_in_18274 .link_effect11stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect11stacks_in_18274 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18274 .link_effect11stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect11stacks_in_18274 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18274 .link_effect11stacks_in_18274 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18274 .link_effect11stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect11stacks_in_18274 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18274 .link_effect12stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect12stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect12stacks_in_18274 a::before,
#stacks_in_18274 .link_effect12stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect12stacks_in_18274 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18274 .link_effect12stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect12stacks_in_18274 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18274 .link_effect12stacks_in_18274 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18274 .link_effect12stacks_in_18274 a,
#stacks_in_18274 .link_effect12stacks_in_18274 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18274 .link_effect12stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect12stacks_in_18274 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18274 .link_effect13stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect13stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect13stacks_in_18274 a::before,
#stacks_in_18274 .link_effect13stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect13stacks_in_18274 {
}

#stacks_in_18274 .link_effect13stacks_in_18274 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18274 .link_effect13stacks_in_18274 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18274 .link_effect13stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect13stacks_in_18274 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18274 .link_effect14stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect14stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect14stacks_in_18274 a::before,
#stacks_in_18274 .link_effect14stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect14stacks_in_18274 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18274 .link_effect14stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect14stacks_in_18274 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18274 .link_effect14stacks_in_18274 a::before,
#stacks_in_18274 .link_effect14stacks_in_18274 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18274 .link_effect14stacks_in_18274 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18274 .link_effect14stacks_in_18274 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18274 .link_effect14stacks_in_18274 a:hover::after,
#stacks_in_18274 .link_effect14stacks_in_18274 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18274 .link_effect15stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect15stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect15stacks_in_18274 a::before,
#stacks_in_18274 .link_effect15stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect15stacks_in_18274 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18274 .link_effect15stacks_in_18274 a::before,
#stacks_in_18274 .link_effect15stacks_in_18274 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18274 .link_effect15stacks_in_18274 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18274 .link_effect15stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect15stacks_in_18274 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18274 .link_effect15stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect15stacks_in_18274 a:focus::before,
#stacks_in_18274 .link_effect15stacks_in_18274 a:hover::after,
#stacks_in_18274 .link_effect15stacks_in_18274 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18274 .link_effect15stacks_in_18274 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18274 .link_effect15stacks_in_18274 a:hover::after,
#stacks_in_18274 .link_effect15stacks_in_18274 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18274 .link_effect16stacks_in_18274 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a::before,
#stacks_in_18274 .link_effect16stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a:hover {
	color: #d04c3f;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a::before,
#stacks_in_18274 .link_effect16stacks_in_18274 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18274 .link_effect16stacks_in_18274 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18274 .link_effect16stacks_in_18274 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18274 .link_effect16stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect16stacks_in_18274 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18274 .link_effect17stacks_in_18274 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18274 .link_effect17stacks_in_18274 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18274 .link_effect17stacks_in_18274 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18274 .link_effect18stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect18stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect18stacks_in_18274 a::before,
#stacks_in_18274 .link_effect18stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18274 .link_effect18stacks_in_18274 {
}

#stacks_in_18274 .link_effect18stacks_in_18274 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18274 .link_effect18stacks_in_18274 a::before,
#stacks_in_18274 .link_effect18stacks_in_18274 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18274 .link_effect18stacks_in_18274 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18274 .link_effect18stacks_in_18274 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18274 .link_effect18stacks_in_18274 a:hover,
#stacks_in_18274 .link_effect18stacks_in_18274 a:focus {
	color: #fff;
}

#stacks_in_18274 .link_effect18stacks_in_18274 a:hover::before,
#stacks_in_18274 .link_effect18stacks_in_18274 a:focus::before,
#stacks_in_18274 .link_effect18stacks_in_18274 a:hover::after,
#stacks_in_18274 .link_effect18stacks_in_18274 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18274 .link_effect19stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect19stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect19stacks_in_18274 a::before,
#stacks_in_18274 .link_effect19stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18274 a {
}

.link_effect19stacks_in_18274 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18274 a:hover::after,
.link_effect19stacks_in_18274 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18274 .link_effect20stacks_in_18274 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18274 .link_effect20stacks_in_18274 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18274 .link_effect20stacks_in_18274 a::before,
#stacks_in_18274 .link_effect20stacks_in_18274 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18274 a {
}

.link_effect20stacks_in_18274 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18274 a:hover::after,
.link_effect20stacks_in_18274 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18250   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18250 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18250 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18250 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18250 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18250 .captionThing {
}


#stacks_in_18250 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #B7A58F;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18250 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18250 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18250 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18250 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18250 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18250	.shadow-style1stacks_in_18250  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18250	.shadow-style1stacks_in_18250 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18258 a:before, .link_effect1stacks_in_18258 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18258 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18258 a:hover:before, .link_effect1stacks_in_18258 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18258 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18258 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18258 .link_effect2stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18258 .link_effect2stacks_in_18258 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18258 .link_effect3stacks_in_18258 {
  	text-decoration: none;
}

#stacks_in_18258 .link_effect3stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18258 .link_effect3stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect3stacks_in_18258 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18258 .link_effect4stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect4stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect4stacks_in_18258 a::before,
#stacks_in_18258 .link_effect%stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect4stacks_in_18258 {
}

#stacks_in_18258 .link_effect4stacks_in_18258 a {
	font-weight:normal;;
}

#stacks_in_18258 .link_effect4stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18258 .link_effect4stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect4stacks_in_18258 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18258 .link_effect5stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect5stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect5stacks_in_18258 a::before,
#stacks_in_18258 .link_effect5stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect5stacks_in_18258 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18258 .link_effect5stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18258 .link_effect5stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect5stacks_in_18258 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18258 .link_effect6stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect6stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect6stacks_in_18258 a::before,
#stacks_in_18258 .link_effect6stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect6stacks_in_18258 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18258 .link_effect6stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18258 .link_effect6stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect6stacks_in_18258 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18258 .link_effect7stacks_in_18258 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect7stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect7stacks_in_18258 a::before,
#stacks_in_18258 .link_effect7stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect7stacks_in_18258 {
	position: relative;
}

#stacks_in_18258 .link_effect7stacks_in_18258 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18258 .link_effect7stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18258 .link_effect7stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect7stacks_in_18258 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18258 .link_effect8stacks_in_18258 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect8stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect8stacks_in_18258 a::before,
#stacks_in_18258 .link_effect8stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18258 .link_effect8stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18258 .link_effect8stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect8stacks_in_18258 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18258 .link_effect8stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18258 .link_effect8stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect8stacks_in_18258 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18258 .link_effect9stacks_in_18258 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect9stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect9stacks_in_18258 a::before,
#stacks_in_18258 .link_effect9stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect9stacks_in_18258 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18258 .link_effect9stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect9stacks_in_18258 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18258 .link_effect9stacks_in_18258 a::before,
#stacks_in_18258 .link_effect9stacks_in_18258 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18258 .link_effect9stacks_in_18258 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18258 .link_effect9stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect9stacks_in_18258 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18258 .link_effect9stacks_in_18258 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18258 .link_effect10stacks_in_18258 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect10stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect10stacks_in_18258 a::before,
#stacks_in_18258 .link_effect10stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect10stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18258 .link_effect10stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect10stacks_in_18258 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18258 .link_effect10stacks_in_18258 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18258 .link_effect10stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect10stacks_in_18258 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18258 .link_effect11stacks_in_18258 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18258 .link_effect11stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect11stacks_in_18258 a::before,
#stacks_in_18258 .link_effect11stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect11stacks_in_18258 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18258 .link_effect11stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect11stacks_in_18258 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18258 .link_effect11stacks_in_18258 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18258 .link_effect11stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect11stacks_in_18258 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18258 .link_effect12stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect12stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect12stacks_in_18258 a::before,
#stacks_in_18258 .link_effect12stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect12stacks_in_18258 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18258 .link_effect12stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect12stacks_in_18258 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18258 .link_effect12stacks_in_18258 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18258 .link_effect12stacks_in_18258 a,
#stacks_in_18258 .link_effect12stacks_in_18258 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18258 .link_effect12stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect12stacks_in_18258 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18258 .link_effect13stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect13stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect13stacks_in_18258 a::before,
#stacks_in_18258 .link_effect13stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect13stacks_in_18258 {
}

#stacks_in_18258 .link_effect13stacks_in_18258 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18258 .link_effect13stacks_in_18258 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18258 .link_effect13stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect13stacks_in_18258 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18258 .link_effect14stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect14stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect14stacks_in_18258 a::before,
#stacks_in_18258 .link_effect14stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect14stacks_in_18258 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18258 .link_effect14stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect14stacks_in_18258 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18258 .link_effect14stacks_in_18258 a::before,
#stacks_in_18258 .link_effect14stacks_in_18258 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18258 .link_effect14stacks_in_18258 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18258 .link_effect14stacks_in_18258 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18258 .link_effect14stacks_in_18258 a:hover::after,
#stacks_in_18258 .link_effect14stacks_in_18258 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18258 .link_effect15stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect15stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect15stacks_in_18258 a::before,
#stacks_in_18258 .link_effect15stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect15stacks_in_18258 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18258 .link_effect15stacks_in_18258 a::before,
#stacks_in_18258 .link_effect15stacks_in_18258 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18258 .link_effect15stacks_in_18258 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18258 .link_effect15stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect15stacks_in_18258 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18258 .link_effect15stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect15stacks_in_18258 a:focus::before,
#stacks_in_18258 .link_effect15stacks_in_18258 a:hover::after,
#stacks_in_18258 .link_effect15stacks_in_18258 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18258 .link_effect15stacks_in_18258 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18258 .link_effect15stacks_in_18258 a:hover::after,
#stacks_in_18258 .link_effect15stacks_in_18258 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18258 .link_effect16stacks_in_18258 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a::before,
#stacks_in_18258 .link_effect16stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a:hover {
	color: #d04c3f;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a::before,
#stacks_in_18258 .link_effect16stacks_in_18258 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18258 .link_effect16stacks_in_18258 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18258 .link_effect16stacks_in_18258 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18258 .link_effect16stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect16stacks_in_18258 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18258 .link_effect17stacks_in_18258 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18258 .link_effect17stacks_in_18258 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18258 .link_effect17stacks_in_18258 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18258 .link_effect18stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect18stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect18stacks_in_18258 a::before,
#stacks_in_18258 .link_effect18stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18258 .link_effect18stacks_in_18258 {
}

#stacks_in_18258 .link_effect18stacks_in_18258 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18258 .link_effect18stacks_in_18258 a::before,
#stacks_in_18258 .link_effect18stacks_in_18258 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18258 .link_effect18stacks_in_18258 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18258 .link_effect18stacks_in_18258 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18258 .link_effect18stacks_in_18258 a:hover,
#stacks_in_18258 .link_effect18stacks_in_18258 a:focus {
	color: #fff;
}

#stacks_in_18258 .link_effect18stacks_in_18258 a:hover::before,
#stacks_in_18258 .link_effect18stacks_in_18258 a:focus::before,
#stacks_in_18258 .link_effect18stacks_in_18258 a:hover::after,
#stacks_in_18258 .link_effect18stacks_in_18258 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18258 .link_effect19stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect19stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect19stacks_in_18258 a::before,
#stacks_in_18258 .link_effect19stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18258 a {
}

.link_effect19stacks_in_18258 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18258 a:hover::after,
.link_effect19stacks_in_18258 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18258 .link_effect20stacks_in_18258 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18258 .link_effect20stacks_in_18258 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18258 .link_effect20stacks_in_18258 a::before,
#stacks_in_18258 .link_effect20stacks_in_18258 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18258 a {
}

.link_effect20stacks_in_18258 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18258 a:hover::after,
.link_effect20stacks_in_18258 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17839   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17839 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17839 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17839 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17839 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17839 .captionThing {
}


#stacks_in_17839 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #BDC5BA;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17839 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17839 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17839 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17839 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17839 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17839	.shadow-style1stacks_in_17839  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17839	.shadow-style1stacks_in_17839 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17908 a:before, .link_effect1stacks_in_17908 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17908 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17908 a:hover:before, .link_effect1stacks_in_17908 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17908 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17908 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17908 .link_effect2stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17908 .link_effect2stacks_in_17908 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17908 .link_effect3stacks_in_17908 {
  	text-decoration: none;
}

#stacks_in_17908 .link_effect3stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17908 .link_effect3stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect3stacks_in_17908 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17908 .link_effect4stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect4stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect4stacks_in_17908 a::before,
#stacks_in_17908 .link_effect%stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect4stacks_in_17908 {
}

#stacks_in_17908 .link_effect4stacks_in_17908 a {
	font-weight:normal;;
}

#stacks_in_17908 .link_effect4stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17908 .link_effect4stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect4stacks_in_17908 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17908 .link_effect5stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect5stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect5stacks_in_17908 a::before,
#stacks_in_17908 .link_effect5stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect5stacks_in_17908 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17908 .link_effect5stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17908 .link_effect5stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect5stacks_in_17908 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17908 .link_effect6stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect6stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect6stacks_in_17908 a::before,
#stacks_in_17908 .link_effect6stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect6stacks_in_17908 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17908 .link_effect6stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17908 .link_effect6stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect6stacks_in_17908 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17908 .link_effect7stacks_in_17908 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect7stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect7stacks_in_17908 a::before,
#stacks_in_17908 .link_effect7stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect7stacks_in_17908 {
	position: relative;
}

#stacks_in_17908 .link_effect7stacks_in_17908 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17908 .link_effect7stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17908 .link_effect7stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect7stacks_in_17908 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17908 .link_effect8stacks_in_17908 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect8stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect8stacks_in_17908 a::before,
#stacks_in_17908 .link_effect8stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17908 .link_effect8stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17908 .link_effect8stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect8stacks_in_17908 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17908 .link_effect8stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17908 .link_effect8stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect8stacks_in_17908 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17908 .link_effect9stacks_in_17908 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect9stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect9stacks_in_17908 a::before,
#stacks_in_17908 .link_effect9stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect9stacks_in_17908 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17908 .link_effect9stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect9stacks_in_17908 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17908 .link_effect9stacks_in_17908 a::before,
#stacks_in_17908 .link_effect9stacks_in_17908 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17908 .link_effect9stacks_in_17908 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17908 .link_effect9stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect9stacks_in_17908 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17908 .link_effect9stacks_in_17908 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17908 .link_effect10stacks_in_17908 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect10stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect10stacks_in_17908 a::before,
#stacks_in_17908 .link_effect10stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect10stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17908 .link_effect10stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect10stacks_in_17908 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17908 .link_effect10stacks_in_17908 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17908 .link_effect10stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect10stacks_in_17908 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17908 .link_effect11stacks_in_17908 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17908 .link_effect11stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect11stacks_in_17908 a::before,
#stacks_in_17908 .link_effect11stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect11stacks_in_17908 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17908 .link_effect11stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect11stacks_in_17908 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17908 .link_effect11stacks_in_17908 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17908 .link_effect11stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect11stacks_in_17908 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17908 .link_effect12stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect12stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect12stacks_in_17908 a::before,
#stacks_in_17908 .link_effect12stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect12stacks_in_17908 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17908 .link_effect12stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect12stacks_in_17908 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17908 .link_effect12stacks_in_17908 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17908 .link_effect12stacks_in_17908 a,
#stacks_in_17908 .link_effect12stacks_in_17908 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17908 .link_effect12stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect12stacks_in_17908 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17908 .link_effect13stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect13stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect13stacks_in_17908 a::before,
#stacks_in_17908 .link_effect13stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect13stacks_in_17908 {
}

#stacks_in_17908 .link_effect13stacks_in_17908 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17908 .link_effect13stacks_in_17908 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17908 .link_effect13stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect13stacks_in_17908 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17908 .link_effect14stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect14stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect14stacks_in_17908 a::before,
#stacks_in_17908 .link_effect14stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect14stacks_in_17908 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17908 .link_effect14stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect14stacks_in_17908 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17908 .link_effect14stacks_in_17908 a::before,
#stacks_in_17908 .link_effect14stacks_in_17908 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17908 .link_effect14stacks_in_17908 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17908 .link_effect14stacks_in_17908 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17908 .link_effect14stacks_in_17908 a:hover::after,
#stacks_in_17908 .link_effect14stacks_in_17908 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17908 .link_effect15stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect15stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect15stacks_in_17908 a::before,
#stacks_in_17908 .link_effect15stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect15stacks_in_17908 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17908 .link_effect15stacks_in_17908 a::before,
#stacks_in_17908 .link_effect15stacks_in_17908 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17908 .link_effect15stacks_in_17908 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17908 .link_effect15stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect15stacks_in_17908 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17908 .link_effect15stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect15stacks_in_17908 a:focus::before,
#stacks_in_17908 .link_effect15stacks_in_17908 a:hover::after,
#stacks_in_17908 .link_effect15stacks_in_17908 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17908 .link_effect15stacks_in_17908 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17908 .link_effect15stacks_in_17908 a:hover::after,
#stacks_in_17908 .link_effect15stacks_in_17908 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17908 .link_effect16stacks_in_17908 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a::before,
#stacks_in_17908 .link_effect16stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a:hover {
	color: #d04c3f;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a::before,
#stacks_in_17908 .link_effect16stacks_in_17908 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17908 .link_effect16stacks_in_17908 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17908 .link_effect16stacks_in_17908 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17908 .link_effect16stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect16stacks_in_17908 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17908 .link_effect17stacks_in_17908 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17908 .link_effect17stacks_in_17908 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17908 .link_effect17stacks_in_17908 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17908 .link_effect18stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect18stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect18stacks_in_17908 a::before,
#stacks_in_17908 .link_effect18stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17908 .link_effect18stacks_in_17908 {
}

#stacks_in_17908 .link_effect18stacks_in_17908 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17908 .link_effect18stacks_in_17908 a::before,
#stacks_in_17908 .link_effect18stacks_in_17908 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17908 .link_effect18stacks_in_17908 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17908 .link_effect18stacks_in_17908 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17908 .link_effect18stacks_in_17908 a:hover,
#stacks_in_17908 .link_effect18stacks_in_17908 a:focus {
	color: #fff;
}

#stacks_in_17908 .link_effect18stacks_in_17908 a:hover::before,
#stacks_in_17908 .link_effect18stacks_in_17908 a:focus::before,
#stacks_in_17908 .link_effect18stacks_in_17908 a:hover::after,
#stacks_in_17908 .link_effect18stacks_in_17908 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17908 .link_effect19stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect19stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect19stacks_in_17908 a::before,
#stacks_in_17908 .link_effect19stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17908 a {
}

.link_effect19stacks_in_17908 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17908 a:hover::after,
.link_effect19stacks_in_17908 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17908 .link_effect20stacks_in_17908 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17908 .link_effect20stacks_in_17908 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17908 .link_effect20stacks_in_17908 a::before,
#stacks_in_17908 .link_effect20stacks_in_17908 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17908 a {
}

.link_effect20stacks_in_17908 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17908 a:hover::after,
.link_effect20stacks_in_17908 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_18075 article,
#stacks_in_18075 aside,
#stacks_in_18075 details,
#stacks_in_18075 figcaption,
#stacks_in_18075 figure,
#stacks_in_18075 footer,
#stacks_in_18075 header,
#stacks_in_18075 hgroup,
#stacks_in_18075 main,
#stacks_in_18075 nav,
#stacks_in_18075 section,
#stacks_in_18075 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_18075 audio,
#stacks_in_18075 canvas,
#stacks_in_18075 progress,
#stacks_in_18075 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_18075 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_18075 [hidden],
#stacks_in_18075 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_18075 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_18075 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_18075 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_18075 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_18075 code,
#stacks_in_18075 kbd,
#stacks_in_18075 pre,
#stacks_in_18075 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_18075 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_18075 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_18075 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_18075 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_18075 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_18075 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_18075 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_18075 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_18075 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_18075 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_18075 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_18075 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_18075 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_18075 .left {
  float: left !important; }

#stacks_in_18075 .right {
  float: right !important; }

#stacks_in_18075 .clearfix:before,
#stacks_in_18075 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_18075 .clearfix:after {
  clear: both; }

#stacks_in_18075 .hide {
  display: none; }

#stacks_in_18075 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_18075 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_18075 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_18075 select {
  width: 100%; }

#stacks_in_18075 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_18075 .row:before,
#stacks_in_18075 .row:after {
  content: " ";
  display: table; }

#stacks_in_18075 .row:after {
  clear: both; }

#stacks_in_18075 .row.collapse > .column,
#stacks_in_18075 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_18075 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_18075 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_18075 .row .row:before,
#stacks_in_18075 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_18075 .row .row:after {
  clear: both; }

#stacks_in_18075 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_18075 .row .row.collapse:before,
#stacks_in_18075 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_18075 .row .row.collapse:after {
  clear: both; }

#stacks_in_18075 .column,
#stacks_in_18075 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_18075 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_18075 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_18075 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18075 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18075 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18075 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18075 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18075 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18075 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18075 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18075 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18075 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18075 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18075 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18075 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18075 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18075 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18075 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18075 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18075 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18075 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18075 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18075 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18075 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18075 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18075 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18075 .column,
  #stacks_in_18075 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18075 .small-1 {
    width: 8.33333%; }

  #stacks_in_18075 .small-2 {
    width: 16.66667%; }

  #stacks_in_18075 .small-3 {
    width: 25%; }

  #stacks_in_18075 .small-4 {
    width: 33.33333%; }

  #stacks_in_18075 .small-5 {
    width: 41.66667%; }

  #stacks_in_18075 .small-6 {
    width: 50%; }

  #stacks_in_18075 .small-7 {
    width: 58.33333%; }

  #stacks_in_18075 .small-8 {
    width: 66.66667%; }

  #stacks_in_18075 .small-9 {
    width: 75%; }

  #stacks_in_18075 .small-10 {
    width: 83.33333%; }

  #stacks_in_18075 .small-11 {
    width: 91.66667%; }

  #stacks_in_18075 .small-12 {
    width: 100%; }

  #stacks_in_18075 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18075 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18075 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18075 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18075 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18075 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18075 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18075 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18075 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18075 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18075 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18075 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18075 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18075 .column.small-centered,
  #stacks_in_18075 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18075 .column.small-uncentered,
  #stacks_in_18075 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18075 .column.small-centered:last-child,
  #stacks_in_18075 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_18075 .column.small-uncentered:last-child,
  #stacks_in_18075 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_18075 .column.small-uncentered.opposite,
  #stacks_in_18075 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_18075 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18075 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18075 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18075 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18075 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18075 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18075 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18075 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18075 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18075 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18075 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18075 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18075 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18075 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18075 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18075 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18075 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18075 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18075 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18075 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18075 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18075 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18075 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18075 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18075 .column,
  #stacks_in_18075 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18075 .medium-1 {
    width: 8.33333%; }

  #stacks_in_18075 .medium-2 {
    width: 16.66667%; }

  #stacks_in_18075 .medium-3 {
    width: 25%; }

  #stacks_in_18075 .medium-4 {
    width: 33.33333%; }

  #stacks_in_18075 .medium-5 {
    width: 41.66667%; }

  #stacks_in_18075 .medium-6 {
    width: 50%; }

  #stacks_in_18075 .medium-7 {
    width: 58.33333%; }

  #stacks_in_18075 .medium-8 {
    width: 66.66667%; }

  #stacks_in_18075 .medium-9 {
    width: 75%; }

  #stacks_in_18075 .medium-10 {
    width: 83.33333%; }

  #stacks_in_18075 .medium-11 {
    width: 91.66667%; }

  #stacks_in_18075 .medium-12 {
    width: 100%; }

  #stacks_in_18075 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18075 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18075 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18075 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18075 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18075 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18075 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18075 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18075 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18075 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18075 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18075 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18075 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18075 .column.medium-centered,
  #stacks_in_18075 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18075 .column.medium-uncentered,
  #stacks_in_18075 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18075 .column.medium-centered:last-child,
  #stacks_in_18075 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_18075 .column.medium-uncentered:last-child,
  #stacks_in_18075 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_18075 .column.medium-uncentered.opposite,
  #stacks_in_18075 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_18075 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18075 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18075 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18075 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18075 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18075 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18075 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18075 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18075 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18075 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18075 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18075 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18075 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18075 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18075 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18075 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18075 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18075 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18075 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18075 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18075 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18075 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18075 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18075 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_18075 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18075 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18075 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18075 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18075 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18075 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18075 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18075 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18075 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18075 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18075 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18075 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18075 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18075 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18075 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18075 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18075 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18075 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18075 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18075 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18075 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18075 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18075 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18075 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18075 .column,
  #stacks_in_18075 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18075 .large-1 {
    width: 8.33333%; }

  #stacks_in_18075 .large-2 {
    width: 16.66667%; }

  #stacks_in_18075 .large-3 {
    width: 25%; }

  #stacks_in_18075 .large-4 {
    width: 33.33333%; }

  #stacks_in_18075 .large-5 {
    width: 41.66667%; }

  #stacks_in_18075 .large-6 {
    width: 50%; }

  #stacks_in_18075 .large-7 {
    width: 58.33333%; }

  #stacks_in_18075 .large-8 {
    width: 66.66667%; }

  #stacks_in_18075 .large-9 {
    width: 75%; }

  #stacks_in_18075 .large-10 {
    width: 83.33333%; }

  #stacks_in_18075 .large-11 {
    width: 91.66667%; }

  #stacks_in_18075 .large-12 {
    width: 100%; }

  #stacks_in_18075 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18075 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18075 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18075 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18075 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18075 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18075 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18075 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18075 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18075 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18075 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18075 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18075 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18075 .column.large-centered,
  #stacks_in_18075 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18075 .column.large-uncentered,
  #stacks_in_18075 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18075 .column.large-centered:last-child,
  #stacks_in_18075 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_18075 .column.large-uncentered:last-child,
  #stacks_in_18075 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_18075 .column.large-uncentered.opposite,
  #stacks_in_18075 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_18075 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18075 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18075 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18075 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18075 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18075 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18075 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18075 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18075 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18075 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18075 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18075 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18075 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18075 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18075 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18075 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18075 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18075 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18075 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18075 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18075 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18075 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18075 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18075 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_18075 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_18075 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_18075 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_18075 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_18075 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_18075 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_18075 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_18075 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18075 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18075 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_18075 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18075 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18075 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_18075 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18075 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18075 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18075 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18077   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18077 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18077 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18077 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18077 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18077 .captionThing {
}


#stacks_in_18077 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #D4CEBD;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18077 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18077 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18077 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18077 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18077 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18077	.shadow-style1stacks_in_18077  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18077	.shadow-style1stacks_in_18077 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18087 a:before, .link_effect1stacks_in_18087 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18087 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18087 a:hover:before, .link_effect1stacks_in_18087 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18087 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18087 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18087 .link_effect2stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18087 .link_effect2stacks_in_18087 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18087 .link_effect3stacks_in_18087 {
  	text-decoration: none;
}

#stacks_in_18087 .link_effect3stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18087 .link_effect3stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect3stacks_in_18087 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18087 .link_effect4stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect4stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect4stacks_in_18087 a::before,
#stacks_in_18087 .link_effect%stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect4stacks_in_18087 {
}

#stacks_in_18087 .link_effect4stacks_in_18087 a {
	font-weight:normal;;
}

#stacks_in_18087 .link_effect4stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18087 .link_effect4stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect4stacks_in_18087 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18087 .link_effect5stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect5stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect5stacks_in_18087 a::before,
#stacks_in_18087 .link_effect5stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect5stacks_in_18087 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18087 .link_effect5stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18087 .link_effect5stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect5stacks_in_18087 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18087 .link_effect6stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect6stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect6stacks_in_18087 a::before,
#stacks_in_18087 .link_effect6stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect6stacks_in_18087 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18087 .link_effect6stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18087 .link_effect6stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect6stacks_in_18087 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18087 .link_effect7stacks_in_18087 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect7stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect7stacks_in_18087 a::before,
#stacks_in_18087 .link_effect7stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect7stacks_in_18087 {
	position: relative;
}

#stacks_in_18087 .link_effect7stacks_in_18087 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18087 .link_effect7stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18087 .link_effect7stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect7stacks_in_18087 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18087 .link_effect8stacks_in_18087 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect8stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect8stacks_in_18087 a::before,
#stacks_in_18087 .link_effect8stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18087 .link_effect8stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18087 .link_effect8stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect8stacks_in_18087 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18087 .link_effect8stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18087 .link_effect8stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect8stacks_in_18087 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18087 .link_effect9stacks_in_18087 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect9stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect9stacks_in_18087 a::before,
#stacks_in_18087 .link_effect9stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect9stacks_in_18087 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18087 .link_effect9stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect9stacks_in_18087 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18087 .link_effect9stacks_in_18087 a::before,
#stacks_in_18087 .link_effect9stacks_in_18087 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18087 .link_effect9stacks_in_18087 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18087 .link_effect9stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect9stacks_in_18087 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18087 .link_effect9stacks_in_18087 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18087 .link_effect10stacks_in_18087 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect10stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect10stacks_in_18087 a::before,
#stacks_in_18087 .link_effect10stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect10stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18087 .link_effect10stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect10stacks_in_18087 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18087 .link_effect10stacks_in_18087 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18087 .link_effect10stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect10stacks_in_18087 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18087 .link_effect11stacks_in_18087 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18087 .link_effect11stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect11stacks_in_18087 a::before,
#stacks_in_18087 .link_effect11stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect11stacks_in_18087 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18087 .link_effect11stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect11stacks_in_18087 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18087 .link_effect11stacks_in_18087 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18087 .link_effect11stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect11stacks_in_18087 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18087 .link_effect12stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect12stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect12stacks_in_18087 a::before,
#stacks_in_18087 .link_effect12stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect12stacks_in_18087 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18087 .link_effect12stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect12stacks_in_18087 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18087 .link_effect12stacks_in_18087 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18087 .link_effect12stacks_in_18087 a,
#stacks_in_18087 .link_effect12stacks_in_18087 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18087 .link_effect12stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect12stacks_in_18087 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18087 .link_effect13stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect13stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect13stacks_in_18087 a::before,
#stacks_in_18087 .link_effect13stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect13stacks_in_18087 {
}

#stacks_in_18087 .link_effect13stacks_in_18087 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18087 .link_effect13stacks_in_18087 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18087 .link_effect13stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect13stacks_in_18087 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18087 .link_effect14stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect14stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect14stacks_in_18087 a::before,
#stacks_in_18087 .link_effect14stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect14stacks_in_18087 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18087 .link_effect14stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect14stacks_in_18087 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18087 .link_effect14stacks_in_18087 a::before,
#stacks_in_18087 .link_effect14stacks_in_18087 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18087 .link_effect14stacks_in_18087 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18087 .link_effect14stacks_in_18087 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18087 .link_effect14stacks_in_18087 a:hover::after,
#stacks_in_18087 .link_effect14stacks_in_18087 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18087 .link_effect15stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect15stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect15stacks_in_18087 a::before,
#stacks_in_18087 .link_effect15stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect15stacks_in_18087 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18087 .link_effect15stacks_in_18087 a::before,
#stacks_in_18087 .link_effect15stacks_in_18087 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18087 .link_effect15stacks_in_18087 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18087 .link_effect15stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect15stacks_in_18087 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18087 .link_effect15stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect15stacks_in_18087 a:focus::before,
#stacks_in_18087 .link_effect15stacks_in_18087 a:hover::after,
#stacks_in_18087 .link_effect15stacks_in_18087 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18087 .link_effect15stacks_in_18087 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18087 .link_effect15stacks_in_18087 a:hover::after,
#stacks_in_18087 .link_effect15stacks_in_18087 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18087 .link_effect16stacks_in_18087 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a::before,
#stacks_in_18087 .link_effect16stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a:hover {
	color: #d04c3f;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a::before,
#stacks_in_18087 .link_effect16stacks_in_18087 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18087 .link_effect16stacks_in_18087 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18087 .link_effect16stacks_in_18087 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18087 .link_effect16stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect16stacks_in_18087 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18087 .link_effect17stacks_in_18087 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18087 .link_effect17stacks_in_18087 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18087 .link_effect17stacks_in_18087 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18087 .link_effect18stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect18stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect18stacks_in_18087 a::before,
#stacks_in_18087 .link_effect18stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18087 .link_effect18stacks_in_18087 {
}

#stacks_in_18087 .link_effect18stacks_in_18087 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18087 .link_effect18stacks_in_18087 a::before,
#stacks_in_18087 .link_effect18stacks_in_18087 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18087 .link_effect18stacks_in_18087 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18087 .link_effect18stacks_in_18087 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18087 .link_effect18stacks_in_18087 a:hover,
#stacks_in_18087 .link_effect18stacks_in_18087 a:focus {
	color: #fff;
}

#stacks_in_18087 .link_effect18stacks_in_18087 a:hover::before,
#stacks_in_18087 .link_effect18stacks_in_18087 a:focus::before,
#stacks_in_18087 .link_effect18stacks_in_18087 a:hover::after,
#stacks_in_18087 .link_effect18stacks_in_18087 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18087 .link_effect19stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect19stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect19stacks_in_18087 a::before,
#stacks_in_18087 .link_effect19stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18087 a {
}

.link_effect19stacks_in_18087 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18087 a:hover::after,
.link_effect19stacks_in_18087 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18087 .link_effect20stacks_in_18087 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18087 .link_effect20stacks_in_18087 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18087 .link_effect20stacks_in_18087 a::before,
#stacks_in_18087 .link_effect20stacks_in_18087 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18087 a {
}

.link_effect20stacks_in_18087 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18087 a:hover::after,
.link_effect20stacks_in_18087 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18092   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18092 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18092 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18092 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18092 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18092 .captionThing {
}


#stacks_in_18092 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #97A82B;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18092 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18092 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18092 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18092 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18092 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18092	.shadow-style1stacks_in_18092  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18092	.shadow-style1stacks_in_18092 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18100 a:before, .link_effect1stacks_in_18100 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18100 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18100 a:hover:before, .link_effect1stacks_in_18100 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18100 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18100 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18100 .link_effect2stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18100 .link_effect2stacks_in_18100 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18100 .link_effect3stacks_in_18100 {
  	text-decoration: none;
}

#stacks_in_18100 .link_effect3stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18100 .link_effect3stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect3stacks_in_18100 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18100 .link_effect4stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect4stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect4stacks_in_18100 a::before,
#stacks_in_18100 .link_effect%stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect4stacks_in_18100 {
}

#stacks_in_18100 .link_effect4stacks_in_18100 a {
	font-weight:normal;;
}

#stacks_in_18100 .link_effect4stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18100 .link_effect4stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect4stacks_in_18100 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18100 .link_effect5stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect5stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect5stacks_in_18100 a::before,
#stacks_in_18100 .link_effect5stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect5stacks_in_18100 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18100 .link_effect5stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18100 .link_effect5stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect5stacks_in_18100 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18100 .link_effect6stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect6stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect6stacks_in_18100 a::before,
#stacks_in_18100 .link_effect6stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect6stacks_in_18100 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18100 .link_effect6stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18100 .link_effect6stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect6stacks_in_18100 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18100 .link_effect7stacks_in_18100 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect7stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect7stacks_in_18100 a::before,
#stacks_in_18100 .link_effect7stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect7stacks_in_18100 {
	position: relative;
}

#stacks_in_18100 .link_effect7stacks_in_18100 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18100 .link_effect7stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18100 .link_effect7stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect7stacks_in_18100 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18100 .link_effect8stacks_in_18100 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect8stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect8stacks_in_18100 a::before,
#stacks_in_18100 .link_effect8stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18100 .link_effect8stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18100 .link_effect8stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect8stacks_in_18100 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18100 .link_effect8stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18100 .link_effect8stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect8stacks_in_18100 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18100 .link_effect9stacks_in_18100 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect9stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect9stacks_in_18100 a::before,
#stacks_in_18100 .link_effect9stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect9stacks_in_18100 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18100 .link_effect9stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect9stacks_in_18100 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18100 .link_effect9stacks_in_18100 a::before,
#stacks_in_18100 .link_effect9stacks_in_18100 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18100 .link_effect9stacks_in_18100 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18100 .link_effect9stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect9stacks_in_18100 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18100 .link_effect9stacks_in_18100 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18100 .link_effect10stacks_in_18100 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect10stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect10stacks_in_18100 a::before,
#stacks_in_18100 .link_effect10stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect10stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18100 .link_effect10stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect10stacks_in_18100 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18100 .link_effect10stacks_in_18100 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18100 .link_effect10stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect10stacks_in_18100 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18100 .link_effect11stacks_in_18100 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18100 .link_effect11stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect11stacks_in_18100 a::before,
#stacks_in_18100 .link_effect11stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect11stacks_in_18100 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18100 .link_effect11stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect11stacks_in_18100 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18100 .link_effect11stacks_in_18100 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18100 .link_effect11stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect11stacks_in_18100 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18100 .link_effect12stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect12stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect12stacks_in_18100 a::before,
#stacks_in_18100 .link_effect12stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect12stacks_in_18100 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18100 .link_effect12stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect12stacks_in_18100 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18100 .link_effect12stacks_in_18100 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18100 .link_effect12stacks_in_18100 a,
#stacks_in_18100 .link_effect12stacks_in_18100 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18100 .link_effect12stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect12stacks_in_18100 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18100 .link_effect13stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect13stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect13stacks_in_18100 a::before,
#stacks_in_18100 .link_effect13stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect13stacks_in_18100 {
}

#stacks_in_18100 .link_effect13stacks_in_18100 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18100 .link_effect13stacks_in_18100 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18100 .link_effect13stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect13stacks_in_18100 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18100 .link_effect14stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect14stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect14stacks_in_18100 a::before,
#stacks_in_18100 .link_effect14stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect14stacks_in_18100 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18100 .link_effect14stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect14stacks_in_18100 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18100 .link_effect14stacks_in_18100 a::before,
#stacks_in_18100 .link_effect14stacks_in_18100 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18100 .link_effect14stacks_in_18100 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18100 .link_effect14stacks_in_18100 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18100 .link_effect14stacks_in_18100 a:hover::after,
#stacks_in_18100 .link_effect14stacks_in_18100 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18100 .link_effect15stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect15stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect15stacks_in_18100 a::before,
#stacks_in_18100 .link_effect15stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect15stacks_in_18100 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18100 .link_effect15stacks_in_18100 a::before,
#stacks_in_18100 .link_effect15stacks_in_18100 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18100 .link_effect15stacks_in_18100 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18100 .link_effect15stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect15stacks_in_18100 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18100 .link_effect15stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect15stacks_in_18100 a:focus::before,
#stacks_in_18100 .link_effect15stacks_in_18100 a:hover::after,
#stacks_in_18100 .link_effect15stacks_in_18100 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18100 .link_effect15stacks_in_18100 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18100 .link_effect15stacks_in_18100 a:hover::after,
#stacks_in_18100 .link_effect15stacks_in_18100 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18100 .link_effect16stacks_in_18100 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a::before,
#stacks_in_18100 .link_effect16stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a:hover {
	color: #d04c3f;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a::before,
#stacks_in_18100 .link_effect16stacks_in_18100 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18100 .link_effect16stacks_in_18100 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18100 .link_effect16stacks_in_18100 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18100 .link_effect16stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect16stacks_in_18100 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18100 .link_effect17stacks_in_18100 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18100 .link_effect17stacks_in_18100 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18100 .link_effect17stacks_in_18100 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18100 .link_effect18stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect18stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect18stacks_in_18100 a::before,
#stacks_in_18100 .link_effect18stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18100 .link_effect18stacks_in_18100 {
}

#stacks_in_18100 .link_effect18stacks_in_18100 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18100 .link_effect18stacks_in_18100 a::before,
#stacks_in_18100 .link_effect18stacks_in_18100 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18100 .link_effect18stacks_in_18100 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18100 .link_effect18stacks_in_18100 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18100 .link_effect18stacks_in_18100 a:hover,
#stacks_in_18100 .link_effect18stacks_in_18100 a:focus {
	color: #fff;
}

#stacks_in_18100 .link_effect18stacks_in_18100 a:hover::before,
#stacks_in_18100 .link_effect18stacks_in_18100 a:focus::before,
#stacks_in_18100 .link_effect18stacks_in_18100 a:hover::after,
#stacks_in_18100 .link_effect18stacks_in_18100 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18100 .link_effect19stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect19stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect19stacks_in_18100 a::before,
#stacks_in_18100 .link_effect19stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18100 a {
}

.link_effect19stacks_in_18100 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18100 a:hover::after,
.link_effect19stacks_in_18100 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18100 .link_effect20stacks_in_18100 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18100 .link_effect20stacks_in_18100 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18100 .link_effect20stacks_in_18100 a::before,
#stacks_in_18100 .link_effect20stacks_in_18100 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18100 a {
}

.link_effect20stacks_in_18100 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18100 a:hover::after,
.link_effect20stacks_in_18100 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_18105   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18105 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_18105 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18105 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_18105 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_18105 .captionThing {
}


#stacks_in_18105 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #E0D1BB;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_18105 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_18105 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_18105 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_18105 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_18105 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_18105	.shadow-style1stacks_in_18105  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_18105	.shadow-style1stacks_in_18105 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18113 a:before, .link_effect1stacks_in_18113 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18113 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18113 a:hover:before, .link_effect1stacks_in_18113 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18113 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18113 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18113 .link_effect2stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18113 .link_effect2stacks_in_18113 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18113 .link_effect3stacks_in_18113 {
  	text-decoration: none;
}

#stacks_in_18113 .link_effect3stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18113 .link_effect3stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect3stacks_in_18113 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18113 .link_effect4stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect4stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect4stacks_in_18113 a::before,
#stacks_in_18113 .link_effect%stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect4stacks_in_18113 {
}

#stacks_in_18113 .link_effect4stacks_in_18113 a {
	font-weight:normal;;
}

#stacks_in_18113 .link_effect4stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18113 .link_effect4stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect4stacks_in_18113 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18113 .link_effect5stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect5stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect5stacks_in_18113 a::before,
#stacks_in_18113 .link_effect5stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect5stacks_in_18113 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18113 .link_effect5stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18113 .link_effect5stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect5stacks_in_18113 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18113 .link_effect6stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect6stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect6stacks_in_18113 a::before,
#stacks_in_18113 .link_effect6stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect6stacks_in_18113 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18113 .link_effect6stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18113 .link_effect6stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect6stacks_in_18113 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18113 .link_effect7stacks_in_18113 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect7stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect7stacks_in_18113 a::before,
#stacks_in_18113 .link_effect7stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect7stacks_in_18113 {
	position: relative;
}

#stacks_in_18113 .link_effect7stacks_in_18113 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18113 .link_effect7stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18113 .link_effect7stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect7stacks_in_18113 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18113 .link_effect8stacks_in_18113 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect8stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect8stacks_in_18113 a::before,
#stacks_in_18113 .link_effect8stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18113 .link_effect8stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18113 .link_effect8stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect8stacks_in_18113 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18113 .link_effect8stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18113 .link_effect8stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect8stacks_in_18113 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18113 .link_effect9stacks_in_18113 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect9stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect9stacks_in_18113 a::before,
#stacks_in_18113 .link_effect9stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect9stacks_in_18113 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18113 .link_effect9stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect9stacks_in_18113 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18113 .link_effect9stacks_in_18113 a::before,
#stacks_in_18113 .link_effect9stacks_in_18113 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18113 .link_effect9stacks_in_18113 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18113 .link_effect9stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect9stacks_in_18113 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18113 .link_effect9stacks_in_18113 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18113 .link_effect10stacks_in_18113 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect10stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect10stacks_in_18113 a::before,
#stacks_in_18113 .link_effect10stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect10stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18113 .link_effect10stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect10stacks_in_18113 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18113 .link_effect10stacks_in_18113 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18113 .link_effect10stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect10stacks_in_18113 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18113 .link_effect11stacks_in_18113 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18113 .link_effect11stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect11stacks_in_18113 a::before,
#stacks_in_18113 .link_effect11stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect11stacks_in_18113 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18113 .link_effect11stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect11stacks_in_18113 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18113 .link_effect11stacks_in_18113 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18113 .link_effect11stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect11stacks_in_18113 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18113 .link_effect12stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect12stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect12stacks_in_18113 a::before,
#stacks_in_18113 .link_effect12stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect12stacks_in_18113 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18113 .link_effect12stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect12stacks_in_18113 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18113 .link_effect12stacks_in_18113 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18113 .link_effect12stacks_in_18113 a,
#stacks_in_18113 .link_effect12stacks_in_18113 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18113 .link_effect12stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect12stacks_in_18113 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18113 .link_effect13stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect13stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect13stacks_in_18113 a::before,
#stacks_in_18113 .link_effect13stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect13stacks_in_18113 {
}

#stacks_in_18113 .link_effect13stacks_in_18113 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18113 .link_effect13stacks_in_18113 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18113 .link_effect13stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect13stacks_in_18113 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18113 .link_effect14stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect14stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect14stacks_in_18113 a::before,
#stacks_in_18113 .link_effect14stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect14stacks_in_18113 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18113 .link_effect14stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect14stacks_in_18113 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18113 .link_effect14stacks_in_18113 a::before,
#stacks_in_18113 .link_effect14stacks_in_18113 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18113 .link_effect14stacks_in_18113 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18113 .link_effect14stacks_in_18113 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18113 .link_effect14stacks_in_18113 a:hover::after,
#stacks_in_18113 .link_effect14stacks_in_18113 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18113 .link_effect15stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect15stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect15stacks_in_18113 a::before,
#stacks_in_18113 .link_effect15stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect15stacks_in_18113 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18113 .link_effect15stacks_in_18113 a::before,
#stacks_in_18113 .link_effect15stacks_in_18113 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18113 .link_effect15stacks_in_18113 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18113 .link_effect15stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect15stacks_in_18113 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18113 .link_effect15stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect15stacks_in_18113 a:focus::before,
#stacks_in_18113 .link_effect15stacks_in_18113 a:hover::after,
#stacks_in_18113 .link_effect15stacks_in_18113 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18113 .link_effect15stacks_in_18113 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18113 .link_effect15stacks_in_18113 a:hover::after,
#stacks_in_18113 .link_effect15stacks_in_18113 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18113 .link_effect16stacks_in_18113 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a::before,
#stacks_in_18113 .link_effect16stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a:hover {
	color: #d04c3f;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a::before,
#stacks_in_18113 .link_effect16stacks_in_18113 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18113 .link_effect16stacks_in_18113 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18113 .link_effect16stacks_in_18113 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18113 .link_effect16stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect16stacks_in_18113 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18113 .link_effect17stacks_in_18113 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18113 .link_effect17stacks_in_18113 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18113 .link_effect17stacks_in_18113 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18113 .link_effect18stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect18stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect18stacks_in_18113 a::before,
#stacks_in_18113 .link_effect18stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18113 .link_effect18stacks_in_18113 {
}

#stacks_in_18113 .link_effect18stacks_in_18113 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18113 .link_effect18stacks_in_18113 a::before,
#stacks_in_18113 .link_effect18stacks_in_18113 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18113 .link_effect18stacks_in_18113 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18113 .link_effect18stacks_in_18113 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18113 .link_effect18stacks_in_18113 a:hover,
#stacks_in_18113 .link_effect18stacks_in_18113 a:focus {
	color: #fff;
}

#stacks_in_18113 .link_effect18stacks_in_18113 a:hover::before,
#stacks_in_18113 .link_effect18stacks_in_18113 a:focus::before,
#stacks_in_18113 .link_effect18stacks_in_18113 a:hover::after,
#stacks_in_18113 .link_effect18stacks_in_18113 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18113 .link_effect19stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect19stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect19stacks_in_18113 a::before,
#stacks_in_18113 .link_effect19stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18113 a {
}

.link_effect19stacks_in_18113 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18113 a:hover::after,
.link_effect19stacks_in_18113 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18113 .link_effect20stacks_in_18113 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18113 .link_effect20stacks_in_18113 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18113 .link_effect20stacks_in_18113 a::before,
#stacks_in_18113 .link_effect20stacks_in_18113 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18113 a {
}

.link_effect20stacks_in_18113 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18113 a:hover::after,
.link_effect20stacks_in_18113 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17254 article,
#stacks_in_17254 aside,
#stacks_in_17254 details,
#stacks_in_17254 figcaption,
#stacks_in_17254 figure,
#stacks_in_17254 footer,
#stacks_in_17254 header,
#stacks_in_17254 hgroup,
#stacks_in_17254 main,
#stacks_in_17254 nav,
#stacks_in_17254 section,
#stacks_in_17254 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17254 audio,
#stacks_in_17254 canvas,
#stacks_in_17254 progress,
#stacks_in_17254 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17254 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17254 [hidden],
#stacks_in_17254 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17254 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17254 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17254 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17254 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17254 code,
#stacks_in_17254 kbd,
#stacks_in_17254 pre,
#stacks_in_17254 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17254 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17254 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17254 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17254 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17254 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17254 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17254 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17254 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17254 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17254 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17254 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17254 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17254 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17254 .left {
  float: left !important; }

#stacks_in_17254 .right {
  float: right !important; }

#stacks_in_17254 .clearfix:before,
#stacks_in_17254 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17254 .clearfix:after {
  clear: both; }

#stacks_in_17254 .hide {
  display: none; }

#stacks_in_17254 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17254 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17254 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17254 select {
  width: 100%; }

#stacks_in_17254 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17254 .row:before,
#stacks_in_17254 .row:after {
  content: " ";
  display: table; }

#stacks_in_17254 .row:after {
  clear: both; }

#stacks_in_17254 .row.collapse > .column,
#stacks_in_17254 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17254 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17254 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17254 .row .row:before,
#stacks_in_17254 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17254 .row .row:after {
  clear: both; }

#stacks_in_17254 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17254 .row .row.collapse:before,
#stacks_in_17254 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17254 .row .row.collapse:after {
  clear: both; }

#stacks_in_17254 .column,
#stacks_in_17254 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17254 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17254 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17254 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17254 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17254 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17254 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17254 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17254 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17254 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17254 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17254 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17254 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17254 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17254 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17254 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17254 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17254 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17254 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17254 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17254 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17254 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17254 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17254 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17254 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17254 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17254 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17254 .column,
  #stacks_in_17254 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17254 .small-1 {
    width: 8.33333%; }

  #stacks_in_17254 .small-2 {
    width: 16.66667%; }

  #stacks_in_17254 .small-3 {
    width: 25%; }

  #stacks_in_17254 .small-4 {
    width: 33.33333%; }

  #stacks_in_17254 .small-5 {
    width: 41.66667%; }

  #stacks_in_17254 .small-6 {
    width: 50%; }

  #stacks_in_17254 .small-7 {
    width: 58.33333%; }

  #stacks_in_17254 .small-8 {
    width: 66.66667%; }

  #stacks_in_17254 .small-9 {
    width: 75%; }

  #stacks_in_17254 .small-10 {
    width: 83.33333%; }

  #stacks_in_17254 .small-11 {
    width: 91.66667%; }

  #stacks_in_17254 .small-12 {
    width: 100%; }

  #stacks_in_17254 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17254 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17254 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17254 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17254 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17254 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17254 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17254 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17254 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17254 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17254 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17254 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17254 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17254 .column.small-centered,
  #stacks_in_17254 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17254 .column.small-uncentered,
  #stacks_in_17254 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17254 .column.small-centered:last-child,
  #stacks_in_17254 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17254 .column.small-uncentered:last-child,
  #stacks_in_17254 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17254 .column.small-uncentered.opposite,
  #stacks_in_17254 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17254 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17254 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17254 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17254 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17254 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17254 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17254 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17254 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17254 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17254 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17254 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17254 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17254 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17254 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17254 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17254 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17254 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17254 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17254 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17254 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17254 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17254 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17254 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17254 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17254 .column,
  #stacks_in_17254 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17254 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17254 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17254 .medium-3 {
    width: 25%; }

  #stacks_in_17254 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17254 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17254 .medium-6 {
    width: 50%; }

  #stacks_in_17254 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17254 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17254 .medium-9 {
    width: 75%; }

  #stacks_in_17254 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17254 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17254 .medium-12 {
    width: 100%; }

  #stacks_in_17254 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17254 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17254 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17254 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17254 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17254 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17254 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17254 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17254 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17254 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17254 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17254 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17254 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17254 .column.medium-centered,
  #stacks_in_17254 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17254 .column.medium-uncentered,
  #stacks_in_17254 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17254 .column.medium-centered:last-child,
  #stacks_in_17254 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17254 .column.medium-uncentered:last-child,
  #stacks_in_17254 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17254 .column.medium-uncentered.opposite,
  #stacks_in_17254 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17254 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17254 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17254 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17254 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17254 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17254 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17254 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17254 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17254 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17254 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17254 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17254 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17254 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17254 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17254 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17254 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17254 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17254 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17254 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17254 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17254 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17254 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17254 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17254 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17254 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17254 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17254 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17254 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17254 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17254 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17254 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17254 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17254 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17254 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17254 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17254 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17254 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17254 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17254 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17254 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17254 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17254 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17254 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17254 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17254 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17254 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17254 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17254 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17254 .column,
  #stacks_in_17254 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17254 .large-1 {
    width: 8.33333%; }

  #stacks_in_17254 .large-2 {
    width: 16.66667%; }

  #stacks_in_17254 .large-3 {
    width: 25%; }

  #stacks_in_17254 .large-4 {
    width: 33.33333%; }

  #stacks_in_17254 .large-5 {
    width: 41.66667%; }

  #stacks_in_17254 .large-6 {
    width: 50%; }

  #stacks_in_17254 .large-7 {
    width: 58.33333%; }

  #stacks_in_17254 .large-8 {
    width: 66.66667%; }

  #stacks_in_17254 .large-9 {
    width: 75%; }

  #stacks_in_17254 .large-10 {
    width: 83.33333%; }

  #stacks_in_17254 .large-11 {
    width: 91.66667%; }

  #stacks_in_17254 .large-12 {
    width: 100%; }

  #stacks_in_17254 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17254 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17254 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17254 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17254 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17254 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17254 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17254 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17254 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17254 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17254 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17254 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17254 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17254 .column.large-centered,
  #stacks_in_17254 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17254 .column.large-uncentered,
  #stacks_in_17254 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17254 .column.large-centered:last-child,
  #stacks_in_17254 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17254 .column.large-uncentered:last-child,
  #stacks_in_17254 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17254 .column.large-uncentered.opposite,
  #stacks_in_17254 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17254 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17254 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17254 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17254 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17254 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17254 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17254 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17254 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17254 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17254 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17254 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17254 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17254 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17254 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17254 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17254 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17254 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17254 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17254 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17254 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17254 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17254 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17254 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17254 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17254 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17254 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17254 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17254 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17254 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17254 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17254 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17254 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17254 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17254 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17254 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17254 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17254 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17254 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17254 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17254 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17254 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17405   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17405 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17405 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17405 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17405 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17405 .captionThing {
}


#stacks_in_17405 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #78AFD7;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17405 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17405 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17405 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17405 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17405 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17405	.shadow-style1stacks_in_17405  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17405	.shadow-style1stacks_in_17405 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17411 a:before, .link_effect1stacks_in_17411 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17411 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17411 a:hover:before, .link_effect1stacks_in_17411 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17411 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17411 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17411 .link_effect2stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17411 .link_effect2stacks_in_17411 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17411 .link_effect3stacks_in_17411 {
  	text-decoration: none;
}

#stacks_in_17411 .link_effect3stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17411 .link_effect3stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect3stacks_in_17411 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17411 .link_effect4stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect4stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect4stacks_in_17411 a::before,
#stacks_in_17411 .link_effect%stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect4stacks_in_17411 {
}

#stacks_in_17411 .link_effect4stacks_in_17411 a {
	font-weight:normal;;
}

#stacks_in_17411 .link_effect4stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17411 .link_effect4stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect4stacks_in_17411 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17411 .link_effect5stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect5stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect5stacks_in_17411 a::before,
#stacks_in_17411 .link_effect5stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect5stacks_in_17411 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17411 .link_effect5stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17411 .link_effect5stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect5stacks_in_17411 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17411 .link_effect6stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect6stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect6stacks_in_17411 a::before,
#stacks_in_17411 .link_effect6stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect6stacks_in_17411 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17411 .link_effect6stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17411 .link_effect6stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect6stacks_in_17411 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17411 .link_effect7stacks_in_17411 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect7stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect7stacks_in_17411 a::before,
#stacks_in_17411 .link_effect7stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect7stacks_in_17411 {
	position: relative;
}

#stacks_in_17411 .link_effect7stacks_in_17411 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17411 .link_effect7stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17411 .link_effect7stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect7stacks_in_17411 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17411 .link_effect8stacks_in_17411 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect8stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect8stacks_in_17411 a::before,
#stacks_in_17411 .link_effect8stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17411 .link_effect8stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17411 .link_effect8stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect8stacks_in_17411 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17411 .link_effect8stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17411 .link_effect8stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect8stacks_in_17411 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17411 .link_effect9stacks_in_17411 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect9stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect9stacks_in_17411 a::before,
#stacks_in_17411 .link_effect9stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect9stacks_in_17411 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17411 .link_effect9stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect9stacks_in_17411 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17411 .link_effect9stacks_in_17411 a::before,
#stacks_in_17411 .link_effect9stacks_in_17411 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17411 .link_effect9stacks_in_17411 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17411 .link_effect9stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect9stacks_in_17411 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17411 .link_effect9stacks_in_17411 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17411 .link_effect10stacks_in_17411 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect10stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect10stacks_in_17411 a::before,
#stacks_in_17411 .link_effect10stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect10stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17411 .link_effect10stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect10stacks_in_17411 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17411 .link_effect10stacks_in_17411 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17411 .link_effect10stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect10stacks_in_17411 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17411 .link_effect11stacks_in_17411 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17411 .link_effect11stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect11stacks_in_17411 a::before,
#stacks_in_17411 .link_effect11stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect11stacks_in_17411 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17411 .link_effect11stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect11stacks_in_17411 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17411 .link_effect11stacks_in_17411 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17411 .link_effect11stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect11stacks_in_17411 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17411 .link_effect12stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect12stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect12stacks_in_17411 a::before,
#stacks_in_17411 .link_effect12stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect12stacks_in_17411 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17411 .link_effect12stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect12stacks_in_17411 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17411 .link_effect12stacks_in_17411 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17411 .link_effect12stacks_in_17411 a,
#stacks_in_17411 .link_effect12stacks_in_17411 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17411 .link_effect12stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect12stacks_in_17411 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17411 .link_effect13stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect13stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect13stacks_in_17411 a::before,
#stacks_in_17411 .link_effect13stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect13stacks_in_17411 {
}

#stacks_in_17411 .link_effect13stacks_in_17411 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17411 .link_effect13stacks_in_17411 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17411 .link_effect13stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect13stacks_in_17411 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17411 .link_effect14stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect14stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect14stacks_in_17411 a::before,
#stacks_in_17411 .link_effect14stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect14stacks_in_17411 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17411 .link_effect14stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect14stacks_in_17411 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17411 .link_effect14stacks_in_17411 a::before,
#stacks_in_17411 .link_effect14stacks_in_17411 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17411 .link_effect14stacks_in_17411 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17411 .link_effect14stacks_in_17411 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17411 .link_effect14stacks_in_17411 a:hover::after,
#stacks_in_17411 .link_effect14stacks_in_17411 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17411 .link_effect15stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect15stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect15stacks_in_17411 a::before,
#stacks_in_17411 .link_effect15stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect15stacks_in_17411 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17411 .link_effect15stacks_in_17411 a::before,
#stacks_in_17411 .link_effect15stacks_in_17411 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17411 .link_effect15stacks_in_17411 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17411 .link_effect15stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect15stacks_in_17411 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17411 .link_effect15stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect15stacks_in_17411 a:focus::before,
#stacks_in_17411 .link_effect15stacks_in_17411 a:hover::after,
#stacks_in_17411 .link_effect15stacks_in_17411 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17411 .link_effect15stacks_in_17411 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17411 .link_effect15stacks_in_17411 a:hover::after,
#stacks_in_17411 .link_effect15stacks_in_17411 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17411 .link_effect16stacks_in_17411 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a::before,
#stacks_in_17411 .link_effect16stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a:hover {
	color: #d04c3f;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a::before,
#stacks_in_17411 .link_effect16stacks_in_17411 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17411 .link_effect16stacks_in_17411 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17411 .link_effect16stacks_in_17411 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17411 .link_effect16stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect16stacks_in_17411 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17411 .link_effect17stacks_in_17411 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17411 .link_effect17stacks_in_17411 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17411 .link_effect17stacks_in_17411 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17411 .link_effect18stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect18stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect18stacks_in_17411 a::before,
#stacks_in_17411 .link_effect18stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17411 .link_effect18stacks_in_17411 {
}

#stacks_in_17411 .link_effect18stacks_in_17411 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17411 .link_effect18stacks_in_17411 a::before,
#stacks_in_17411 .link_effect18stacks_in_17411 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17411 .link_effect18stacks_in_17411 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17411 .link_effect18stacks_in_17411 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17411 .link_effect18stacks_in_17411 a:hover,
#stacks_in_17411 .link_effect18stacks_in_17411 a:focus {
	color: #fff;
}

#stacks_in_17411 .link_effect18stacks_in_17411 a:hover::before,
#stacks_in_17411 .link_effect18stacks_in_17411 a:focus::before,
#stacks_in_17411 .link_effect18stacks_in_17411 a:hover::after,
#stacks_in_17411 .link_effect18stacks_in_17411 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17411 .link_effect19stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect19stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect19stacks_in_17411 a::before,
#stacks_in_17411 .link_effect19stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17411 a {
}

.link_effect19stacks_in_17411 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17411 a:hover::after,
.link_effect19stacks_in_17411 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17411 .link_effect20stacks_in_17411 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17411 .link_effect20stacks_in_17411 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17411 .link_effect20stacks_in_17411 a::before,
#stacks_in_17411 .link_effect20stacks_in_17411 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17411 a {
}

.link_effect20stacks_in_17411 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17411 a:hover::after,
.link_effect20stacks_in_17411 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17294   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17294 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17294 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17294 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17294 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17294 .captionThing {
}


#stacks_in_17294 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #DACD7D;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17294 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17294 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17294 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17294 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17294 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17294	.shadow-style1stacks_in_17294  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17294	.shadow-style1stacks_in_17294 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17300 a:before, .link_effect1stacks_in_17300 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17300 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17300 a:hover:before, .link_effect1stacks_in_17300 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17300 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17300 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17300 .link_effect2stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17300 .link_effect2stacks_in_17300 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17300 .link_effect3stacks_in_17300 {
  	text-decoration: none;
}

#stacks_in_17300 .link_effect3stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17300 .link_effect3stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect3stacks_in_17300 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17300 .link_effect4stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect4stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect4stacks_in_17300 a::before,
#stacks_in_17300 .link_effect%stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect4stacks_in_17300 {
}

#stacks_in_17300 .link_effect4stacks_in_17300 a {
	font-weight:normal;;
}

#stacks_in_17300 .link_effect4stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17300 .link_effect4stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect4stacks_in_17300 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17300 .link_effect5stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect5stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect5stacks_in_17300 a::before,
#stacks_in_17300 .link_effect5stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect5stacks_in_17300 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17300 .link_effect5stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17300 .link_effect5stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect5stacks_in_17300 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17300 .link_effect6stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect6stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect6stacks_in_17300 a::before,
#stacks_in_17300 .link_effect6stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect6stacks_in_17300 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17300 .link_effect6stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17300 .link_effect6stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect6stacks_in_17300 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17300 .link_effect7stacks_in_17300 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect7stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect7stacks_in_17300 a::before,
#stacks_in_17300 .link_effect7stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect7stacks_in_17300 {
	position: relative;
}

#stacks_in_17300 .link_effect7stacks_in_17300 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17300 .link_effect7stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17300 .link_effect7stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect7stacks_in_17300 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17300 .link_effect8stacks_in_17300 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect8stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect8stacks_in_17300 a::before,
#stacks_in_17300 .link_effect8stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17300 .link_effect8stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17300 .link_effect8stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect8stacks_in_17300 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17300 .link_effect8stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17300 .link_effect8stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect8stacks_in_17300 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17300 .link_effect9stacks_in_17300 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect9stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect9stacks_in_17300 a::before,
#stacks_in_17300 .link_effect9stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect9stacks_in_17300 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17300 .link_effect9stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect9stacks_in_17300 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17300 .link_effect9stacks_in_17300 a::before,
#stacks_in_17300 .link_effect9stacks_in_17300 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17300 .link_effect9stacks_in_17300 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17300 .link_effect9stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect9stacks_in_17300 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17300 .link_effect9stacks_in_17300 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17300 .link_effect10stacks_in_17300 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect10stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect10stacks_in_17300 a::before,
#stacks_in_17300 .link_effect10stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect10stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17300 .link_effect10stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect10stacks_in_17300 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17300 .link_effect10stacks_in_17300 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17300 .link_effect10stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect10stacks_in_17300 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17300 .link_effect11stacks_in_17300 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17300 .link_effect11stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect11stacks_in_17300 a::before,
#stacks_in_17300 .link_effect11stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect11stacks_in_17300 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17300 .link_effect11stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect11stacks_in_17300 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17300 .link_effect11stacks_in_17300 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17300 .link_effect11stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect11stacks_in_17300 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17300 .link_effect12stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect12stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect12stacks_in_17300 a::before,
#stacks_in_17300 .link_effect12stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect12stacks_in_17300 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17300 .link_effect12stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect12stacks_in_17300 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17300 .link_effect12stacks_in_17300 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17300 .link_effect12stacks_in_17300 a,
#stacks_in_17300 .link_effect12stacks_in_17300 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17300 .link_effect12stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect12stacks_in_17300 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17300 .link_effect13stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect13stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect13stacks_in_17300 a::before,
#stacks_in_17300 .link_effect13stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect13stacks_in_17300 {
}

#stacks_in_17300 .link_effect13stacks_in_17300 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17300 .link_effect13stacks_in_17300 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17300 .link_effect13stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect13stacks_in_17300 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17300 .link_effect14stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect14stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect14stacks_in_17300 a::before,
#stacks_in_17300 .link_effect14stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect14stacks_in_17300 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17300 .link_effect14stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect14stacks_in_17300 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17300 .link_effect14stacks_in_17300 a::before,
#stacks_in_17300 .link_effect14stacks_in_17300 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17300 .link_effect14stacks_in_17300 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17300 .link_effect14stacks_in_17300 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17300 .link_effect14stacks_in_17300 a:hover::after,
#stacks_in_17300 .link_effect14stacks_in_17300 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17300 .link_effect15stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect15stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect15stacks_in_17300 a::before,
#stacks_in_17300 .link_effect15stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect15stacks_in_17300 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17300 .link_effect15stacks_in_17300 a::before,
#stacks_in_17300 .link_effect15stacks_in_17300 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17300 .link_effect15stacks_in_17300 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17300 .link_effect15stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect15stacks_in_17300 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17300 .link_effect15stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect15stacks_in_17300 a:focus::before,
#stacks_in_17300 .link_effect15stacks_in_17300 a:hover::after,
#stacks_in_17300 .link_effect15stacks_in_17300 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17300 .link_effect15stacks_in_17300 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17300 .link_effect15stacks_in_17300 a:hover::after,
#stacks_in_17300 .link_effect15stacks_in_17300 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17300 .link_effect16stacks_in_17300 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a::before,
#stacks_in_17300 .link_effect16stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a:hover {
	color: #d04c3f;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a::before,
#stacks_in_17300 .link_effect16stacks_in_17300 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17300 .link_effect16stacks_in_17300 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17300 .link_effect16stacks_in_17300 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17300 .link_effect16stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect16stacks_in_17300 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17300 .link_effect17stacks_in_17300 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17300 .link_effect17stacks_in_17300 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17300 .link_effect17stacks_in_17300 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17300 .link_effect18stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect18stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect18stacks_in_17300 a::before,
#stacks_in_17300 .link_effect18stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17300 .link_effect18stacks_in_17300 {
}

#stacks_in_17300 .link_effect18stacks_in_17300 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17300 .link_effect18stacks_in_17300 a::before,
#stacks_in_17300 .link_effect18stacks_in_17300 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17300 .link_effect18stacks_in_17300 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17300 .link_effect18stacks_in_17300 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17300 .link_effect18stacks_in_17300 a:hover,
#stacks_in_17300 .link_effect18stacks_in_17300 a:focus {
	color: #fff;
}

#stacks_in_17300 .link_effect18stacks_in_17300 a:hover::before,
#stacks_in_17300 .link_effect18stacks_in_17300 a:focus::before,
#stacks_in_17300 .link_effect18stacks_in_17300 a:hover::after,
#stacks_in_17300 .link_effect18stacks_in_17300 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17300 .link_effect19stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect19stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect19stacks_in_17300 a::before,
#stacks_in_17300 .link_effect19stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17300 a {
}

.link_effect19stacks_in_17300 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17300 a:hover::after,
.link_effect19stacks_in_17300 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17300 .link_effect20stacks_in_17300 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17300 .link_effect20stacks_in_17300 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17300 .link_effect20stacks_in_17300 a::before,
#stacks_in_17300 .link_effect20stacks_in_17300 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17300 a {
}

.link_effect20stacks_in_17300 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17300 a:hover::after,
.link_effect20stacks_in_17300 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17803   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17803 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17803 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17803 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17803 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17803 .captionThing {
}


#stacks_in_17803 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #EDE8DF;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17803 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17803 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17803 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17803 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17803 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17803	.shadow-style1stacks_in_17803  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17803	.shadow-style1stacks_in_17803 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17809 a:before, .link_effect1stacks_in_17809 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17809 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17809 a:hover:before, .link_effect1stacks_in_17809 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17809 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17809 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17809 .link_effect2stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17809 .link_effect2stacks_in_17809 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17809 .link_effect3stacks_in_17809 {
  	text-decoration: none;
}

#stacks_in_17809 .link_effect3stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17809 .link_effect3stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect3stacks_in_17809 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17809 .link_effect4stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect4stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect4stacks_in_17809 a::before,
#stacks_in_17809 .link_effect%stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect4stacks_in_17809 {
}

#stacks_in_17809 .link_effect4stacks_in_17809 a {
	font-weight:normal;;
}

#stacks_in_17809 .link_effect4stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17809 .link_effect4stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect4stacks_in_17809 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17809 .link_effect5stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect5stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect5stacks_in_17809 a::before,
#stacks_in_17809 .link_effect5stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect5stacks_in_17809 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17809 .link_effect5stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17809 .link_effect5stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect5stacks_in_17809 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17809 .link_effect6stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect6stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect6stacks_in_17809 a::before,
#stacks_in_17809 .link_effect6stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect6stacks_in_17809 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17809 .link_effect6stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17809 .link_effect6stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect6stacks_in_17809 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17809 .link_effect7stacks_in_17809 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect7stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect7stacks_in_17809 a::before,
#stacks_in_17809 .link_effect7stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect7stacks_in_17809 {
	position: relative;
}

#stacks_in_17809 .link_effect7stacks_in_17809 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17809 .link_effect7stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17809 .link_effect7stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect7stacks_in_17809 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17809 .link_effect8stacks_in_17809 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect8stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect8stacks_in_17809 a::before,
#stacks_in_17809 .link_effect8stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17809 .link_effect8stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17809 .link_effect8stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect8stacks_in_17809 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17809 .link_effect8stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17809 .link_effect8stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect8stacks_in_17809 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17809 .link_effect9stacks_in_17809 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect9stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect9stacks_in_17809 a::before,
#stacks_in_17809 .link_effect9stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect9stacks_in_17809 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17809 .link_effect9stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect9stacks_in_17809 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17809 .link_effect9stacks_in_17809 a::before,
#stacks_in_17809 .link_effect9stacks_in_17809 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17809 .link_effect9stacks_in_17809 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17809 .link_effect9stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect9stacks_in_17809 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17809 .link_effect9stacks_in_17809 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17809 .link_effect10stacks_in_17809 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect10stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect10stacks_in_17809 a::before,
#stacks_in_17809 .link_effect10stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect10stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17809 .link_effect10stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect10stacks_in_17809 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17809 .link_effect10stacks_in_17809 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17809 .link_effect10stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect10stacks_in_17809 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17809 .link_effect11stacks_in_17809 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17809 .link_effect11stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect11stacks_in_17809 a::before,
#stacks_in_17809 .link_effect11stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect11stacks_in_17809 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17809 .link_effect11stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect11stacks_in_17809 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17809 .link_effect11stacks_in_17809 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17809 .link_effect11stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect11stacks_in_17809 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17809 .link_effect12stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect12stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect12stacks_in_17809 a::before,
#stacks_in_17809 .link_effect12stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect12stacks_in_17809 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17809 .link_effect12stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect12stacks_in_17809 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17809 .link_effect12stacks_in_17809 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17809 .link_effect12stacks_in_17809 a,
#stacks_in_17809 .link_effect12stacks_in_17809 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17809 .link_effect12stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect12stacks_in_17809 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17809 .link_effect13stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect13stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect13stacks_in_17809 a::before,
#stacks_in_17809 .link_effect13stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect13stacks_in_17809 {
}

#stacks_in_17809 .link_effect13stacks_in_17809 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17809 .link_effect13stacks_in_17809 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17809 .link_effect13stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect13stacks_in_17809 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17809 .link_effect14stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect14stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect14stacks_in_17809 a::before,
#stacks_in_17809 .link_effect14stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect14stacks_in_17809 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17809 .link_effect14stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect14stacks_in_17809 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17809 .link_effect14stacks_in_17809 a::before,
#stacks_in_17809 .link_effect14stacks_in_17809 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17809 .link_effect14stacks_in_17809 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17809 .link_effect14stacks_in_17809 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17809 .link_effect14stacks_in_17809 a:hover::after,
#stacks_in_17809 .link_effect14stacks_in_17809 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17809 .link_effect15stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect15stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect15stacks_in_17809 a::before,
#stacks_in_17809 .link_effect15stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect15stacks_in_17809 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17809 .link_effect15stacks_in_17809 a::before,
#stacks_in_17809 .link_effect15stacks_in_17809 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17809 .link_effect15stacks_in_17809 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17809 .link_effect15stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect15stacks_in_17809 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17809 .link_effect15stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect15stacks_in_17809 a:focus::before,
#stacks_in_17809 .link_effect15stacks_in_17809 a:hover::after,
#stacks_in_17809 .link_effect15stacks_in_17809 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17809 .link_effect15stacks_in_17809 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17809 .link_effect15stacks_in_17809 a:hover::after,
#stacks_in_17809 .link_effect15stacks_in_17809 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17809 .link_effect16stacks_in_17809 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a::before,
#stacks_in_17809 .link_effect16stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a:hover {
	color: #d04c3f;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a::before,
#stacks_in_17809 .link_effect16stacks_in_17809 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17809 .link_effect16stacks_in_17809 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17809 .link_effect16stacks_in_17809 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17809 .link_effect16stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect16stacks_in_17809 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17809 .link_effect17stacks_in_17809 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17809 .link_effect17stacks_in_17809 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17809 .link_effect17stacks_in_17809 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17809 .link_effect18stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect18stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect18stacks_in_17809 a::before,
#stacks_in_17809 .link_effect18stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17809 .link_effect18stacks_in_17809 {
}

#stacks_in_17809 .link_effect18stacks_in_17809 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17809 .link_effect18stacks_in_17809 a::before,
#stacks_in_17809 .link_effect18stacks_in_17809 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17809 .link_effect18stacks_in_17809 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17809 .link_effect18stacks_in_17809 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17809 .link_effect18stacks_in_17809 a:hover,
#stacks_in_17809 .link_effect18stacks_in_17809 a:focus {
	color: #fff;
}

#stacks_in_17809 .link_effect18stacks_in_17809 a:hover::before,
#stacks_in_17809 .link_effect18stacks_in_17809 a:focus::before,
#stacks_in_17809 .link_effect18stacks_in_17809 a:hover::after,
#stacks_in_17809 .link_effect18stacks_in_17809 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17809 .link_effect19stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect19stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect19stacks_in_17809 a::before,
#stacks_in_17809 .link_effect19stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17809 a {
}

.link_effect19stacks_in_17809 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17809 a:hover::after,
.link_effect19stacks_in_17809 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17809 .link_effect20stacks_in_17809 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17809 .link_effect20stacks_in_17809 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17809 .link_effect20stacks_in_17809 a::before,
#stacks_in_17809 .link_effect20stacks_in_17809 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17809 a {
}

.link_effect20stacks_in_17809 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17809 a:hover::after,
.link_effect20stacks_in_17809 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17933 article,
#stacks_in_17933 aside,
#stacks_in_17933 details,
#stacks_in_17933 figcaption,
#stacks_in_17933 figure,
#stacks_in_17933 footer,
#stacks_in_17933 header,
#stacks_in_17933 hgroup,
#stacks_in_17933 main,
#stacks_in_17933 nav,
#stacks_in_17933 section,
#stacks_in_17933 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17933 audio,
#stacks_in_17933 canvas,
#stacks_in_17933 progress,
#stacks_in_17933 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17933 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17933 [hidden],
#stacks_in_17933 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17933 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17933 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17933 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17933 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17933 code,
#stacks_in_17933 kbd,
#stacks_in_17933 pre,
#stacks_in_17933 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17933 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17933 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17933 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17933 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17933 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17933 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17933 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17933 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17933 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17933 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17933 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17933 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17933 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17933 .left {
  float: left !important; }

#stacks_in_17933 .right {
  float: right !important; }

#stacks_in_17933 .clearfix:before,
#stacks_in_17933 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17933 .clearfix:after {
  clear: both; }

#stacks_in_17933 .hide {
  display: none; }

#stacks_in_17933 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17933 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17933 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17933 select {
  width: 100%; }

#stacks_in_17933 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17933 .row:before,
#stacks_in_17933 .row:after {
  content: " ";
  display: table; }

#stacks_in_17933 .row:after {
  clear: both; }

#stacks_in_17933 .row.collapse > .column,
#stacks_in_17933 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17933 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17933 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17933 .row .row:before,
#stacks_in_17933 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17933 .row .row:after {
  clear: both; }

#stacks_in_17933 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17933 .row .row.collapse:before,
#stacks_in_17933 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17933 .row .row.collapse:after {
  clear: both; }

#stacks_in_17933 .column,
#stacks_in_17933 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17933 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17933 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17933 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17933 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17933 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17933 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17933 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17933 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17933 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17933 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17933 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17933 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17933 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17933 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17933 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17933 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17933 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17933 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17933 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17933 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17933 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17933 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17933 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17933 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17933 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17933 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17933 .column,
  #stacks_in_17933 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17933 .small-1 {
    width: 8.33333%; }

  #stacks_in_17933 .small-2 {
    width: 16.66667%; }

  #stacks_in_17933 .small-3 {
    width: 25%; }

  #stacks_in_17933 .small-4 {
    width: 33.33333%; }

  #stacks_in_17933 .small-5 {
    width: 41.66667%; }

  #stacks_in_17933 .small-6 {
    width: 50%; }

  #stacks_in_17933 .small-7 {
    width: 58.33333%; }

  #stacks_in_17933 .small-8 {
    width: 66.66667%; }

  #stacks_in_17933 .small-9 {
    width: 75%; }

  #stacks_in_17933 .small-10 {
    width: 83.33333%; }

  #stacks_in_17933 .small-11 {
    width: 91.66667%; }

  #stacks_in_17933 .small-12 {
    width: 100%; }

  #stacks_in_17933 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17933 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17933 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17933 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17933 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17933 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17933 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17933 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17933 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17933 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17933 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17933 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17933 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17933 .column.small-centered,
  #stacks_in_17933 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17933 .column.small-uncentered,
  #stacks_in_17933 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17933 .column.small-centered:last-child,
  #stacks_in_17933 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17933 .column.small-uncentered:last-child,
  #stacks_in_17933 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17933 .column.small-uncentered.opposite,
  #stacks_in_17933 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17933 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17933 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17933 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17933 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17933 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17933 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17933 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17933 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17933 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17933 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17933 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17933 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17933 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17933 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17933 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17933 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17933 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17933 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17933 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17933 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17933 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17933 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17933 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17933 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17933 .column,
  #stacks_in_17933 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17933 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17933 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17933 .medium-3 {
    width: 25%; }

  #stacks_in_17933 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17933 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17933 .medium-6 {
    width: 50%; }

  #stacks_in_17933 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17933 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17933 .medium-9 {
    width: 75%; }

  #stacks_in_17933 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17933 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17933 .medium-12 {
    width: 100%; }

  #stacks_in_17933 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17933 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17933 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17933 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17933 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17933 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17933 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17933 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17933 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17933 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17933 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17933 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17933 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17933 .column.medium-centered,
  #stacks_in_17933 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17933 .column.medium-uncentered,
  #stacks_in_17933 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17933 .column.medium-centered:last-child,
  #stacks_in_17933 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17933 .column.medium-uncentered:last-child,
  #stacks_in_17933 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17933 .column.medium-uncentered.opposite,
  #stacks_in_17933 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17933 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17933 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17933 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17933 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17933 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17933 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17933 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17933 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17933 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17933 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17933 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17933 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17933 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17933 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17933 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17933 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17933 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17933 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17933 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17933 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17933 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17933 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17933 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17933 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17933 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17933 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17933 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17933 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17933 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17933 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17933 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17933 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17933 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17933 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17933 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17933 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17933 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17933 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17933 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17933 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17933 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17933 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17933 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17933 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17933 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17933 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17933 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17933 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17933 .column,
  #stacks_in_17933 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17933 .large-1 {
    width: 8.33333%; }

  #stacks_in_17933 .large-2 {
    width: 16.66667%; }

  #stacks_in_17933 .large-3 {
    width: 25%; }

  #stacks_in_17933 .large-4 {
    width: 33.33333%; }

  #stacks_in_17933 .large-5 {
    width: 41.66667%; }

  #stacks_in_17933 .large-6 {
    width: 50%; }

  #stacks_in_17933 .large-7 {
    width: 58.33333%; }

  #stacks_in_17933 .large-8 {
    width: 66.66667%; }

  #stacks_in_17933 .large-9 {
    width: 75%; }

  #stacks_in_17933 .large-10 {
    width: 83.33333%; }

  #stacks_in_17933 .large-11 {
    width: 91.66667%; }

  #stacks_in_17933 .large-12 {
    width: 100%; }

  #stacks_in_17933 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17933 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17933 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17933 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17933 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17933 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17933 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17933 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17933 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17933 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17933 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17933 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17933 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17933 .column.large-centered,
  #stacks_in_17933 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17933 .column.large-uncentered,
  #stacks_in_17933 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17933 .column.large-centered:last-child,
  #stacks_in_17933 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17933 .column.large-uncentered:last-child,
  #stacks_in_17933 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17933 .column.large-uncentered.opposite,
  #stacks_in_17933 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17933 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17933 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17933 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17933 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17933 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17933 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17933 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17933 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17933 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17933 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17933 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17933 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17933 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17933 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17933 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17933 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17933 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17933 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17933 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17933 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17933 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17933 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17933 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17933 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17933 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17933 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17933 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17933 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17933 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17933 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17933 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17933 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17933 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17933 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17933 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17933 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17933 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17933 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17933 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17933 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17933 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_16627   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16627 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_16627 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16627 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_16627 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_16627 .captionThing {
}


#stacks_in_16627 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #808880;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_16627 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16627 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_16627 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_16627 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_16627 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_16627	.shadow-style1stacks_in_16627  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_16627	.shadow-style1stacks_in_16627 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_16635 a:before, .link_effect1stacks_in_16635 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_16635 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_16635 a:hover:before, .link_effect1stacks_in_16635 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_16635 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_16635 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_16635 .link_effect2stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_16635 .link_effect2stacks_in_16635 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_16635 .link_effect3stacks_in_16635 {
  	text-decoration: none;
}

#stacks_in_16635 .link_effect3stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_16635 .link_effect3stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect3stacks_in_16635 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_16635 .link_effect4stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect4stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect4stacks_in_16635 a::before,
#stacks_in_16635 .link_effect%stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect4stacks_in_16635 {
}

#stacks_in_16635 .link_effect4stacks_in_16635 a {
	font-weight:normal;;
}

#stacks_in_16635 .link_effect4stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16635 .link_effect4stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect4stacks_in_16635 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_16635 .link_effect5stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect5stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect5stacks_in_16635 a::before,
#stacks_in_16635 .link_effect5stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect5stacks_in_16635 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_16635 .link_effect5stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_16635 .link_effect5stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect5stacks_in_16635 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_16635 .link_effect6stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect6stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect6stacks_in_16635 a::before,
#stacks_in_16635 .link_effect6stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect6stacks_in_16635 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16635 .link_effect6stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_16635 .link_effect6stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect6stacks_in_16635 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_16635 .link_effect7stacks_in_16635 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect7stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect7stacks_in_16635 a::before,
#stacks_in_16635 .link_effect7stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect7stacks_in_16635 {
	position: relative;
}

#stacks_in_16635 .link_effect7stacks_in_16635 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_16635 .link_effect7stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16635 .link_effect7stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect7stacks_in_16635 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_16635 .link_effect8stacks_in_16635 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect8stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect8stacks_in_16635 a::before,
#stacks_in_16635 .link_effect8stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_16635 .link_effect8stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_16635 .link_effect8stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect8stacks_in_16635 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16635 .link_effect8stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_16635 .link_effect8stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect8stacks_in_16635 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_16635 .link_effect9stacks_in_16635 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect9stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect9stacks_in_16635 a::before,
#stacks_in_16635 .link_effect9stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect9stacks_in_16635 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_16635 .link_effect9stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect9stacks_in_16635 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16635 .link_effect9stacks_in_16635 a::before,
#stacks_in_16635 .link_effect9stacks_in_16635 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_16635 .link_effect9stacks_in_16635 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_16635 .link_effect9stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect9stacks_in_16635 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_16635 .link_effect9stacks_in_16635 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_16635 .link_effect10stacks_in_16635 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect10stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect10stacks_in_16635 a::before,
#stacks_in_16635 .link_effect10stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect10stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_16635 .link_effect10stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect10stacks_in_16635 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16635 .link_effect10stacks_in_16635 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16635 .link_effect10stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect10stacks_in_16635 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_16635 .link_effect11stacks_in_16635 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16635 .link_effect11stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect11stacks_in_16635 a::before,
#stacks_in_16635 .link_effect11stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect11stacks_in_16635 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_16635 .link_effect11stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect11stacks_in_16635 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16635 .link_effect11stacks_in_16635 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_16635 .link_effect11stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect11stacks_in_16635 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_16635 .link_effect12stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect12stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect12stacks_in_16635 a::before,
#stacks_in_16635 .link_effect12stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect12stacks_in_16635 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16635 .link_effect12stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect12stacks_in_16635 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_16635 .link_effect12stacks_in_16635 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_16635 .link_effect12stacks_in_16635 a,
#stacks_in_16635 .link_effect12stacks_in_16635 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_16635 .link_effect12stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect12stacks_in_16635 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_16635 .link_effect13stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect13stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect13stacks_in_16635 a::before,
#stacks_in_16635 .link_effect13stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect13stacks_in_16635 {
}

#stacks_in_16635 .link_effect13stacks_in_16635 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_16635 .link_effect13stacks_in_16635 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_16635 .link_effect13stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect13stacks_in_16635 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_16635 .link_effect14stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect14stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect14stacks_in_16635 a::before,
#stacks_in_16635 .link_effect14stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect14stacks_in_16635 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16635 .link_effect14stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect14stacks_in_16635 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_16635 .link_effect14stacks_in_16635 a::before,
#stacks_in_16635 .link_effect14stacks_in_16635 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_16635 .link_effect14stacks_in_16635 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_16635 .link_effect14stacks_in_16635 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16635 .link_effect14stacks_in_16635 a:hover::after,
#stacks_in_16635 .link_effect14stacks_in_16635 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_16635 .link_effect15stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect15stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect15stacks_in_16635 a::before,
#stacks_in_16635 .link_effect15stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect15stacks_in_16635 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16635 .link_effect15stacks_in_16635 a::before,
#stacks_in_16635 .link_effect15stacks_in_16635 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_16635 .link_effect15stacks_in_16635 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_16635 .link_effect15stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect15stacks_in_16635 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_16635 .link_effect15stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect15stacks_in_16635 a:focus::before,
#stacks_in_16635 .link_effect15stacks_in_16635 a:hover::after,
#stacks_in_16635 .link_effect15stacks_in_16635 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16635 .link_effect15stacks_in_16635 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_16635 .link_effect15stacks_in_16635 a:hover::after,
#stacks_in_16635 .link_effect15stacks_in_16635 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_16635 .link_effect16stacks_in_16635 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a::before,
#stacks_in_16635 .link_effect16stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a:hover {
	color: #d04c3f;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a::before,
#stacks_in_16635 .link_effect16stacks_in_16635 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_16635 .link_effect16stacks_in_16635 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_16635 .link_effect16stacks_in_16635 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_16635 .link_effect16stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect16stacks_in_16635 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_16635 .link_effect17stacks_in_16635 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_16635 .link_effect17stacks_in_16635 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_16635 .link_effect17stacks_in_16635 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_16635 .link_effect18stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect18stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect18stacks_in_16635 a::before,
#stacks_in_16635 .link_effect18stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16635 .link_effect18stacks_in_16635 {
}

#stacks_in_16635 .link_effect18stacks_in_16635 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_16635 .link_effect18stacks_in_16635 a::before,
#stacks_in_16635 .link_effect18stacks_in_16635 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16635 .link_effect18stacks_in_16635 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16635 .link_effect18stacks_in_16635 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_16635 .link_effect18stacks_in_16635 a:hover,
#stacks_in_16635 .link_effect18stacks_in_16635 a:focus {
	color: #fff;
}

#stacks_in_16635 .link_effect18stacks_in_16635 a:hover::before,
#stacks_in_16635 .link_effect18stacks_in_16635 a:focus::before,
#stacks_in_16635 .link_effect18stacks_in_16635 a:hover::after,
#stacks_in_16635 .link_effect18stacks_in_16635 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_16635 .link_effect19stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect19stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect19stacks_in_16635 a::before,
#stacks_in_16635 .link_effect19stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_16635 a {
}

.link_effect19stacks_in_16635 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_16635 a:hover::after,
.link_effect19stacks_in_16635 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_16635 .link_effect20stacks_in_16635 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16635 .link_effect20stacks_in_16635 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16635 .link_effect20stacks_in_16635 a::before,
#stacks_in_16635 .link_effect20stacks_in_16635 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_16635 a {
}

.link_effect20stacks_in_16635 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_16635 a:hover::after,
.link_effect20stacks_in_16635 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_16758   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16758 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_16758 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16758 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_16758 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_16758 .captionThing {
}


#stacks_in_16758 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #42A98D;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_16758 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16758 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_16758 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_16758 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_16758 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_16758	.shadow-style1stacks_in_16758  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_16758	.shadow-style1stacks_in_16758 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_16766 a:before, .link_effect1stacks_in_16766 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_16766 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_16766 a:hover:before, .link_effect1stacks_in_16766 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_16766 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_16766 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_16766 .link_effect2stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_16766 .link_effect2stacks_in_16766 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_16766 .link_effect3stacks_in_16766 {
  	text-decoration: none;
}

#stacks_in_16766 .link_effect3stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_16766 .link_effect3stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect3stacks_in_16766 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_16766 .link_effect4stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect4stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect4stacks_in_16766 a::before,
#stacks_in_16766 .link_effect%stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect4stacks_in_16766 {
}

#stacks_in_16766 .link_effect4stacks_in_16766 a {
	font-weight:normal;;
}

#stacks_in_16766 .link_effect4stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16766 .link_effect4stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect4stacks_in_16766 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_16766 .link_effect5stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect5stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect5stacks_in_16766 a::before,
#stacks_in_16766 .link_effect5stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect5stacks_in_16766 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_16766 .link_effect5stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_16766 .link_effect5stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect5stacks_in_16766 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_16766 .link_effect6stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect6stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect6stacks_in_16766 a::before,
#stacks_in_16766 .link_effect6stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect6stacks_in_16766 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16766 .link_effect6stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_16766 .link_effect6stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect6stacks_in_16766 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_16766 .link_effect7stacks_in_16766 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect7stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect7stacks_in_16766 a::before,
#stacks_in_16766 .link_effect7stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect7stacks_in_16766 {
	position: relative;
}

#stacks_in_16766 .link_effect7stacks_in_16766 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_16766 .link_effect7stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16766 .link_effect7stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect7stacks_in_16766 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_16766 .link_effect8stacks_in_16766 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect8stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect8stacks_in_16766 a::before,
#stacks_in_16766 .link_effect8stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_16766 .link_effect8stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_16766 .link_effect8stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect8stacks_in_16766 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16766 .link_effect8stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_16766 .link_effect8stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect8stacks_in_16766 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_16766 .link_effect9stacks_in_16766 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect9stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect9stacks_in_16766 a::before,
#stacks_in_16766 .link_effect9stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect9stacks_in_16766 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_16766 .link_effect9stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect9stacks_in_16766 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16766 .link_effect9stacks_in_16766 a::before,
#stacks_in_16766 .link_effect9stacks_in_16766 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_16766 .link_effect9stacks_in_16766 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_16766 .link_effect9stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect9stacks_in_16766 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_16766 .link_effect9stacks_in_16766 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_16766 .link_effect10stacks_in_16766 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect10stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect10stacks_in_16766 a::before,
#stacks_in_16766 .link_effect10stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect10stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_16766 .link_effect10stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect10stacks_in_16766 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16766 .link_effect10stacks_in_16766 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16766 .link_effect10stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect10stacks_in_16766 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_16766 .link_effect11stacks_in_16766 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16766 .link_effect11stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect11stacks_in_16766 a::before,
#stacks_in_16766 .link_effect11stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect11stacks_in_16766 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_16766 .link_effect11stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect11stacks_in_16766 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16766 .link_effect11stacks_in_16766 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_16766 .link_effect11stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect11stacks_in_16766 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_16766 .link_effect12stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect12stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect12stacks_in_16766 a::before,
#stacks_in_16766 .link_effect12stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect12stacks_in_16766 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16766 .link_effect12stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect12stacks_in_16766 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_16766 .link_effect12stacks_in_16766 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_16766 .link_effect12stacks_in_16766 a,
#stacks_in_16766 .link_effect12stacks_in_16766 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_16766 .link_effect12stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect12stacks_in_16766 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_16766 .link_effect13stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect13stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect13stacks_in_16766 a::before,
#stacks_in_16766 .link_effect13stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect13stacks_in_16766 {
}

#stacks_in_16766 .link_effect13stacks_in_16766 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_16766 .link_effect13stacks_in_16766 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_16766 .link_effect13stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect13stacks_in_16766 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_16766 .link_effect14stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect14stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect14stacks_in_16766 a::before,
#stacks_in_16766 .link_effect14stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect14stacks_in_16766 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16766 .link_effect14stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect14stacks_in_16766 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_16766 .link_effect14stacks_in_16766 a::before,
#stacks_in_16766 .link_effect14stacks_in_16766 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_16766 .link_effect14stacks_in_16766 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_16766 .link_effect14stacks_in_16766 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16766 .link_effect14stacks_in_16766 a:hover::after,
#stacks_in_16766 .link_effect14stacks_in_16766 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_16766 .link_effect15stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect15stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect15stacks_in_16766 a::before,
#stacks_in_16766 .link_effect15stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect15stacks_in_16766 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16766 .link_effect15stacks_in_16766 a::before,
#stacks_in_16766 .link_effect15stacks_in_16766 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_16766 .link_effect15stacks_in_16766 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_16766 .link_effect15stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect15stacks_in_16766 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_16766 .link_effect15stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect15stacks_in_16766 a:focus::before,
#stacks_in_16766 .link_effect15stacks_in_16766 a:hover::after,
#stacks_in_16766 .link_effect15stacks_in_16766 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16766 .link_effect15stacks_in_16766 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_16766 .link_effect15stacks_in_16766 a:hover::after,
#stacks_in_16766 .link_effect15stacks_in_16766 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_16766 .link_effect16stacks_in_16766 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a::before,
#stacks_in_16766 .link_effect16stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a:hover {
	color: #d04c3f;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a::before,
#stacks_in_16766 .link_effect16stacks_in_16766 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_16766 .link_effect16stacks_in_16766 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_16766 .link_effect16stacks_in_16766 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_16766 .link_effect16stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect16stacks_in_16766 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_16766 .link_effect17stacks_in_16766 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_16766 .link_effect17stacks_in_16766 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_16766 .link_effect17stacks_in_16766 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_16766 .link_effect18stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect18stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect18stacks_in_16766 a::before,
#stacks_in_16766 .link_effect18stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16766 .link_effect18stacks_in_16766 {
}

#stacks_in_16766 .link_effect18stacks_in_16766 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_16766 .link_effect18stacks_in_16766 a::before,
#stacks_in_16766 .link_effect18stacks_in_16766 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16766 .link_effect18stacks_in_16766 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16766 .link_effect18stacks_in_16766 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_16766 .link_effect18stacks_in_16766 a:hover,
#stacks_in_16766 .link_effect18stacks_in_16766 a:focus {
	color: #fff;
}

#stacks_in_16766 .link_effect18stacks_in_16766 a:hover::before,
#stacks_in_16766 .link_effect18stacks_in_16766 a:focus::before,
#stacks_in_16766 .link_effect18stacks_in_16766 a:hover::after,
#stacks_in_16766 .link_effect18stacks_in_16766 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_16766 .link_effect19stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect19stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect19stacks_in_16766 a::before,
#stacks_in_16766 .link_effect19stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_16766 a {
}

.link_effect19stacks_in_16766 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_16766 a:hover::after,
.link_effect19stacks_in_16766 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_16766 .link_effect20stacks_in_16766 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16766 .link_effect20stacks_in_16766 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16766 .link_effect20stacks_in_16766 a::before,
#stacks_in_16766 .link_effect20stacks_in_16766 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_16766 a {
}

.link_effect20stacks_in_16766 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_16766 a:hover::after,
.link_effect20stacks_in_16766 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_16771   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16771 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_16771 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16771 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_16771 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_16771 .captionThing {
}


#stacks_in_16771 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #F8EE6A;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_16771 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_16771 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_16771 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_16771 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_16771 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_16771	.shadow-style1stacks_in_16771  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_16771	.shadow-style1stacks_in_16771 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_16779 a:before, .link_effect1stacks_in_16779 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_16779 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_16779 a:hover:before, .link_effect1stacks_in_16779 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_16779 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_16779 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_16779 .link_effect2stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_16779 .link_effect2stacks_in_16779 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_16779 .link_effect3stacks_in_16779 {
  	text-decoration: none;
}

#stacks_in_16779 .link_effect3stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_16779 .link_effect3stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect3stacks_in_16779 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_16779 .link_effect4stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect4stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect4stacks_in_16779 a::before,
#stacks_in_16779 .link_effect%stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect4stacks_in_16779 {
}

#stacks_in_16779 .link_effect4stacks_in_16779 a {
	font-weight:normal;;
}

#stacks_in_16779 .link_effect4stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16779 .link_effect4stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect4stacks_in_16779 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_16779 .link_effect5stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect5stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect5stacks_in_16779 a::before,
#stacks_in_16779 .link_effect5stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect5stacks_in_16779 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_16779 .link_effect5stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_16779 .link_effect5stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect5stacks_in_16779 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_16779 .link_effect6stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect6stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect6stacks_in_16779 a::before,
#stacks_in_16779 .link_effect6stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect6stacks_in_16779 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16779 .link_effect6stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_16779 .link_effect6stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect6stacks_in_16779 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_16779 .link_effect7stacks_in_16779 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect7stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect7stacks_in_16779 a::before,
#stacks_in_16779 .link_effect7stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect7stacks_in_16779 {
	position: relative;
}

#stacks_in_16779 .link_effect7stacks_in_16779 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_16779 .link_effect7stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_16779 .link_effect7stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect7stacks_in_16779 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_16779 .link_effect8stacks_in_16779 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect8stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect8stacks_in_16779 a::before,
#stacks_in_16779 .link_effect8stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_16779 .link_effect8stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_16779 .link_effect8stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect8stacks_in_16779 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16779 .link_effect8stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_16779 .link_effect8stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect8stacks_in_16779 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_16779 .link_effect9stacks_in_16779 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect9stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect9stacks_in_16779 a::before,
#stacks_in_16779 .link_effect9stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect9stacks_in_16779 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_16779 .link_effect9stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect9stacks_in_16779 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16779 .link_effect9stacks_in_16779 a::before,
#stacks_in_16779 .link_effect9stacks_in_16779 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_16779 .link_effect9stacks_in_16779 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_16779 .link_effect9stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect9stacks_in_16779 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_16779 .link_effect9stacks_in_16779 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_16779 .link_effect10stacks_in_16779 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect10stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect10stacks_in_16779 a::before,
#stacks_in_16779 .link_effect10stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect10stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_16779 .link_effect10stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect10stacks_in_16779 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16779 .link_effect10stacks_in_16779 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_16779 .link_effect10stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect10stacks_in_16779 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_16779 .link_effect11stacks_in_16779 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_16779 .link_effect11stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect11stacks_in_16779 a::before,
#stacks_in_16779 .link_effect11stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect11stacks_in_16779 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_16779 .link_effect11stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect11stacks_in_16779 a:focus {
	color: #DA4453 !important;
}

#stacks_in_16779 .link_effect11stacks_in_16779 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_16779 .link_effect11stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect11stacks_in_16779 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_16779 .link_effect12stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect12stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect12stacks_in_16779 a::before,
#stacks_in_16779 .link_effect12stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect12stacks_in_16779 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16779 .link_effect12stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect12stacks_in_16779 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_16779 .link_effect12stacks_in_16779 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_16779 .link_effect12stacks_in_16779 a,
#stacks_in_16779 .link_effect12stacks_in_16779 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_16779 .link_effect12stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect12stacks_in_16779 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_16779 .link_effect13stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect13stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect13stacks_in_16779 a::before,
#stacks_in_16779 .link_effect13stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect13stacks_in_16779 {
}

#stacks_in_16779 .link_effect13stacks_in_16779 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_16779 .link_effect13stacks_in_16779 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_16779 .link_effect13stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect13stacks_in_16779 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_16779 .link_effect14stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect14stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect14stacks_in_16779 a::before,
#stacks_in_16779 .link_effect14stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect14stacks_in_16779 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16779 .link_effect14stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect14stacks_in_16779 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_16779 .link_effect14stacks_in_16779 a::before,
#stacks_in_16779 .link_effect14stacks_in_16779 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_16779 .link_effect14stacks_in_16779 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_16779 .link_effect14stacks_in_16779 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_16779 .link_effect14stacks_in_16779 a:hover::after,
#stacks_in_16779 .link_effect14stacks_in_16779 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_16779 .link_effect15stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect15stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect15stacks_in_16779 a::before,
#stacks_in_16779 .link_effect15stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect15stacks_in_16779 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_16779 .link_effect15stacks_in_16779 a::before,
#stacks_in_16779 .link_effect15stacks_in_16779 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_16779 .link_effect15stacks_in_16779 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_16779 .link_effect15stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect15stacks_in_16779 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_16779 .link_effect15stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect15stacks_in_16779 a:focus::before,
#stacks_in_16779 .link_effect15stacks_in_16779 a:hover::after,
#stacks_in_16779 .link_effect15stacks_in_16779 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_16779 .link_effect15stacks_in_16779 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_16779 .link_effect15stacks_in_16779 a:hover::after,
#stacks_in_16779 .link_effect15stacks_in_16779 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_16779 .link_effect16stacks_in_16779 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a::before,
#stacks_in_16779 .link_effect16stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a:hover {
	color: #d04c3f;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a::before,
#stacks_in_16779 .link_effect16stacks_in_16779 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_16779 .link_effect16stacks_in_16779 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_16779 .link_effect16stacks_in_16779 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_16779 .link_effect16stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect16stacks_in_16779 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_16779 .link_effect17stacks_in_16779 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_16779 .link_effect17stacks_in_16779 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_16779 .link_effect17stacks_in_16779 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_16779 .link_effect18stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect18stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect18stacks_in_16779 a::before,
#stacks_in_16779 .link_effect18stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_16779 .link_effect18stacks_in_16779 {
}

#stacks_in_16779 .link_effect18stacks_in_16779 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_16779 .link_effect18stacks_in_16779 a::before,
#stacks_in_16779 .link_effect18stacks_in_16779 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16779 .link_effect18stacks_in_16779 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_16779 .link_effect18stacks_in_16779 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_16779 .link_effect18stacks_in_16779 a:hover,
#stacks_in_16779 .link_effect18stacks_in_16779 a:focus {
	color: #fff;
}

#stacks_in_16779 .link_effect18stacks_in_16779 a:hover::before,
#stacks_in_16779 .link_effect18stacks_in_16779 a:focus::before,
#stacks_in_16779 .link_effect18stacks_in_16779 a:hover::after,
#stacks_in_16779 .link_effect18stacks_in_16779 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_16779 .link_effect19stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect19stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect19stacks_in_16779 a::before,
#stacks_in_16779 .link_effect19stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_16779 a {
}

.link_effect19stacks_in_16779 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_16779 a:hover::after,
.link_effect19stacks_in_16779 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_16779 .link_effect20stacks_in_16779 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_16779 .link_effect20stacks_in_16779 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_16779 .link_effect20stacks_in_16779 a::before,
#stacks_in_16779 .link_effect20stacks_in_16779 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_16779 a {
}

.link_effect20stacks_in_16779 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_16779 a:hover::after,
.link_effect20stacks_in_16779 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17418 article,
#stacks_in_17418 aside,
#stacks_in_17418 details,
#stacks_in_17418 figcaption,
#stacks_in_17418 figure,
#stacks_in_17418 footer,
#stacks_in_17418 header,
#stacks_in_17418 hgroup,
#stacks_in_17418 main,
#stacks_in_17418 nav,
#stacks_in_17418 section,
#stacks_in_17418 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17418 audio,
#stacks_in_17418 canvas,
#stacks_in_17418 progress,
#stacks_in_17418 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17418 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17418 [hidden],
#stacks_in_17418 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17418 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17418 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17418 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17418 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17418 code,
#stacks_in_17418 kbd,
#stacks_in_17418 pre,
#stacks_in_17418 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17418 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17418 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17418 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17418 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17418 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17418 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17418 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17418 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17418 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17418 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17418 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17418 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17418 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17418 .left {
  float: left !important; }

#stacks_in_17418 .right {
  float: right !important; }

#stacks_in_17418 .clearfix:before,
#stacks_in_17418 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17418 .clearfix:after {
  clear: both; }

#stacks_in_17418 .hide {
  display: none; }

#stacks_in_17418 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17418 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17418 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17418 select {
  width: 100%; }

#stacks_in_17418 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17418 .row:before,
#stacks_in_17418 .row:after {
  content: " ";
  display: table; }

#stacks_in_17418 .row:after {
  clear: both; }

#stacks_in_17418 .row.collapse > .column,
#stacks_in_17418 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17418 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17418 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17418 .row .row:before,
#stacks_in_17418 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17418 .row .row:after {
  clear: both; }

#stacks_in_17418 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17418 .row .row.collapse:before,
#stacks_in_17418 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17418 .row .row.collapse:after {
  clear: both; }

#stacks_in_17418 .column,
#stacks_in_17418 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17418 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17418 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17418 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17418 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17418 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17418 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17418 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17418 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17418 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17418 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17418 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17418 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17418 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17418 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17418 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17418 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17418 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17418 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17418 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17418 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17418 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17418 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17418 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17418 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17418 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17418 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17418 .column,
  #stacks_in_17418 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17418 .small-1 {
    width: 8.33333%; }

  #stacks_in_17418 .small-2 {
    width: 16.66667%; }

  #stacks_in_17418 .small-3 {
    width: 25%; }

  #stacks_in_17418 .small-4 {
    width: 33.33333%; }

  #stacks_in_17418 .small-5 {
    width: 41.66667%; }

  #stacks_in_17418 .small-6 {
    width: 50%; }

  #stacks_in_17418 .small-7 {
    width: 58.33333%; }

  #stacks_in_17418 .small-8 {
    width: 66.66667%; }

  #stacks_in_17418 .small-9 {
    width: 75%; }

  #stacks_in_17418 .small-10 {
    width: 83.33333%; }

  #stacks_in_17418 .small-11 {
    width: 91.66667%; }

  #stacks_in_17418 .small-12 {
    width: 100%; }

  #stacks_in_17418 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17418 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17418 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17418 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17418 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17418 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17418 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17418 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17418 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17418 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17418 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17418 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17418 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17418 .column.small-centered,
  #stacks_in_17418 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17418 .column.small-uncentered,
  #stacks_in_17418 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17418 .column.small-centered:last-child,
  #stacks_in_17418 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17418 .column.small-uncentered:last-child,
  #stacks_in_17418 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17418 .column.small-uncentered.opposite,
  #stacks_in_17418 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17418 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17418 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17418 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17418 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17418 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17418 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17418 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17418 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17418 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17418 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17418 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17418 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17418 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17418 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17418 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17418 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17418 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17418 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17418 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17418 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17418 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17418 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17418 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17418 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17418 .column,
  #stacks_in_17418 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17418 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17418 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17418 .medium-3 {
    width: 25%; }

  #stacks_in_17418 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17418 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17418 .medium-6 {
    width: 50%; }

  #stacks_in_17418 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17418 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17418 .medium-9 {
    width: 75%; }

  #stacks_in_17418 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17418 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17418 .medium-12 {
    width: 100%; }

  #stacks_in_17418 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17418 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17418 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17418 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17418 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17418 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17418 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17418 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17418 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17418 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17418 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17418 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17418 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17418 .column.medium-centered,
  #stacks_in_17418 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17418 .column.medium-uncentered,
  #stacks_in_17418 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17418 .column.medium-centered:last-child,
  #stacks_in_17418 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17418 .column.medium-uncentered:last-child,
  #stacks_in_17418 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17418 .column.medium-uncentered.opposite,
  #stacks_in_17418 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17418 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17418 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17418 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17418 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17418 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17418 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17418 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17418 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17418 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17418 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17418 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17418 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17418 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17418 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17418 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17418 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17418 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17418 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17418 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17418 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17418 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17418 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17418 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17418 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17418 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17418 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17418 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17418 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17418 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17418 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17418 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17418 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17418 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17418 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17418 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17418 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17418 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17418 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17418 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17418 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17418 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17418 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17418 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17418 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17418 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17418 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17418 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17418 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17418 .column,
  #stacks_in_17418 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17418 .large-1 {
    width: 8.33333%; }

  #stacks_in_17418 .large-2 {
    width: 16.66667%; }

  #stacks_in_17418 .large-3 {
    width: 25%; }

  #stacks_in_17418 .large-4 {
    width: 33.33333%; }

  #stacks_in_17418 .large-5 {
    width: 41.66667%; }

  #stacks_in_17418 .large-6 {
    width: 50%; }

  #stacks_in_17418 .large-7 {
    width: 58.33333%; }

  #stacks_in_17418 .large-8 {
    width: 66.66667%; }

  #stacks_in_17418 .large-9 {
    width: 75%; }

  #stacks_in_17418 .large-10 {
    width: 83.33333%; }

  #stacks_in_17418 .large-11 {
    width: 91.66667%; }

  #stacks_in_17418 .large-12 {
    width: 100%; }

  #stacks_in_17418 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17418 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17418 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17418 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17418 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17418 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17418 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17418 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17418 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17418 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17418 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17418 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17418 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17418 .column.large-centered,
  #stacks_in_17418 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17418 .column.large-uncentered,
  #stacks_in_17418 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17418 .column.large-centered:last-child,
  #stacks_in_17418 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17418 .column.large-uncentered:last-child,
  #stacks_in_17418 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17418 .column.large-uncentered.opposite,
  #stacks_in_17418 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17418 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17418 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17418 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17418 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17418 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17418 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17418 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17418 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17418 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17418 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17418 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17418 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17418 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17418 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17418 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17418 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17418 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17418 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17418 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17418 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17418 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17418 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17418 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17418 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17418 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17418 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17418 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17418 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17418 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17418 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17418 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17418 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17418 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17418 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17418 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17418 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17418 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17418 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17418 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17418 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17418 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17381   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17381 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17381 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17381 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17381 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17381 .captionThing {
}


#stacks_in_17381 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #D3534F;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17381 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17381 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17381 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17381 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17381 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17381	.shadow-style1stacks_in_17381  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17381	.shadow-style1stacks_in_17381 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17387 a:before, .link_effect1stacks_in_17387 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17387 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17387 a:hover:before, .link_effect1stacks_in_17387 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17387 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17387 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17387 .link_effect2stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17387 .link_effect2stacks_in_17387 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17387 .link_effect3stacks_in_17387 {
  	text-decoration: none;
}

#stacks_in_17387 .link_effect3stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17387 .link_effect3stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect3stacks_in_17387 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17387 .link_effect4stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect4stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect4stacks_in_17387 a::before,
#stacks_in_17387 .link_effect%stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect4stacks_in_17387 {
}

#stacks_in_17387 .link_effect4stacks_in_17387 a {
	font-weight:normal;;
}

#stacks_in_17387 .link_effect4stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17387 .link_effect4stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect4stacks_in_17387 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17387 .link_effect5stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect5stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect5stacks_in_17387 a::before,
#stacks_in_17387 .link_effect5stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect5stacks_in_17387 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17387 .link_effect5stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17387 .link_effect5stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect5stacks_in_17387 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17387 .link_effect6stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect6stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect6stacks_in_17387 a::before,
#stacks_in_17387 .link_effect6stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect6stacks_in_17387 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17387 .link_effect6stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17387 .link_effect6stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect6stacks_in_17387 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17387 .link_effect7stacks_in_17387 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect7stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect7stacks_in_17387 a::before,
#stacks_in_17387 .link_effect7stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect7stacks_in_17387 {
	position: relative;
}

#stacks_in_17387 .link_effect7stacks_in_17387 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17387 .link_effect7stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17387 .link_effect7stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect7stacks_in_17387 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17387 .link_effect8stacks_in_17387 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect8stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect8stacks_in_17387 a::before,
#stacks_in_17387 .link_effect8stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17387 .link_effect8stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17387 .link_effect8stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect8stacks_in_17387 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17387 .link_effect8stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17387 .link_effect8stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect8stacks_in_17387 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17387 .link_effect9stacks_in_17387 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect9stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect9stacks_in_17387 a::before,
#stacks_in_17387 .link_effect9stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect9stacks_in_17387 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17387 .link_effect9stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect9stacks_in_17387 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17387 .link_effect9stacks_in_17387 a::before,
#stacks_in_17387 .link_effect9stacks_in_17387 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17387 .link_effect9stacks_in_17387 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17387 .link_effect9stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect9stacks_in_17387 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17387 .link_effect9stacks_in_17387 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17387 .link_effect10stacks_in_17387 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect10stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect10stacks_in_17387 a::before,
#stacks_in_17387 .link_effect10stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect10stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17387 .link_effect10stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect10stacks_in_17387 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17387 .link_effect10stacks_in_17387 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17387 .link_effect10stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect10stacks_in_17387 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17387 .link_effect11stacks_in_17387 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17387 .link_effect11stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect11stacks_in_17387 a::before,
#stacks_in_17387 .link_effect11stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect11stacks_in_17387 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17387 .link_effect11stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect11stacks_in_17387 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17387 .link_effect11stacks_in_17387 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17387 .link_effect11stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect11stacks_in_17387 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17387 .link_effect12stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect12stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect12stacks_in_17387 a::before,
#stacks_in_17387 .link_effect12stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect12stacks_in_17387 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17387 .link_effect12stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect12stacks_in_17387 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17387 .link_effect12stacks_in_17387 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17387 .link_effect12stacks_in_17387 a,
#stacks_in_17387 .link_effect12stacks_in_17387 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17387 .link_effect12stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect12stacks_in_17387 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17387 .link_effect13stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect13stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect13stacks_in_17387 a::before,
#stacks_in_17387 .link_effect13stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect13stacks_in_17387 {
}

#stacks_in_17387 .link_effect13stacks_in_17387 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17387 .link_effect13stacks_in_17387 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17387 .link_effect13stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect13stacks_in_17387 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17387 .link_effect14stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect14stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect14stacks_in_17387 a::before,
#stacks_in_17387 .link_effect14stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect14stacks_in_17387 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17387 .link_effect14stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect14stacks_in_17387 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17387 .link_effect14stacks_in_17387 a::before,
#stacks_in_17387 .link_effect14stacks_in_17387 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17387 .link_effect14stacks_in_17387 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17387 .link_effect14stacks_in_17387 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17387 .link_effect14stacks_in_17387 a:hover::after,
#stacks_in_17387 .link_effect14stacks_in_17387 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17387 .link_effect15stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect15stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect15stacks_in_17387 a::before,
#stacks_in_17387 .link_effect15stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect15stacks_in_17387 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17387 .link_effect15stacks_in_17387 a::before,
#stacks_in_17387 .link_effect15stacks_in_17387 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17387 .link_effect15stacks_in_17387 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17387 .link_effect15stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect15stacks_in_17387 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17387 .link_effect15stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect15stacks_in_17387 a:focus::before,
#stacks_in_17387 .link_effect15stacks_in_17387 a:hover::after,
#stacks_in_17387 .link_effect15stacks_in_17387 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17387 .link_effect15stacks_in_17387 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17387 .link_effect15stacks_in_17387 a:hover::after,
#stacks_in_17387 .link_effect15stacks_in_17387 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17387 .link_effect16stacks_in_17387 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a::before,
#stacks_in_17387 .link_effect16stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a:hover {
	color: #d04c3f;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a::before,
#stacks_in_17387 .link_effect16stacks_in_17387 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17387 .link_effect16stacks_in_17387 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17387 .link_effect16stacks_in_17387 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17387 .link_effect16stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect16stacks_in_17387 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17387 .link_effect17stacks_in_17387 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17387 .link_effect17stacks_in_17387 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17387 .link_effect17stacks_in_17387 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17387 .link_effect18stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect18stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect18stacks_in_17387 a::before,
#stacks_in_17387 .link_effect18stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17387 .link_effect18stacks_in_17387 {
}

#stacks_in_17387 .link_effect18stacks_in_17387 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17387 .link_effect18stacks_in_17387 a::before,
#stacks_in_17387 .link_effect18stacks_in_17387 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17387 .link_effect18stacks_in_17387 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17387 .link_effect18stacks_in_17387 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17387 .link_effect18stacks_in_17387 a:hover,
#stacks_in_17387 .link_effect18stacks_in_17387 a:focus {
	color: #fff;
}

#stacks_in_17387 .link_effect18stacks_in_17387 a:hover::before,
#stacks_in_17387 .link_effect18stacks_in_17387 a:focus::before,
#stacks_in_17387 .link_effect18stacks_in_17387 a:hover::after,
#stacks_in_17387 .link_effect18stacks_in_17387 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17387 .link_effect19stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect19stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect19stacks_in_17387 a::before,
#stacks_in_17387 .link_effect19stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17387 a {
}

.link_effect19stacks_in_17387 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17387 a:hover::after,
.link_effect19stacks_in_17387 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17387 .link_effect20stacks_in_17387 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17387 .link_effect20stacks_in_17387 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17387 .link_effect20stacks_in_17387 a::before,
#stacks_in_17387 .link_effect20stacks_in_17387 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17387 a {
}

.link_effect20stacks_in_17387 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17387 a:hover::after,
.link_effect20stacks_in_17387 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17419   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17419 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17419 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17419 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17419 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17419 .captionThing {
}


#stacks_in_17419 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #9A99A3;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17419 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17419 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17419 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17419 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17419 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17419	.shadow-style1stacks_in_17419  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17419	.shadow-style1stacks_in_17419 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17425 a:before, .link_effect1stacks_in_17425 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17425 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17425 a:hover:before, .link_effect1stacks_in_17425 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17425 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17425 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17425 .link_effect2stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17425 .link_effect2stacks_in_17425 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17425 .link_effect3stacks_in_17425 {
  	text-decoration: none;
}

#stacks_in_17425 .link_effect3stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17425 .link_effect3stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect3stacks_in_17425 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17425 .link_effect4stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect4stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect4stacks_in_17425 a::before,
#stacks_in_17425 .link_effect%stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect4stacks_in_17425 {
}

#stacks_in_17425 .link_effect4stacks_in_17425 a {
	font-weight:normal;;
}

#stacks_in_17425 .link_effect4stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17425 .link_effect4stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect4stacks_in_17425 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17425 .link_effect5stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect5stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect5stacks_in_17425 a::before,
#stacks_in_17425 .link_effect5stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect5stacks_in_17425 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17425 .link_effect5stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17425 .link_effect5stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect5stacks_in_17425 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17425 .link_effect6stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect6stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect6stacks_in_17425 a::before,
#stacks_in_17425 .link_effect6stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect6stacks_in_17425 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17425 .link_effect6stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17425 .link_effect6stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect6stacks_in_17425 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17425 .link_effect7stacks_in_17425 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect7stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect7stacks_in_17425 a::before,
#stacks_in_17425 .link_effect7stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect7stacks_in_17425 {
	position: relative;
}

#stacks_in_17425 .link_effect7stacks_in_17425 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17425 .link_effect7stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17425 .link_effect7stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect7stacks_in_17425 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17425 .link_effect8stacks_in_17425 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect8stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect8stacks_in_17425 a::before,
#stacks_in_17425 .link_effect8stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17425 .link_effect8stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17425 .link_effect8stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect8stacks_in_17425 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17425 .link_effect8stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17425 .link_effect8stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect8stacks_in_17425 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17425 .link_effect9stacks_in_17425 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect9stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect9stacks_in_17425 a::before,
#stacks_in_17425 .link_effect9stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect9stacks_in_17425 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17425 .link_effect9stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect9stacks_in_17425 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17425 .link_effect9stacks_in_17425 a::before,
#stacks_in_17425 .link_effect9stacks_in_17425 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17425 .link_effect9stacks_in_17425 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17425 .link_effect9stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect9stacks_in_17425 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17425 .link_effect9stacks_in_17425 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17425 .link_effect10stacks_in_17425 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect10stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect10stacks_in_17425 a::before,
#stacks_in_17425 .link_effect10stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect10stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17425 .link_effect10stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect10stacks_in_17425 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17425 .link_effect10stacks_in_17425 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17425 .link_effect10stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect10stacks_in_17425 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17425 .link_effect11stacks_in_17425 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17425 .link_effect11stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect11stacks_in_17425 a::before,
#stacks_in_17425 .link_effect11stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect11stacks_in_17425 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17425 .link_effect11stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect11stacks_in_17425 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17425 .link_effect11stacks_in_17425 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17425 .link_effect11stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect11stacks_in_17425 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17425 .link_effect12stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect12stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect12stacks_in_17425 a::before,
#stacks_in_17425 .link_effect12stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect12stacks_in_17425 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17425 .link_effect12stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect12stacks_in_17425 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17425 .link_effect12stacks_in_17425 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17425 .link_effect12stacks_in_17425 a,
#stacks_in_17425 .link_effect12stacks_in_17425 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17425 .link_effect12stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect12stacks_in_17425 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17425 .link_effect13stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect13stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect13stacks_in_17425 a::before,
#stacks_in_17425 .link_effect13stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect13stacks_in_17425 {
}

#stacks_in_17425 .link_effect13stacks_in_17425 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17425 .link_effect13stacks_in_17425 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17425 .link_effect13stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect13stacks_in_17425 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17425 .link_effect14stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect14stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect14stacks_in_17425 a::before,
#stacks_in_17425 .link_effect14stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect14stacks_in_17425 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17425 .link_effect14stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect14stacks_in_17425 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17425 .link_effect14stacks_in_17425 a::before,
#stacks_in_17425 .link_effect14stacks_in_17425 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17425 .link_effect14stacks_in_17425 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17425 .link_effect14stacks_in_17425 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17425 .link_effect14stacks_in_17425 a:hover::after,
#stacks_in_17425 .link_effect14stacks_in_17425 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17425 .link_effect15stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect15stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect15stacks_in_17425 a::before,
#stacks_in_17425 .link_effect15stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect15stacks_in_17425 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17425 .link_effect15stacks_in_17425 a::before,
#stacks_in_17425 .link_effect15stacks_in_17425 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17425 .link_effect15stacks_in_17425 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17425 .link_effect15stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect15stacks_in_17425 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17425 .link_effect15stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect15stacks_in_17425 a:focus::before,
#stacks_in_17425 .link_effect15stacks_in_17425 a:hover::after,
#stacks_in_17425 .link_effect15stacks_in_17425 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17425 .link_effect15stacks_in_17425 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17425 .link_effect15stacks_in_17425 a:hover::after,
#stacks_in_17425 .link_effect15stacks_in_17425 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17425 .link_effect16stacks_in_17425 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a::before,
#stacks_in_17425 .link_effect16stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a:hover {
	color: #d04c3f;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a::before,
#stacks_in_17425 .link_effect16stacks_in_17425 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17425 .link_effect16stacks_in_17425 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17425 .link_effect16stacks_in_17425 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17425 .link_effect16stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect16stacks_in_17425 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17425 .link_effect17stacks_in_17425 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17425 .link_effect17stacks_in_17425 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17425 .link_effect17stacks_in_17425 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17425 .link_effect18stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect18stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect18stacks_in_17425 a::before,
#stacks_in_17425 .link_effect18stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17425 .link_effect18stacks_in_17425 {
}

#stacks_in_17425 .link_effect18stacks_in_17425 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17425 .link_effect18stacks_in_17425 a::before,
#stacks_in_17425 .link_effect18stacks_in_17425 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17425 .link_effect18stacks_in_17425 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17425 .link_effect18stacks_in_17425 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17425 .link_effect18stacks_in_17425 a:hover,
#stacks_in_17425 .link_effect18stacks_in_17425 a:focus {
	color: #fff;
}

#stacks_in_17425 .link_effect18stacks_in_17425 a:hover::before,
#stacks_in_17425 .link_effect18stacks_in_17425 a:focus::before,
#stacks_in_17425 .link_effect18stacks_in_17425 a:hover::after,
#stacks_in_17425 .link_effect18stacks_in_17425 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17425 .link_effect19stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect19stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect19stacks_in_17425 a::before,
#stacks_in_17425 .link_effect19stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17425 a {
}

.link_effect19stacks_in_17425 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17425 a:hover::after,
.link_effect19stacks_in_17425 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17425 .link_effect20stacks_in_17425 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17425 .link_effect20stacks_in_17425 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17425 .link_effect20stacks_in_17425 a::before,
#stacks_in_17425 .link_effect20stacks_in_17425 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17425 a {
}

.link_effect20stacks_in_17425 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17425 a:hover::after,
.link_effect20stacks_in_17425 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17432   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17432 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17432 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17432 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17432 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17432 .captionThing {
}


#stacks_in_17432 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #E2AC9A;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17432 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17432 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17432 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17432 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17432 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17432	.shadow-style1stacks_in_17432  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17432	.shadow-style1stacks_in_17432 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17438 a:before, .link_effect1stacks_in_17438 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17438 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17438 a:hover:before, .link_effect1stacks_in_17438 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17438 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17438 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17438 .link_effect2stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17438 .link_effect2stacks_in_17438 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17438 .link_effect3stacks_in_17438 {
  	text-decoration: none;
}

#stacks_in_17438 .link_effect3stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17438 .link_effect3stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect3stacks_in_17438 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17438 .link_effect4stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect4stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect4stacks_in_17438 a::before,
#stacks_in_17438 .link_effect%stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect4stacks_in_17438 {
}

#stacks_in_17438 .link_effect4stacks_in_17438 a {
	font-weight:normal;;
}

#stacks_in_17438 .link_effect4stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17438 .link_effect4stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect4stacks_in_17438 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17438 .link_effect5stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect5stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect5stacks_in_17438 a::before,
#stacks_in_17438 .link_effect5stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect5stacks_in_17438 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17438 .link_effect5stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17438 .link_effect5stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect5stacks_in_17438 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17438 .link_effect6stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect6stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect6stacks_in_17438 a::before,
#stacks_in_17438 .link_effect6stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect6stacks_in_17438 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17438 .link_effect6stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17438 .link_effect6stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect6stacks_in_17438 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17438 .link_effect7stacks_in_17438 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect7stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect7stacks_in_17438 a::before,
#stacks_in_17438 .link_effect7stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect7stacks_in_17438 {
	position: relative;
}

#stacks_in_17438 .link_effect7stacks_in_17438 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17438 .link_effect7stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17438 .link_effect7stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect7stacks_in_17438 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17438 .link_effect8stacks_in_17438 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect8stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect8stacks_in_17438 a::before,
#stacks_in_17438 .link_effect8stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17438 .link_effect8stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17438 .link_effect8stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect8stacks_in_17438 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17438 .link_effect8stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17438 .link_effect8stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect8stacks_in_17438 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17438 .link_effect9stacks_in_17438 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect9stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect9stacks_in_17438 a::before,
#stacks_in_17438 .link_effect9stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect9stacks_in_17438 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17438 .link_effect9stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect9stacks_in_17438 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17438 .link_effect9stacks_in_17438 a::before,
#stacks_in_17438 .link_effect9stacks_in_17438 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17438 .link_effect9stacks_in_17438 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17438 .link_effect9stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect9stacks_in_17438 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17438 .link_effect9stacks_in_17438 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17438 .link_effect10stacks_in_17438 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect10stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect10stacks_in_17438 a::before,
#stacks_in_17438 .link_effect10stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect10stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17438 .link_effect10stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect10stacks_in_17438 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17438 .link_effect10stacks_in_17438 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17438 .link_effect10stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect10stacks_in_17438 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17438 .link_effect11stacks_in_17438 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17438 .link_effect11stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect11stacks_in_17438 a::before,
#stacks_in_17438 .link_effect11stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect11stacks_in_17438 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17438 .link_effect11stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect11stacks_in_17438 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17438 .link_effect11stacks_in_17438 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17438 .link_effect11stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect11stacks_in_17438 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17438 .link_effect12stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect12stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect12stacks_in_17438 a::before,
#stacks_in_17438 .link_effect12stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect12stacks_in_17438 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17438 .link_effect12stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect12stacks_in_17438 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17438 .link_effect12stacks_in_17438 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17438 .link_effect12stacks_in_17438 a,
#stacks_in_17438 .link_effect12stacks_in_17438 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17438 .link_effect12stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect12stacks_in_17438 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17438 .link_effect13stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect13stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect13stacks_in_17438 a::before,
#stacks_in_17438 .link_effect13stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect13stacks_in_17438 {
}

#stacks_in_17438 .link_effect13stacks_in_17438 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17438 .link_effect13stacks_in_17438 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17438 .link_effect13stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect13stacks_in_17438 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17438 .link_effect14stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect14stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect14stacks_in_17438 a::before,
#stacks_in_17438 .link_effect14stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect14stacks_in_17438 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17438 .link_effect14stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect14stacks_in_17438 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17438 .link_effect14stacks_in_17438 a::before,
#stacks_in_17438 .link_effect14stacks_in_17438 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17438 .link_effect14stacks_in_17438 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17438 .link_effect14stacks_in_17438 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17438 .link_effect14stacks_in_17438 a:hover::after,
#stacks_in_17438 .link_effect14stacks_in_17438 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17438 .link_effect15stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect15stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect15stacks_in_17438 a::before,
#stacks_in_17438 .link_effect15stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect15stacks_in_17438 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17438 .link_effect15stacks_in_17438 a::before,
#stacks_in_17438 .link_effect15stacks_in_17438 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17438 .link_effect15stacks_in_17438 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17438 .link_effect15stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect15stacks_in_17438 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17438 .link_effect15stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect15stacks_in_17438 a:focus::before,
#stacks_in_17438 .link_effect15stacks_in_17438 a:hover::after,
#stacks_in_17438 .link_effect15stacks_in_17438 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17438 .link_effect15stacks_in_17438 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17438 .link_effect15stacks_in_17438 a:hover::after,
#stacks_in_17438 .link_effect15stacks_in_17438 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17438 .link_effect16stacks_in_17438 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a::before,
#stacks_in_17438 .link_effect16stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a:hover {
	color: #d04c3f;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a::before,
#stacks_in_17438 .link_effect16stacks_in_17438 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17438 .link_effect16stacks_in_17438 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17438 .link_effect16stacks_in_17438 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17438 .link_effect16stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect16stacks_in_17438 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17438 .link_effect17stacks_in_17438 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17438 .link_effect17stacks_in_17438 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17438 .link_effect17stacks_in_17438 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17438 .link_effect18stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect18stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect18stacks_in_17438 a::before,
#stacks_in_17438 .link_effect18stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17438 .link_effect18stacks_in_17438 {
}

#stacks_in_17438 .link_effect18stacks_in_17438 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17438 .link_effect18stacks_in_17438 a::before,
#stacks_in_17438 .link_effect18stacks_in_17438 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17438 .link_effect18stacks_in_17438 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17438 .link_effect18stacks_in_17438 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17438 .link_effect18stacks_in_17438 a:hover,
#stacks_in_17438 .link_effect18stacks_in_17438 a:focus {
	color: #fff;
}

#stacks_in_17438 .link_effect18stacks_in_17438 a:hover::before,
#stacks_in_17438 .link_effect18stacks_in_17438 a:focus::before,
#stacks_in_17438 .link_effect18stacks_in_17438 a:hover::after,
#stacks_in_17438 .link_effect18stacks_in_17438 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17438 .link_effect19stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect19stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect19stacks_in_17438 a::before,
#stacks_in_17438 .link_effect19stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17438 a {
}

.link_effect19stacks_in_17438 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17438 a:hover::after,
.link_effect19stacks_in_17438 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17438 .link_effect20stacks_in_17438 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17438 .link_effect20stacks_in_17438 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17438 .link_effect20stacks_in_17438 a::before,
#stacks_in_17438 .link_effect20stacks_in_17438 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17438 a {
}

.link_effect20stacks_in_17438 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17438 a:hover::after,
.link_effect20stacks_in_17438 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* PolyCapThing by RapidWeaver Central  */


#polyCapThingstacks_in_17445   {
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	background: #FFFFFF;
		
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17445 .imageThing  {
 	width:auto;
	height: auto;
    margin:0 auto;
	display: block;
	position: relative;
	overflow:hidden;
	z-index: 0;
	background: transparent;
	outline: 1px solid transparent;
}

#stacks_in_17445 .imageThing:hover  {
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17445 .topDiagonalThing {
	display: block;
	position: relative;
    height:0;
	top: -80px;
    border-width:80px 300px 0   0;
    border-style:solid;
    border-color: transparent #FFFFFF  transparent #FFFFFF ;
	outline: 1px solid transparent;
	z-index: 1;
}


#stacks_in_17445 .contentThing {
	top: -100px;
	padding-top: 20px;
	position: relative;
	display: block;
}

 #stacks_in_17445 .captionThing {
}


#stacks_in_17445 .figcap {
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	padding: 20px 20px 20px 20px;
	opacity: 0;
	background: #B5C9C8;
	z-index: 2;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
		-ms-transition: all 0.6s ease;
		 	transition: all 0.6s ease;
}

#stacks_in_17445 .captionThing:hover  {
	z-index: 3;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_17445 .figcap:before {
	bottom: 10px;
	left: 10px;
}

#stacks_in_17445 .figcap {
	top: 0;
	left: -50%;
}

#stacks_in_17445 .figcap:hover {
	z-index: 3;
	opacity:  1 !important;
	left: 0;
}














.shadow-style0stacks_in_17445 {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

#stacks_in_17445	.shadow-style1stacks_in_17445  {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
	  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50) ;
			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);
}

#stacks_in_17445	.shadow-style1stacks_in_17445 {
	margin:10px;
}

/*  Clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


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



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17451 a:before, .link_effect1stacks_in_17451 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17451 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17451 a:hover:before, .link_effect1stacks_in_17451 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17451 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17451 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17451 .link_effect2stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17451 .link_effect2stacks_in_17451 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17451 .link_effect3stacks_in_17451 {
  	text-decoration: none;
}

#stacks_in_17451 .link_effect3stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17451 .link_effect3stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect3stacks_in_17451 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17451 .link_effect4stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect4stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect4stacks_in_17451 a::before,
#stacks_in_17451 .link_effect%stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect4stacks_in_17451 {
}

#stacks_in_17451 .link_effect4stacks_in_17451 a {
	font-weight:normal;;
}

#stacks_in_17451 .link_effect4stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17451 .link_effect4stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect4stacks_in_17451 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17451 .link_effect5stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect5stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect5stacks_in_17451 a::before,
#stacks_in_17451 .link_effect5stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect5stacks_in_17451 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17451 .link_effect5stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17451 .link_effect5stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect5stacks_in_17451 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17451 .link_effect6stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect6stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect6stacks_in_17451 a::before,
#stacks_in_17451 .link_effect6stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect6stacks_in_17451 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17451 .link_effect6stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17451 .link_effect6stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect6stacks_in_17451 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17451 .link_effect7stacks_in_17451 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect7stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect7stacks_in_17451 a::before,
#stacks_in_17451 .link_effect7stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect7stacks_in_17451 {
	position: relative;
}

#stacks_in_17451 .link_effect7stacks_in_17451 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17451 .link_effect7stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17451 .link_effect7stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect7stacks_in_17451 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17451 .link_effect8stacks_in_17451 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect8stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect8stacks_in_17451 a::before,
#stacks_in_17451 .link_effect8stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17451 .link_effect8stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17451 .link_effect8stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect8stacks_in_17451 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17451 .link_effect8stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17451 .link_effect8stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect8stacks_in_17451 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17451 .link_effect9stacks_in_17451 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect9stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect9stacks_in_17451 a::before,
#stacks_in_17451 .link_effect9stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect9stacks_in_17451 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17451 .link_effect9stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect9stacks_in_17451 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17451 .link_effect9stacks_in_17451 a::before,
#stacks_in_17451 .link_effect9stacks_in_17451 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17451 .link_effect9stacks_in_17451 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17451 .link_effect9stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect9stacks_in_17451 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17451 .link_effect9stacks_in_17451 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17451 .link_effect10stacks_in_17451 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect10stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect10stacks_in_17451 a::before,
#stacks_in_17451 .link_effect10stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect10stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17451 .link_effect10stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect10stacks_in_17451 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17451 .link_effect10stacks_in_17451 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17451 .link_effect10stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect10stacks_in_17451 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17451 .link_effect11stacks_in_17451 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17451 .link_effect11stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect11stacks_in_17451 a::before,
#stacks_in_17451 .link_effect11stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect11stacks_in_17451 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17451 .link_effect11stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect11stacks_in_17451 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17451 .link_effect11stacks_in_17451 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17451 .link_effect11stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect11stacks_in_17451 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17451 .link_effect12stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect12stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect12stacks_in_17451 a::before,
#stacks_in_17451 .link_effect12stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect12stacks_in_17451 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17451 .link_effect12stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect12stacks_in_17451 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17451 .link_effect12stacks_in_17451 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17451 .link_effect12stacks_in_17451 a,
#stacks_in_17451 .link_effect12stacks_in_17451 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17451 .link_effect12stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect12stacks_in_17451 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17451 .link_effect13stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect13stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect13stacks_in_17451 a::before,
#stacks_in_17451 .link_effect13stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect13stacks_in_17451 {
}

#stacks_in_17451 .link_effect13stacks_in_17451 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17451 .link_effect13stacks_in_17451 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17451 .link_effect13stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect13stacks_in_17451 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17451 .link_effect14stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect14stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect14stacks_in_17451 a::before,
#stacks_in_17451 .link_effect14stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect14stacks_in_17451 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17451 .link_effect14stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect14stacks_in_17451 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17451 .link_effect14stacks_in_17451 a::before,
#stacks_in_17451 .link_effect14stacks_in_17451 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17451 .link_effect14stacks_in_17451 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17451 .link_effect14stacks_in_17451 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17451 .link_effect14stacks_in_17451 a:hover::after,
#stacks_in_17451 .link_effect14stacks_in_17451 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17451 .link_effect15stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect15stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect15stacks_in_17451 a::before,
#stacks_in_17451 .link_effect15stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect15stacks_in_17451 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17451 .link_effect15stacks_in_17451 a::before,
#stacks_in_17451 .link_effect15stacks_in_17451 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17451 .link_effect15stacks_in_17451 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17451 .link_effect15stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect15stacks_in_17451 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17451 .link_effect15stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect15stacks_in_17451 a:focus::before,
#stacks_in_17451 .link_effect15stacks_in_17451 a:hover::after,
#stacks_in_17451 .link_effect15stacks_in_17451 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17451 .link_effect15stacks_in_17451 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17451 .link_effect15stacks_in_17451 a:hover::after,
#stacks_in_17451 .link_effect15stacks_in_17451 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17451 .link_effect16stacks_in_17451 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a::before,
#stacks_in_17451 .link_effect16stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a:hover {
	color: #d04c3f;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a::before,
#stacks_in_17451 .link_effect16stacks_in_17451 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17451 .link_effect16stacks_in_17451 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17451 .link_effect16stacks_in_17451 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17451 .link_effect16stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect16stacks_in_17451 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17451 .link_effect17stacks_in_17451 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17451 .link_effect17stacks_in_17451 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17451 .link_effect17stacks_in_17451 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17451 .link_effect18stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect18stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect18stacks_in_17451 a::before,
#stacks_in_17451 .link_effect18stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17451 .link_effect18stacks_in_17451 {
}

#stacks_in_17451 .link_effect18stacks_in_17451 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17451 .link_effect18stacks_in_17451 a::before,
#stacks_in_17451 .link_effect18stacks_in_17451 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17451 .link_effect18stacks_in_17451 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17451 .link_effect18stacks_in_17451 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17451 .link_effect18stacks_in_17451 a:hover,
#stacks_in_17451 .link_effect18stacks_in_17451 a:focus {
	color: #fff;
}

#stacks_in_17451 .link_effect18stacks_in_17451 a:hover::before,
#stacks_in_17451 .link_effect18stacks_in_17451 a:focus::before,
#stacks_in_17451 .link_effect18stacks_in_17451 a:hover::after,
#stacks_in_17451 .link_effect18stacks_in_17451 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17451 .link_effect19stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect19stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect19stacks_in_17451 a::before,
#stacks_in_17451 .link_effect19stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17451 a {
}

.link_effect19stacks_in_17451 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17451 a:hover::after,
.link_effect19stacks_in_17451 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17451 .link_effect20stacks_in_17451 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17451 .link_effect20stacks_in_17451 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17451 .link_effect20stacks_in_17451 a::before,
#stacks_in_17451 .link_effect20stacks_in_17451 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17451 a {
}

.link_effect20stacks_in_17451 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17451 a:hover::after,
.link_effect20stacks_in_17451 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_16877 article,
#stacks_in_16877 aside,
#stacks_in_16877 details,
#stacks_in_16877 figcaption,
#stacks_in_16877 figure,
#stacks_in_16877 footer,
#stacks_in_16877 header,
#stacks_in_16877 hgroup,
#stacks_in_16877 main,
#stacks_in_16877 nav,
#stacks_in_16877 section,
#stacks_in_16877 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_16877 audio,
#stacks_in_16877 canvas,
#stacks_in_16877 progress,
#stacks_in_16877 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_16877 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_16877 [hidden],
#stacks_in_16877 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_16877 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_16877 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_16877 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_16877 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_16877 code,
#stacks_in_16877 kbd,
#stacks_in_16877 pre,
#stacks_in_16877 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */
%[if ]%
  %[if edit]%
    #stacks_in_16877 {
      background-image: url(../files/images/preview_numbers_background.png), url(../files/images/preview_striped_background.png);
      background-repeat: no-repeat, repeat-y;
      background-size: 100%, 100%;
      background-position: center top, center 100px;
      border-radius: 4px;
      padding-top: 75px;
      padding-bottom: 25px;
      border: 1px solid #e9e9e9;
    }
  %[endif]%
%[endif]%

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

%[if !edit]%
#stacks_in_16877 .wow {
  visibility: hidden;
}
%[endif]%

#stacks_in_16877>ul li {
  padding-bottom: 0 !important;
}

/* iPhone aka SMALL */
@media only screen {
  #stacks_in_16877>ul>li {
    margin-bottom: px;
  }
}



%[if ]%
/* iPad aka MEDIUM */
@media only screen and (min-width: 40.063em) {
  #stacks_in_16877>ul>li {
    margin-bottom: px;
  }
}
%[endif]%


%[if ]%
/* Desktop aka LARGE */
@media only screen and (min-width: 64.063em) {
  #stacks_in_16877>ul>li {
    margin-bottom: px;
  }
}
%[endif]%





/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.   

*/


#stacks_in_16877 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_16877 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_16877 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_16877 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_16877 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_16877 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_16877 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_16877 .left {
  float: left !important; }

#stacks_in_16877 .right {
  float: right !important; }

#stacks_in_16877 .clearfix:before, 
#stacks_in_16877 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_16877 .clearfix:after {
  clear: both; }

#stacks_in_16877 .hide {
  display: none; }

#stacks_in_16877 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_16877 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_16877 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_16877 select {
  width: 100%; }

#stacks_in_16877 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}


#stacks_in_16877 .row {
  max-width: 62.5em; 
}


#stacks_in_16877 .row:before, 
#stacks_in_16877 .row:after {
  content: " ";
  display: table; }

#stacks_in_16877 .row:after {
  clear: both; }

#stacks_in_16877 .row.collapse > .column,
#stacks_in_16877 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_16877 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_16877 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_16877 .row .row:before, 
#stacks_in_16877 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_16877 .row .row:after {
  clear: both; }

#stacks_in_16877 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_16877 .row .row.collapse:before, 
#stacks_in_16877 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_16877 .row .row.collapse:after {
  clear: both; }

#stacks_in_16877 .column,
#stacks_in_16877 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left; }

#stacks_in_16877 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_16877 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_16877 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16877 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16877 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16877 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16877 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16877 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16877 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16877 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16877 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16877 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16877 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16877 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16877 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16877 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16877 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16877 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16877 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16877 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16877 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16877 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16877 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16877 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16877 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16877 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16877 .column,
  #stacks_in_16877 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16877 .small-1 {
    width: 8.33333%; }

  #stacks_in_16877 .small-2 {
    width: 16.66667%; }

  #stacks_in_16877 .small-3 {
    width: 25%; }

  #stacks_in_16877 .small-4 {
    width: 33.33333%; }

  #stacks_in_16877 .small-5 {
    width: 41.66667%; }

  #stacks_in_16877 .small-6 {
    width: 50%; }

  #stacks_in_16877 .small-7 {
    width: 58.33333%; }

  #stacks_in_16877 .small-8 {
    width: 66.66667%; }

  #stacks_in_16877 .small-9 {
    width: 75%; }

  #stacks_in_16877 .small-10 {
    width: 83.33333%; }

  #stacks_in_16877 .small-11 {
    width: 91.66667%; }

  #stacks_in_16877 .small-12 {
    width: 100%; }

  #stacks_in_16877 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16877 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16877 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16877 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16877 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16877 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16877 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16877 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16877 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16877 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16877 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16877 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16877 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16877 .column.small-centered,
  #stacks_in_16877 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16877 .column.small-uncentered,
  #stacks_in_16877 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16877 .column.small-centered:last-child,
  #stacks_in_16877 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_16877 .column.small-uncentered:last-child,
  #stacks_in_16877 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_16877 .column.small-uncentered.opposite,
  #stacks_in_16877 .columns.small-uncentered.opposite {
    float: right; } 
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_16877 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16877 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16877 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16877 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16877 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16877 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16877 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16877 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16877 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16877 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16877 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16877 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16877 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16877 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16877 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16877 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16877 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16877 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16877 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16877 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16877 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16877 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16877 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16877 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16877 .column,
  #stacks_in_16877 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16877 .medium-1 {
    width: 8.33333%; }

  #stacks_in_16877 .medium-2 {
    width: 16.66667%; }

  #stacks_in_16877 .medium-3 {
    width: 25%; }

  #stacks_in_16877 .medium-4 {
    width: 33.33333%; }

  #stacks_in_16877 .medium-5 {
    width: 41.66667%; }

  #stacks_in_16877 .medium-6 {
    width: 50%; }

  #stacks_in_16877 .medium-7 {
    width: 58.33333%; }

  #stacks_in_16877 .medium-8 {
    width: 66.66667%; }

  #stacks_in_16877 .medium-9 {
    width: 75%; }

  #stacks_in_16877 .medium-10 {
    width: 83.33333%; }

  #stacks_in_16877 .medium-11 {
    width: 91.66667%; }

  #stacks_in_16877 .medium-12 {
    width: 100%; }

  #stacks_in_16877 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16877 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16877 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16877 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16877 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16877 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16877 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16877 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16877 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16877 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16877 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16877 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16877 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16877 .column.medium-centered,
  #stacks_in_16877 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16877 .column.medium-uncentered,
  #stacks_in_16877 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16877 .column.medium-centered:last-child,
  #stacks_in_16877 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_16877 .column.medium-uncentered:last-child,
  #stacks_in_16877 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_16877 .column.medium-uncentered.opposite,
  #stacks_in_16877 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_16877 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16877 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16877 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16877 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16877 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16877 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16877 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16877 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16877 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16877 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16877 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16877 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16877 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16877 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16877 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16877 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16877 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16877 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16877 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16877 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16877 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16877 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16877 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16877 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_16877 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16877 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16877 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16877 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16877 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16877 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16877 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16877 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16877 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16877 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16877 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16877 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16877 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16877 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16877 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16877 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16877 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16877 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16877 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16877 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16877 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16877 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16877 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16877 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16877 .column,
  #stacks_in_16877 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16877 .large-1 {
    width: 8.33333%; }

  #stacks_in_16877 .large-2 {
    width: 16.66667%; }

  #stacks_in_16877 .large-3 {
    width: 25%; }

  #stacks_in_16877 .large-4 {
    width: 33.33333%; }

  #stacks_in_16877 .large-5 {
    width: 41.66667%; }

  #stacks_in_16877 .large-6 {
    width: 50%; }

  #stacks_in_16877 .large-7 {
    width: 58.33333%; }

  #stacks_in_16877 .large-8 {
    width: 66.66667%; }

  #stacks_in_16877 .large-9 {
    width: 75%; }

  #stacks_in_16877 .large-10 {
    width: 83.33333%; }

  #stacks_in_16877 .large-11 {
    width: 91.66667%; }

  #stacks_in_16877 .large-12 {
    width: 100%; }

  #stacks_in_16877 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16877 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16877 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16877 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16877 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16877 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16877 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16877 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16877 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16877 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16877 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16877 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16877 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16877 .column.large-centered,
  #stacks_in_16877 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16877 .column.large-uncentered,
  #stacks_in_16877 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16877 .column.large-centered:last-child,
  #stacks_in_16877 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_16877 .column.large-uncentered:last-child,
  #stacks_in_16877 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_16877 .column.large-uncentered.opposite,
  #stacks_in_16877 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_16877 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16877 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16877 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16877 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16877 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16877 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16877 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16877 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16877 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16877 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16877 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16877 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16877 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16877 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16877 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16877 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16877 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16877 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16877 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16877 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16877 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16877 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16877 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16877 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

#stacks_in_16877 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_16877 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_16877 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_16877 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_16877 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_16877 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_16877 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_16877 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16877 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16877 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 40.063em) {
#stacks_in_16877 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16877 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16877 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 64.063em) {
#stacks_in_16877 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16877 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16877 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16877 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

/* Visibility CSS - Foundation */

/* small displays */
@media only screen {
  #stacks_in_16877 .show-for-small-only, #stacks_in_16877 .show-for-small-up, #stacks_in_16877 .show-for-small, #stacks_in_16877 .show-for-small-down, #stacks_in_16877 .hide-for-medium-only, #stacks_in_16877 .hide-for-medium-up, #stacks_in_16877 .hide-for-medium, #stacks_in_16877 .show-for-medium-down, #stacks_in_16877 .hide-for-large-only, #stacks_in_16877 .hide-for-large-up, #stacks_in_16877 .hide-for-large, #stacks_in_16877 .show-for-large-down, #stacks_in_16877 .hide-for-xlarge-only, #stacks_in_16877 .hide-for-xlarge-up, #stacks_in_16877 .hide-for-xxlarge-only, #stacks_in_16877 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16877 .hide-for-small-only, #stacks_in_16877 .hide-for-small-up, #stacks_in_16877 .hide-for-small, #stacks_in_16877 .hide-for-small-down, #stacks_in_16877 .show-for-medium-only, #stacks_in_16877 .show-for-medium-up, #stacks_in_16877 .show-for-medium, #stacks_in_16877 .hide-for-medium-down, #stacks_in_16877 .show-for-large-only, #stacks_in_16877 .show-for-large-up, #stacks_in_16877 .show-for-large, #stacks_in_16877 .hide-for-large-down, #stacks_in_16877 .show-for-xlarge-only, #stacks_in_16877 .show-for-xlarge-up, #stacks_in_16877 .show-for-xxlarge-only, #stacks_in_16877 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16877 .visible-for-small-only, #stacks_in_16877 .visible-for-small-up, #stacks_in_16877 .visible-for-small, #stacks_in_16877 .visible-for-small-down, #stacks_in_16877 .hidden-for-medium-only, #stacks_in_16877 .hidden-for-medium-up, #stacks_in_16877 .hidden-for-medium, #stacks_in_16877 .visible-for-medium-down, #stacks_in_16877 .hidden-for-large-only, #stacks_in_16877 .hidden-for-large-up, #stacks_in_16877 .hidden-for-large, #stacks_in_16877 .visible-for-large-down, #stacks_in_16877 .hidden-for-xlarge-only, #stacks_in_16877 .hidden-for-xlarge-up, #stacks_in_16877 .hidden-for-xxlarge-only, #stacks_in_16877 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16877 .hidden-for-small-only, #stacks_in_16877 .hidden-for-small-up, #stacks_in_16877 .hidden-for-small, #stacks_in_16877 .hidden-for-small-down, #stacks_in_16877 .visible-for-medium-only, #stacks_in_16877 .visible-for-medium-up, #stacks_in_16877 .visible-for-medium, #stacks_in_16877 .hidden-for-medium-down, #stacks_in_16877 .visible-for-large-only, #stacks_in_16877 .visible-for-large-up, #stacks_in_16877 .visible-for-large, #stacks_in_16877 .hidden-for-large-down, #stacks_in_16877 .visible-for-xlarge-only, #stacks_in_16877 .visible-for-xlarge-up, #stacks_in_16877 .visible-for-xxlarge-only, #stacks_in_16877 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16877 table.show-for-small-only, #stacks_in_16877 table.show-for-small-up, #stacks_in_16877 table.show-for-small, #stacks_in_16877 table.show-for-small-down, #stacks_in_16877 table.hide-for-medium-only, #stacks_in_16877 table.hide-for-medium-up, #stacks_in_16877 table.hide-for-medium, #stacks_in_16877 table.show-for-medium-down, #stacks_in_16877 table.hide-for-large-only, #stacks_in_16877 table.hide-for-large-up, #stacks_in_16877 table.hide-for-large, #stacks_in_16877 table.show-for-large-down, #stacks_in_16877 table.hide-for-xlarge-only, #stacks_in_16877 table.hide-for-xlarge-up, #stacks_in_16877 table.hide-for-xxlarge-only, #stacks_in_16877 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16877 thead.show-for-small-only, #stacks_in_16877 thead.show-for-small-up, #stacks_in_16877 thead.show-for-small, #stacks_in_16877 thead.show-for-small-down, #stacks_in_16877 thead.hide-for-medium-only, #stacks_in_16877 thead.hide-for-medium-up, #stacks_in_16877 thead.hide-for-medium, #stacks_in_16877 thead.show-for-medium-down, #stacks_in_16877 thead.hide-for-large-only, #stacks_in_16877 thead.hide-for-large-up, #stacks_in_16877 thead.hide-for-large, #stacks_in_16877 thead.show-for-large-down, #stacks_in_16877 thead.hide-for-xlarge-only, #stacks_in_16877 thead.hide-for-xlarge-up, #stacks_in_16877 thead.hide-for-xxlarge-only, #stacks_in_16877 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.show-for-small-only, #stacks_in_16877 tbody.show-for-small-up, #stacks_in_16877 tbody.show-for-small, #stacks_in_16877 tbody.show-for-small-down, #stacks_in_16877 tbody.hide-for-medium-only, #stacks_in_16877 tbody.hide-for-medium-up, #stacks_in_16877 tbody.hide-for-medium, #stacks_in_16877 tbody.show-for-medium-down, #stacks_in_16877 tbody.hide-for-large-only, #stacks_in_16877 tbody.hide-for-large-up, #stacks_in_16877 tbody.hide-for-large, #stacks_in_16877 tbody.show-for-large-down, #stacks_in_16877 tbody.hide-for-xlarge-only, #stacks_in_16877 tbody.hide-for-xlarge-up, #stacks_in_16877 tbody.hide-for-xxlarge-only, #stacks_in_16877 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16877 tr.show-for-small-only, #stacks_in_16877 tr.show-for-small-up, #stacks_in_16877 tr.show-for-small, #stacks_in_16877 tr.show-for-small-down, #stacks_in_16877 tr.hide-for-medium-only, #stacks_in_16877 tr.hide-for-medium-up, #stacks_in_16877 tr.hide-for-medium, #stacks_in_16877 tr.show-for-medium-down, #stacks_in_16877 tr.hide-for-large-only, #stacks_in_16877 tr.hide-for-large-up, #stacks_in_16877 tr.hide-for-large, #stacks_in_16877 tr.show-for-large-down, #stacks_in_16877 tr.hide-for-xlarge-only, #stacks_in_16877 tr.hide-for-xlarge-up, #stacks_in_16877 tr.hide-for-xxlarge-only, #stacks_in_16877 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16877 th.show-for-small-only, #stacks_in_16877 td.show-for-small-only, #stacks_in_16877 th.show-for-small-up, #stacks_in_16877 td.show-for-small-up, #stacks_in_16877 th.show-for-small, #stacks_in_16877 td.show-for-small, #stacks_in_16877 th.show-for-small-down, #stacks_in_16877 td.show-for-small-down, #stacks_in_16877 th.hide-for-medium-only, #stacks_in_16877 td.hide-for-medium-only, #stacks_in_16877 th.hide-for-medium-up, #stacks_in_16877 td.hide-for-medium-up, #stacks_in_16877 th.hide-for-medium, #stacks_in_16877 td.hide-for-medium, #stacks_in_16877 th.show-for-medium-down, #stacks_in_16877 td.show-for-medium-down, #stacks_in_16877 th.hide-for-large-only, #stacks_in_16877 td.hide-for-large-only, #stacks_in_16877 th.hide-for-large-up, #stacks_in_16877 td.hide-for-large-up, #stacks_in_16877 th.hide-for-large, #stacks_in_16877 td.hide-for-large, #stacks_in_16877 th.show-for-large-down, #stacks_in_16877 td.show-for-large-down, #stacks_in_16877 th.hide-for-xlarge-only, #stacks_in_16877 td.hide-for-xlarge-only, #stacks_in_16877 th.hide-for-xlarge-up, #stacks_in_16877 td.hide-for-xlarge-up, #stacks_in_16877 th.hide-for-xxlarge-only, #stacks_in_16877 td.hide-for-xxlarge-only, #stacks_in_16877 th.hide-for-xxlarge-up, #stacks_in_16877 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* medium displays */
@media only screen and (min-width: 40.063em) {
  #stacks_in_16877 .hide-for-small-only, #stacks_in_16877 .show-for-small-up, #stacks_in_16877 .hide-for-small, #stacks_in_16877 .hide-for-small-down, #stacks_in_16877 .show-for-medium-only, #stacks_in_16877 .show-for-medium-up, #stacks_in_16877 .show-for-medium, #stacks_in_16877 .show-for-medium-down, #stacks_in_16877 .hide-for-large-only, #stacks_in_16877 .hide-for-large-up, #stacks_in_16877 .hide-for-large, #stacks_in_16877 .show-for-large-down, #stacks_in_16877 .hide-for-xlarge-only, #stacks_in_16877 .hide-for-xlarge-up, #stacks_in_16877 .hide-for-xxlarge-only, #stacks_in_16877 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16877 .show-for-small-only, #stacks_in_16877 .hide-for-small-up, #stacks_in_16877 .show-for-small, #stacks_in_16877 .show-for-small-down, #stacks_in_16877 .hide-for-medium-only, #stacks_in_16877 .hide-for-medium-up, #stacks_in_16877 .hide-for-medium, #stacks_in_16877 .hide-for-medium-down, #stacks_in_16877 .show-for-large-only, #stacks_in_16877 .show-for-large-up, #stacks_in_16877 .show-for-large, #stacks_in_16877 .hide-for-large-down, #stacks_in_16877 .show-for-xlarge-only, #stacks_in_16877 .show-for-xlarge-up, #stacks_in_16877 .show-for-xxlarge-only, #stacks_in_16877 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16877 .hidden-for-small-only, #stacks_in_16877 .visible-for-small-up, #stacks_in_16877 .hidden-for-small, #stacks_in_16877 .hidden-for-small-down, #stacks_in_16877 .visible-for-medium-only, #stacks_in_16877 .visible-for-medium-up, #stacks_in_16877 .visible-for-medium, #stacks_in_16877 .visible-for-medium-down, #stacks_in_16877 .hidden-for-large-only, #stacks_in_16877 .hidden-for-large-up, #stacks_in_16877 .hidden-for-large, #stacks_in_16877 .visible-for-large-down, #stacks_in_16877 .hidden-for-xlarge-only, #stacks_in_16877 .hidden-for-xlarge-up, #stacks_in_16877 .hidden-for-xxlarge-only, #stacks_in_16877 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16877 .visible-for-small-only, #stacks_in_16877 .hidden-for-small-up, #stacks_in_16877 .visible-for-small, #stacks_in_16877 .visible-for-small-down, #stacks_in_16877 .hidden-for-medium-only, #stacks_in_16877 .hidden-for-medium-up, #stacks_in_16877 .hidden-for-medium, #stacks_in_16877 .hidden-for-medium-down, #stacks_in_16877 .visible-for-large-only, #stacks_in_16877 .visible-for-large-up, #stacks_in_16877 .visible-for-large, #stacks_in_16877 .hidden-for-large-down, #stacks_in_16877 .visible-for-xlarge-only, #stacks_in_16877 .visible-for-xlarge-up, #stacks_in_16877 .visible-for-xxlarge-only, #stacks_in_16877 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16877 table.hide-for-small-only, #stacks_in_16877 table.show-for-small-up, #stacks_in_16877 table.hide-for-small, #stacks_in_16877 table.hide-for-small-down, #stacks_in_16877 table.show-for-medium-only, #stacks_in_16877 table.show-for-medium-up, #stacks_in_16877 table.show-for-medium, #stacks_in_16877 table.show-for-medium-down, #stacks_in_16877 table.hide-for-large-only, #stacks_in_16877 table.hide-for-large-up, #stacks_in_16877 table.hide-for-large, #stacks_in_16877 table.show-for-large-down, #stacks_in_16877 table.hide-for-xlarge-only, #stacks_in_16877 table.hide-for-xlarge-up, #stacks_in_16877 table.hide-for-xxlarge-only, #stacks_in_16877 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16877 thead.hide-for-small-only, #stacks_in_16877 thead.show-for-small-up, #stacks_in_16877 thead.hide-for-small, #stacks_in_16877 thead.hide-for-small-down, #stacks_in_16877 thead.show-for-medium-only, #stacks_in_16877 thead.show-for-medium-up, #stacks_in_16877 thead.show-for-medium, #stacks_in_16877 thead.show-for-medium-down, #stacks_in_16877 thead.hide-for-large-only, #stacks_in_16877 thead.hide-for-large-up, #stacks_in_16877 thead.hide-for-large, #stacks_in_16877 thead.show-for-large-down, #stacks_in_16877 thead.hide-for-xlarge-only, #stacks_in_16877 thead.hide-for-xlarge-up, #stacks_in_16877 thead.hide-for-xxlarge-only, #stacks_in_16877 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.hide-for-small-only, #stacks_in_16877 tbody.show-for-small-up, #stacks_in_16877 tbody.hide-for-small, #stacks_in_16877 tbody.hide-for-small-down, #stacks_in_16877 tbody.show-for-medium-only, #stacks_in_16877 tbody.show-for-medium-up, #stacks_in_16877 tbody.show-for-medium, #stacks_in_16877 tbody.show-for-medium-down, #stacks_in_16877 tbody.hide-for-large-only, #stacks_in_16877 tbody.hide-for-large-up, #stacks_in_16877 tbody.hide-for-large, #stacks_in_16877 tbody.show-for-large-down, #stacks_in_16877 tbody.hide-for-xlarge-only, #stacks_in_16877 tbody.hide-for-xlarge-up, #stacks_in_16877 tbody.hide-for-xxlarge-only, #stacks_in_16877 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16877 tr.hide-for-small-only, #stacks_in_16877 tr.show-for-small-up, #stacks_in_16877 tr.hide-for-small, #stacks_in_16877 tr.hide-for-small-down, #stacks_in_16877 tr.show-for-medium-only, #stacks_in_16877 tr.show-for-medium-up, #stacks_in_16877 tr.show-for-medium, #stacks_in_16877 tr.show-for-medium-down, #stacks_in_16877 tr.hide-for-large-only, #stacks_in_16877 tr.hide-for-large-up, #stacks_in_16877 tr.hide-for-large, #stacks_in_16877 tr.show-for-large-down, #stacks_in_16877 tr.hide-for-xlarge-only, #stacks_in_16877 tr.hide-for-xlarge-up, #stacks_in_16877 tr.hide-for-xxlarge-only, #stacks_in_16877 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16877 th.hide-for-small-only, #stacks_in_16877 td.hide-for-small-only, #stacks_in_16877 th.show-for-small-up, #stacks_in_16877 td.show-for-small-up, #stacks_in_16877 th.hide-for-small, #stacks_in_16877 td.hide-for-small, #stacks_in_16877 th.hide-for-small-down, #stacks_in_16877 td.hide-for-small-down, #stacks_in_16877 th.show-for-medium-only, #stacks_in_16877 td.show-for-medium-only, #stacks_in_16877 th.show-for-medium-up, #stacks_in_16877 td.show-for-medium-up, #stacks_in_16877 th.show-for-medium, #stacks_in_16877 td.show-for-medium, #stacks_in_16877 th.show-for-medium-down, #stacks_in_16877 td.show-for-medium-down, #stacks_in_16877 th.hide-for-large-only, #stacks_in_16877 td.hide-for-large-only, #stacks_in_16877 th.hide-for-large-up, #stacks_in_16877 td.hide-for-large-up, #stacks_in_16877 th.hide-for-large, #stacks_in_16877 td.hide-for-large, #stacks_in_16877 th.show-for-large-down, #stacks_in_16877 td.show-for-large-down, #stacks_in_16877 th.hide-for-xlarge-only, #stacks_in_16877 td.hide-for-xlarge-only, #stacks_in_16877 th.hide-for-xlarge-up, #stacks_in_16877 td.hide-for-xlarge-up, #stacks_in_16877 th.hide-for-xxlarge-only, #stacks_in_16877 td.hide-for-xxlarge-only, #stacks_in_16877 th.hide-for-xxlarge-up, #stacks_in_16877 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* large displays */
@media only screen and (min-width: 64.063em) {
  #stacks_in_16877 .hide-for-small-only, #stacks_in_16877 .show-for-small-up, #stacks_in_16877 .hide-for-small, #stacks_in_16877 .hide-for-small-down, #stacks_in_16877 .hide-for-medium-only, #stacks_in_16877 .show-for-medium-up, #stacks_in_16877 .hide-for-medium, #stacks_in_16877 .hide-for-medium-down, #stacks_in_16877 .show-for-large-only, #stacks_in_16877 .show-for-large-up, #stacks_in_16877 .show-for-large, #stacks_in_16877 .show-for-large-down, #stacks_in_16877 .hide-for-xlarge-only, #stacks_in_16877 .hide-for-xlarge-up, #stacks_in_16877 .hide-for-xxlarge-only, #stacks_in_16877 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16877 .show-for-small-only, #stacks_in_16877 .hide-for-small-up, #stacks_in_16877 .show-for-small, #stacks_in_16877 .show-for-small-down, #stacks_in_16877 .show-for-medium-only, #stacks_in_16877 .hide-for-medium-up, #stacks_in_16877 .show-for-medium, #stacks_in_16877 .show-for-medium-down, #stacks_in_16877 .hide-for-large-only, #stacks_in_16877 .hide-for-large-up, #stacks_in_16877 .hide-for-large, #stacks_in_16877 .hide-for-large-down, #stacks_in_16877 .show-for-xlarge-only, #stacks_in_16877 .show-for-xlarge-up, #stacks_in_16877 .show-for-xxlarge-only, #stacks_in_16877 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16877 .hidden-for-small-only, #stacks_in_16877 .visible-for-small-up, #stacks_in_16877 .hidden-for-small, #stacks_in_16877 .hidden-for-small-down, #stacks_in_16877 .hidden-for-medium-only, #stacks_in_16877 .visible-for-medium-up, #stacks_in_16877 .hidden-for-medium, #stacks_in_16877 .hidden-for-medium-down, #stacks_in_16877 .visible-for-large-only, #stacks_in_16877 .visible-for-large-up, #stacks_in_16877 .visible-for-large, #stacks_in_16877 .visible-for-large-down, #stacks_in_16877 .hidden-for-xlarge-only, #stacks_in_16877 .hidden-for-xlarge-up, #stacks_in_16877 .hidden-for-xxlarge-only, #stacks_in_16877 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16877 .visible-for-small-only, #stacks_in_16877 .hidden-for-small-up, #stacks_in_16877 .visible-for-small, #stacks_in_16877 .visible-for-small-down, #stacks_in_16877 .visible-for-medium-only, #stacks_in_16877 .hidden-for-medium-up, #stacks_in_16877 .visible-for-medium, #stacks_in_16877 .visible-for-medium-down, #stacks_in_16877 .hidden-for-large-only, #stacks_in_16877 .hidden-for-large-up, #stacks_in_16877 .hidden-for-large, #stacks_in_16877 .hidden-for-large-down, #stacks_in_16877 .visible-for-xlarge-only, #stacks_in_16877 .visible-for-xlarge-up, #stacks_in_16877 .visible-for-xxlarge-only, #stacks_in_16877 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16877 table.hide-for-small-only, #stacks_in_16877 table.show-for-small-up, #stacks_in_16877 table.hide-for-small, #stacks_in_16877 table.hide-for-small-down, #stacks_in_16877 table.hide-for-medium-only, #stacks_in_16877 table.show-for-medium-up, #stacks_in_16877 table.hide-for-medium, #stacks_in_16877 table.hide-for-medium-down, #stacks_in_16877 table.show-for-large-only, #stacks_in_16877 table.show-for-large-up, #stacks_in_16877 table.show-for-large, #stacks_in_16877 table.show-for-large-down, #stacks_in_16877 table.hide-for-xlarge-only, #stacks_in_16877 table.hide-for-xlarge-up, #stacks_in_16877 table.hide-for-xxlarge-only, #stacks_in_16877 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16877 thead.hide-for-small-only, #stacks_in_16877 thead.show-for-small-up, #stacks_in_16877 thead.hide-for-small, #stacks_in_16877 thead.hide-for-small-down, #stacks_in_16877 thead.hide-for-medium-only, #stacks_in_16877 thead.show-for-medium-up, #stacks_in_16877 thead.hide-for-medium, #stacks_in_16877 thead.hide-for-medium-down, #stacks_in_16877 thead.show-for-large-only, #stacks_in_16877 thead.show-for-large-up, #stacks_in_16877 thead.show-for-large, #stacks_in_16877 thead.show-for-large-down, #stacks_in_16877 thead.hide-for-xlarge-only, #stacks_in_16877 thead.hide-for-xlarge-up, #stacks_in_16877 thead.hide-for-xxlarge-only, #stacks_in_16877 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.hide-for-small-only, #stacks_in_16877 tbody.show-for-small-up, #stacks_in_16877 tbody.hide-for-small, #stacks_in_16877 tbody.hide-for-small-down, #stacks_in_16877 tbody.hide-for-medium-only, #stacks_in_16877 tbody.show-for-medium-up, #stacks_in_16877 tbody.hide-for-medium, #stacks_in_16877 tbody.hide-for-medium-down, #stacks_in_16877 tbody.show-for-large-only, #stacks_in_16877 tbody.show-for-large-up, #stacks_in_16877 tbody.show-for-large, #stacks_in_16877 tbody.show-for-large-down, #stacks_in_16877 tbody.hide-for-xlarge-only, #stacks_in_16877 tbody.hide-for-xlarge-up, #stacks_in_16877 tbody.hide-for-xxlarge-only, #stacks_in_16877 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16877 tr.hide-for-small-only, #stacks_in_16877 tr.show-for-small-up, #stacks_in_16877 tr.hide-for-small, #stacks_in_16877 tr.hide-for-small-down, #stacks_in_16877 tr.hide-for-medium-only, #stacks_in_16877 tr.show-for-medium-up, #stacks_in_16877 tr.hide-for-medium, #stacks_in_16877 tr.hide-for-medium-down, #stacks_in_16877 tr.show-for-large-only, #stacks_in_16877 tr.show-for-large-up, #stacks_in_16877 tr.show-for-large, #stacks_in_16877 tr.show-for-large-down, #stacks_in_16877 tr.hide-for-xlarge-only, #stacks_in_16877 tr.hide-for-xlarge-up, #stacks_in_16877 tr.hide-for-xxlarge-only, #stacks_in_16877 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16877 th.hide-for-small-only, #stacks_in_16877 td.hide-for-small-only, #stacks_in_16877 th.show-for-small-up, #stacks_in_16877 td.show-for-small-up, #stacks_in_16877 th.hide-for-small, #stacks_in_16877 td.hide-for-small, #stacks_in_16877 th.hide-for-small-down, #stacks_in_16877 td.hide-for-small-down, #stacks_in_16877 th.hide-for-medium-only, #stacks_in_16877 td.hide-for-medium-only, #stacks_in_16877 th.show-for-medium-up, #stacks_in_16877 td.show-for-medium-up, #stacks_in_16877 th.hide-for-medium, #stacks_in_16877 td.hide-for-medium, #stacks_in_16877 th.hide-for-medium-down, #stacks_in_16877 td.hide-for-medium-down, #stacks_in_16877 th.show-for-large-only, #stacks_in_16877 td.show-for-large-only, #stacks_in_16877 th.show-for-large-up, #stacks_in_16877 td.show-for-large-up, #stacks_in_16877 th.show-for-large, #stacks_in_16877 td.show-for-large, #stacks_in_16877 th.show-for-large-down, #stacks_in_16877 td.show-for-large-down, #stacks_in_16877 th.hide-for-xlarge-only, #stacks_in_16877 td.hide-for-xlarge-only, #stacks_in_16877 th.hide-for-xlarge-up, #stacks_in_16877 td.hide-for-xlarge-up, #stacks_in_16877 th.hide-for-xxlarge-only, #stacks_in_16877 td.hide-for-xxlarge-only, #stacks_in_16877 th.hide-for-xxlarge-up, #stacks_in_16877 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xlarge displays */
@media only screen and (min-width: 90.063em) {
  #stacks_in_16877 .hide-for-small-only, #stacks_in_16877 .show-for-small-up, #stacks_in_16877 .hide-for-small, #stacks_in_16877 .hide-for-small-down, #stacks_in_16877 .hide-for-medium-only, #stacks_in_16877 .show-for-medium-up, #stacks_in_16877 .hide-for-medium, #stacks_in_16877 .hide-for-medium-down, #stacks_in_16877 .hide-for-large-only, #stacks_in_16877 .show-for-large-up, #stacks_in_16877 .hide-for-large, #stacks_in_16877 .hide-for-large-down, #stacks_in_16877 .show-for-xlarge-only, #stacks_in_16877 .show-for-xlarge-up, #stacks_in_16877 .hide-for-xxlarge-only, #stacks_in_16877 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16877 .show-for-small-only, #stacks_in_16877 .hide-for-small-up, #stacks_in_16877 .show-for-small, #stacks_in_16877 .show-for-small-down, #stacks_in_16877 .show-for-medium-only, #stacks_in_16877 .hide-for-medium-up, #stacks_in_16877 .show-for-medium, #stacks_in_16877 .show-for-medium-down, #stacks_in_16877 .show-for-large-only, #stacks_in_16877 .hide-for-large-up, #stacks_in_16877 .show-for-large, #stacks_in_16877 .show-for-large-down, #stacks_in_16877 .hide-for-xlarge-only, #stacks_in_16877 .hide-for-xlarge-up, #stacks_in_16877 .show-for-xxlarge-only, #stacks_in_16877 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16877 .hidden-for-small-only, #stacks_in_16877 .visible-for-small-up, #stacks_in_16877 .hidden-for-small, #stacks_in_16877 .hidden-for-small-down, #stacks_in_16877 .hidden-for-medium-only, #stacks_in_16877 .visible-for-medium-up, #stacks_in_16877 .hidden-for-medium, #stacks_in_16877 .hidden-for-medium-down, #stacks_in_16877 .hidden-for-large-only, #stacks_in_16877 .visible-for-large-up, #stacks_in_16877 .hidden-for-large, #stacks_in_16877 .hidden-for-large-down, #stacks_in_16877 .visible-for-xlarge-only, #stacks_in_16877 .visible-for-xlarge-up, #stacks_in_16877 .hidden-for-xxlarge-only, #stacks_in_16877 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16877 .visible-for-small-only, #stacks_in_16877 .hidden-for-small-up, #stacks_in_16877 .visible-for-small, #stacks_in_16877 .visible-for-small-down, #stacks_in_16877 .visible-for-medium-only, #stacks_in_16877 .hidden-for-medium-up, #stacks_in_16877 .visible-for-medium, #stacks_in_16877 .visible-for-medium-down, #stacks_in_16877 .visible-for-large-only, #stacks_in_16877 .hidden-for-large-up, #stacks_in_16877 .visible-for-large, #stacks_in_16877 .visible-for-large-down, #stacks_in_16877 .hidden-for-xlarge-only, #stacks_in_16877 .hidden-for-xlarge-up, #stacks_in_16877 .visible-for-xxlarge-only, #stacks_in_16877 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16877 table.hide-for-small-only, #stacks_in_16877 table.show-for-small-up, #stacks_in_16877 table.hide-for-small, #stacks_in_16877 table.hide-for-small-down, #stacks_in_16877 table.hide-for-medium-only, #stacks_in_16877 table.show-for-medium-up, #stacks_in_16877 table.hide-for-medium, #stacks_in_16877 table.hide-for-medium-down, #stacks_in_16877 table.hide-for-large-only, #stacks_in_16877 table.show-for-large-up, #stacks_in_16877 table.hide-for-large, #stacks_in_16877 table.hide-for-large-down, #stacks_in_16877 table.show-for-xlarge-only, #stacks_in_16877 table.show-for-xlarge-up, #stacks_in_16877 table.hide-for-xxlarge-only, #stacks_in_16877 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_16877 thead.hide-for-small-only, #stacks_in_16877 thead.show-for-small-up, #stacks_in_16877 thead.hide-for-small, #stacks_in_16877 thead.hide-for-small-down, #stacks_in_16877 thead.hide-for-medium-only, #stacks_in_16877 thead.show-for-medium-up, #stacks_in_16877 thead.hide-for-medium, #stacks_in_16877 thead.hide-for-medium-down, #stacks_in_16877 thead.hide-for-large-only, #stacks_in_16877 thead.show-for-large-up, #stacks_in_16877 thead.hide-for-large, #stacks_in_16877 thead.hide-for-large-down, #stacks_in_16877 thead.show-for-xlarge-only, #stacks_in_16877 thead.show-for-xlarge-up, #stacks_in_16877 thead.hide-for-xxlarge-only, #stacks_in_16877 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.hide-for-small-only, #stacks_in_16877 tbody.show-for-small-up, #stacks_in_16877 tbody.hide-for-small, #stacks_in_16877 tbody.hide-for-small-down, #stacks_in_16877 tbody.hide-for-medium-only, #stacks_in_16877 tbody.show-for-medium-up, #stacks_in_16877 tbody.hide-for-medium, #stacks_in_16877 tbody.hide-for-medium-down, #stacks_in_16877 tbody.hide-for-large-only, #stacks_in_16877 tbody.show-for-large-up, #stacks_in_16877 tbody.hide-for-large, #stacks_in_16877 tbody.hide-for-large-down, #stacks_in_16877 tbody.show-for-xlarge-only, #stacks_in_16877 tbody.show-for-xlarge-up, #stacks_in_16877 tbody.hide-for-xxlarge-only, #stacks_in_16877 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16877 tr.hide-for-small-only, #stacks_in_16877 tr.show-for-small-up, #stacks_in_16877 tr.hide-for-small, #stacks_in_16877 tr.hide-for-small-down, #stacks_in_16877 tr.hide-for-medium-only, #stacks_in_16877 tr.show-for-medium-up, #stacks_in_16877 tr.hide-for-medium, #stacks_in_16877 tr.hide-for-medium-down, #stacks_in_16877 tr.hide-for-large-only, #stacks_in_16877 tr.show-for-large-up, #stacks_in_16877 tr.hide-for-large, #stacks_in_16877 tr.hide-for-large-down, #stacks_in_16877 tr.show-for-xlarge-only, #stacks_in_16877 tr.show-for-xlarge-up, #stacks_in_16877 tr.hide-for-xxlarge-only, #stacks_in_16877 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16877 th.hide-for-small-only, #stacks_in_16877 td.hide-for-small-only, #stacks_in_16877 th.show-for-small-up, #stacks_in_16877 td.show-for-small-up, #stacks_in_16877 th.hide-for-small, #stacks_in_16877 td.hide-for-small, #stacks_in_16877 th.hide-for-small-down, #stacks_in_16877 td.hide-for-small-down, #stacks_in_16877 th.hide-for-medium-only, #stacks_in_16877 td.hide-for-medium-only, #stacks_in_16877 th.show-for-medium-up, #stacks_in_16877 td.show-for-medium-up, #stacks_in_16877 th.hide-for-medium, #stacks_in_16877 td.hide-for-medium, #stacks_in_16877 th.hide-for-medium-down, #stacks_in_16877 td.hide-for-medium-down, #stacks_in_16877 th.hide-for-large-only, #stacks_in_16877 td.hide-for-large-only, #stacks_in_16877 th.show-for-large-up, #stacks_in_16877 td.show-for-large-up, #stacks_in_16877 th.hide-for-large, #stacks_in_16877 td.hide-for-large, #stacks_in_16877 th.hide-for-large-down, #stacks_in_16877 td.hide-for-large-down, #stacks_in_16877 th.show-for-xlarge-only, #stacks_in_16877 td.show-for-xlarge-only, #stacks_in_16877 th.show-for-xlarge-up, #stacks_in_16877 td.show-for-xlarge-up, #stacks_in_16877 th.hide-for-xxlarge-only, #stacks_in_16877 td.hide-for-xxlarge-only, #stacks_in_16877 th.hide-for-xxlarge-up, #stacks_in_16877 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xxlarge displays */
@media only screen and (min-width: 120.063em) {
  #stacks_in_16877 .hide-for-small-only, #stacks_in_16877 .show-for-small-up, #stacks_in_16877 .hide-for-small, #stacks_in_16877 .hide-for-small-down, #stacks_in_16877 .hide-for-medium-only, #stacks_in_16877 .show-for-medium-up, #stacks_in_16877 .hide-for-medium, #stacks_in_16877 .hide-for-medium-down, #stacks_in_16877 .hide-for-large-only, #stacks_in_16877 .show-for-large-up, #stacks_in_16877 .hide-for-large, #stacks_in_16877 .hide-for-large-down, #stacks_in_16877 .hide-for-xlarge-only, #stacks_in_16877 .show-for-xlarge-up, #stacks_in_16877 .show-for-xxlarge-only, #stacks_in_16877 .show-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_16877 .show-for-small-only, #stacks_in_16877 .hide-for-small-up, #stacks_in_16877 .show-for-small, #stacks_in_16877 .show-for-small-down, #stacks_in_16877 .show-for-medium-only, #stacks_in_16877 .hide-for-medium-up, #stacks_in_16877 .show-for-medium, #stacks_in_16877 .show-for-medium-down, #stacks_in_16877 .show-for-large-only, #stacks_in_16877 .hide-for-large-up, #stacks_in_16877 .show-for-large, #stacks_in_16877 .show-for-large-down, #stacks_in_16877 .show-for-xlarge-only, #stacks_in_16877 .hide-for-xlarge-up, #stacks_in_16877 .hide-for-xxlarge-only, #stacks_in_16877 .hide-for-xxlarge-up {
    display: none !important; }

  #stacks_in_16877 .hidden-for-small-only, #stacks_in_16877 .visible-for-small-up, #stacks_in_16877 .hidden-for-small, #stacks_in_16877 .hidden-for-small-down, #stacks_in_16877 .hidden-for-medium-only, #stacks_in_16877 .visible-for-medium-up, #stacks_in_16877 .hidden-for-medium, #stacks_in_16877 .hidden-for-medium-down, #stacks_in_16877 .hidden-for-large-only, #stacks_in_16877 .visible-for-large-up, #stacks_in_16877 .hidden-for-large, #stacks_in_16877 .hidden-for-large-down, #stacks_in_16877 .hidden-for-xlarge-only, #stacks_in_16877 .visible-for-xlarge-up, #stacks_in_16877 .visible-for-xxlarge-only, #stacks_in_16877 .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_16877 .visible-for-small-only, #stacks_in_16877 .hidden-for-small-up, #stacks_in_16877 .visible-for-small, #stacks_in_16877 .visible-for-small-down, #stacks_in_16877 .visible-for-medium-only, #stacks_in_16877 .hidden-for-medium-up, #stacks_in_16877 .visible-for-medium, #stacks_in_16877 .visible-for-medium-down, #stacks_in_16877 .visible-for-large-only, #stacks_in_16877 .hidden-for-large-up, #stacks_in_16877 .visible-for-large, #stacks_in_16877 .visible-for-large-down, #stacks_in_16877 .visible-for-xlarge-only, #stacks_in_16877 .hidden-for-xlarge-up, #stacks_in_16877 .hidden-for-xxlarge-only, #stacks_in_16877 .hidden-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_16877 table.hide-for-small-only, #stacks_in_16877 table.show-for-small-up, #stacks_in_16877 table.hide-for-small, #stacks_in_16877 table.hide-for-small-down, #stacks_in_16877 table.hide-for-medium-only, #stacks_in_16877 table.show-for-medium-up, #stacks_in_16877 table.hide-for-medium, #stacks_in_16877 table.hide-for-medium-down, #stacks_in_16877 table.hide-for-large-only, #stacks_in_16877 table.show-for-large-up, #stacks_in_16877 table.hide-for-large, #stacks_in_16877 table.hide-for-large-down, #stacks_in_16877 table.hide-for-xlarge-only, #stacks_in_16877 table.show-for-xlarge-up, #stacks_in_16877 table.show-for-xxlarge-only, #stacks_in_16877 table.show-for-xxlarge-up {
    display: table; }

  #stacks_in_16877 thead.hide-for-small-only, #stacks_in_16877 thead.show-for-small-up, #stacks_in_16877 thead.hide-for-small, #stacks_in_16877 thead.hide-for-small-down, #stacks_in_16877 thead.hide-for-medium-only, #stacks_in_16877 thead.show-for-medium-up, #stacks_in_16877 thead.hide-for-medium, #stacks_in_16877 thead.hide-for-medium-down, #stacks_in_16877 thead.hide-for-large-only, #stacks_in_16877 thead.show-for-large-up, #stacks_in_16877 thead.hide-for-large, #stacks_in_16877 thead.hide-for-large-down, #stacks_in_16877 thead.hide-for-xlarge-only, #stacks_in_16877 thead.show-for-xlarge-up, #stacks_in_16877 thead.show-for-xxlarge-only, #stacks_in_16877 thead.show-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.hide-for-small-only, #stacks_in_16877 tbody.show-for-small-up, #stacks_in_16877 tbody.hide-for-small, #stacks_in_16877 tbody.hide-for-small-down, #stacks_in_16877 tbody.hide-for-medium-only, #stacks_in_16877 tbody.show-for-medium-up, #stacks_in_16877 tbody.hide-for-medium, #stacks_in_16877 tbody.hide-for-medium-down, #stacks_in_16877 tbody.hide-for-large-only, #stacks_in_16877 tbody.show-for-large-up, #stacks_in_16877 tbody.hide-for-large, #stacks_in_16877 tbody.hide-for-large-down, #stacks_in_16877 tbody.hide-for-xlarge-only, #stacks_in_16877 tbody.show-for-xlarge-up, #stacks_in_16877 tbody.show-for-xxlarge-only, #stacks_in_16877 tbody.show-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_16877 tr.hide-for-small-only, #stacks_in_16877 tr.show-for-small-up, #stacks_in_16877 tr.hide-for-small, #stacks_in_16877 tr.hide-for-small-down, #stacks_in_16877 tr.hide-for-medium-only, #stacks_in_16877 tr.show-for-medium-up, #stacks_in_16877 tr.hide-for-medium, #stacks_in_16877 tr.hide-for-medium-down, #stacks_in_16877 tr.hide-for-large-only, #stacks_in_16877 tr.show-for-large-up, #stacks_in_16877 tr.hide-for-large, #stacks_in_16877 tr.hide-for-large-down, #stacks_in_16877 tr.hide-for-xlarge-only, #stacks_in_16877 tr.show-for-xlarge-up, #stacks_in_16877 tr.show-for-xxlarge-only, #stacks_in_16877 tr.show-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_16877 th.hide-for-small-only, #stacks_in_16877 td.hide-for-small-only, #stacks_in_16877 th.show-for-small-up, #stacks_in_16877 td.show-for-small-up, #stacks_in_16877 th.hide-for-small, #stacks_in_16877 td.hide-for-small, #stacks_in_16877 th.hide-for-small-down, #stacks_in_16877 td.hide-for-small-down, #stacks_in_16877 th.hide-for-medium-only, #stacks_in_16877 td.hide-for-medium-only, #stacks_in_16877 th.show-for-medium-up, #stacks_in_16877 td.show-for-medium-up, #stacks_in_16877 th.hide-for-medium, #stacks_in_16877 td.hide-for-medium, #stacks_in_16877 th.hide-for-medium-down, #stacks_in_16877 td.hide-for-medium-down, #stacks_in_16877 th.hide-for-large-only, #stacks_in_16877 td.hide-for-large-only, #stacks_in_16877 th.show-for-large-up, #stacks_in_16877 td.show-for-large-up, #stacks_in_16877 th.hide-for-large, #stacks_in_16877 td.hide-for-large, #stacks_in_16877 th.hide-for-large-down, #stacks_in_16877 td.hide-for-large-down, #stacks_in_16877 th.hide-for-xlarge-only, #stacks_in_16877 td.hide-for-xlarge-only, #stacks_in_16877 th.show-for-xlarge-up, #stacks_in_16877 td.show-for-xlarge-up, #stacks_in_16877 th.show-for-xxlarge-only, #stacks_in_16877 td.show-for-xxlarge-only, #stacks_in_16877 th.show-for-xxlarge-up, #stacks_in_16877 td.show-for-xxlarge-up {
    display: table-cell !important; } }
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_16877 table.hide-for-landscape, #stacks_in_16877 table.show-for-portrait {
  display: table; }

#stacks_in_16877 thead.hide-for-landscape, #stacks_in_16877 thead.show-for-portrait {
  display: table-header-group !important; }

#stacks_in_16877 tbody.hide-for-landscape, #stacks_in_16877 tbody.show-for-portrait {
  display: table-row-group !important; }

#stacks_in_16877 tr.hide-for-landscape, #stacks_in_16877 tr.show-for-portrait {
  display: table-row !important; }

#stacks_in_16877 td.hide-for-landscape, #stacks_in_16877 td.show-for-portrait,
#stacks_in_16877 th.hide-for-landscape,
#stacks_in_16877 th.show-for-portrait {
  display: table-cell !important; }

@media only screen and (orientation: landscape) {
  #stacks_in_16877 .show-for-landscape,
  #stacks_in_16877 .hide-for-portrait {
    display: inherit !important; }

  #stacks_in_16877 .hide-for-landscape,
  #stacks_in_16877 .show-for-portrait {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_16877 table.show-for-landscape, #stacks_in_16877 table.hide-for-portrait {
    display: table; }

  #stacks_in_16877 thead.show-for-landscape, #stacks_in_16877 thead.hide-for-portrait {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.show-for-landscape, #stacks_in_16877 tbody.hide-for-portrait {
    display: table-row-group !important; }

  #stacks_in_16877 tr.show-for-landscape, #stacks_in_16877 tr.hide-for-portrait {
    display: table-row !important; }

  #stacks_in_16877 td.show-for-landscape, #stacks_in_16877 td.hide-for-portrait,
  #stacks_in_16877 th.show-for-landscape,
  #stacks_in_16877 th.hide-for-portrait {
    display: table-cell !important; } }
@media only screen and (orientation: portrait) {
  #stacks_in_16877 .show-for-portrait,
  #stacks_in_16877 .hide-for-landscape {
    display: inherit !important; }

  #stacks_in_16877 .hide-for-portrait,
  #stacks_in_16877 .show-for-landscape {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_16877 table.show-for-portrait, #stacks_in_16877 table.hide-for-landscape {
    display: table; }

  #stacks_in_16877 thead.show-for-portrait, #stacks_in_16877 thead.hide-for-landscape {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.show-for-portrait, #stacks_in_16877 tbody.hide-for-landscape {
    display: table-row-group !important; }

  #stacks_in_16877 tr.show-for-portrait, #stacks_in_16877 tr.hide-for-landscape {
    display: table-row !important; }

  #stacks_in_16877 td.show-for-portrait, #stacks_in_16877 td.hide-for-landscape,
  #stacks_in_16877 th.show-for-portrait,
  #stacks_in_16877 th.hide-for-landscape {
    display: table-cell !important; } }
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important; }

.hide-for-touch {
  display: inherit !important; }

.touch #stacks_in_16877 .show-for-touch {
  display: inherit !important; }

.touch #stacks_in_16877 .hide-for-touch {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_16877 table.hide-for-touch {
  display: table; }

.touch #stacks_in_16877 table.show-for-touch {
  display: table; }

#stacks_in_16877 thead.hide-for-touch {
  display: table-header-group !important; }

.touch #stacks_in_16877 thead.show-for-touch {
  display: table-header-group !important; }

#stacks_in_16877 tbody.hide-for-touch {
  display: table-row-group !important; }

.touch #stacks_in_16877 tbody.show-for-touch {
  display: table-row-group !important; }

#stacks_in_16877 tr.hide-for-touch {
  display: table-row !important; }

.touch #stacks_in_16877 tr.show-for-touch {
  display: table-row !important; }

#stacks_in_16877 td.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_16877 td.show-for-touch {
  display: table-cell !important; }

#stacks_in_16877 th.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_16877 th.show-for-touch {
  display: table-cell !important; }

/* Print visibility */
@media print {
  #stacks_in_16877 .show-for-print {
    display: block; }

  #stacks_in_16877 .hide-for-print {
    display: none; }

  #stacks_in_16877 table.show-for-print {
    display: table; }

  #stacks_in_16877 thead.show-for-print {
    display: table-header-group !important; }

  #stacks_in_16877 tbody.show-for-print {
    display: table-row-group !important; }

  #stacks_in_16877 tr.show-for-print {
    display: table-row !important; }

  #stacks_in_16877 td.show-for-print {
    display: table-cell !important; }

  #stacks_in_16877 th.show-for-print {
    display: table-cell !important; } }
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18362 a:before, .link_effect1stacks_in_18362 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #999999 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18362 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18362 a:hover:before, .link_effect1stacks_in_18362 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18362 a   {
	
	color: #999999 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18362 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18362 .link_effect2stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18362 .link_effect2stacks_in_18362 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18362 .link_effect3stacks_in_18362 {
  	text-decoration: none;
}

#stacks_in_18362 .link_effect3stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18362 .link_effect3stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect3stacks_in_18362 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18362 .link_effect4stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect4stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect4stacks_in_18362 a::before,
#stacks_in_18362 .link_effect%stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect4stacks_in_18362 {
}

#stacks_in_18362 .link_effect4stacks_in_18362 a {
	font-weight:normal;;
}

#stacks_in_18362 .link_effect4stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18362 .link_effect4stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect4stacks_in_18362 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18362 .link_effect5stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect5stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect5stacks_in_18362 a::before,
#stacks_in_18362 .link_effect5stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect5stacks_in_18362 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18362 .link_effect5stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18362 .link_effect5stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect5stacks_in_18362 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18362 .link_effect6stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect6stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect6stacks_in_18362 a::before,
#stacks_in_18362 .link_effect6stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect6stacks_in_18362 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18362 .link_effect6stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18362 .link_effect6stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect6stacks_in_18362 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18362 .link_effect7stacks_in_18362 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect7stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect7stacks_in_18362 a::before,
#stacks_in_18362 .link_effect7stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect7stacks_in_18362 {
	position: relative;
}

#stacks_in_18362 .link_effect7stacks_in_18362 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18362 .link_effect7stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18362 .link_effect7stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect7stacks_in_18362 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18362 .link_effect8stacks_in_18362 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect8stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect8stacks_in_18362 a::before,
#stacks_in_18362 .link_effect8stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18362 .link_effect8stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18362 .link_effect8stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect8stacks_in_18362 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18362 .link_effect8stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18362 .link_effect8stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect8stacks_in_18362 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18362 .link_effect9stacks_in_18362 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect9stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect9stacks_in_18362 a::before,
#stacks_in_18362 .link_effect9stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect9stacks_in_18362 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18362 .link_effect9stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect9stacks_in_18362 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18362 .link_effect9stacks_in_18362 a::before,
#stacks_in_18362 .link_effect9stacks_in_18362 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18362 .link_effect9stacks_in_18362 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18362 .link_effect9stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect9stacks_in_18362 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18362 .link_effect9stacks_in_18362 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18362 .link_effect10stacks_in_18362 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect10stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect10stacks_in_18362 a::before,
#stacks_in_18362 .link_effect10stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect10stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18362 .link_effect10stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect10stacks_in_18362 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18362 .link_effect10stacks_in_18362 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18362 .link_effect10stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect10stacks_in_18362 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18362 .link_effect11stacks_in_18362 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18362 .link_effect11stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect11stacks_in_18362 a::before,
#stacks_in_18362 .link_effect11stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect11stacks_in_18362 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18362 .link_effect11stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect11stacks_in_18362 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18362 .link_effect11stacks_in_18362 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18362 .link_effect11stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect11stacks_in_18362 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18362 .link_effect12stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect12stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect12stacks_in_18362 a::before,
#stacks_in_18362 .link_effect12stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect12stacks_in_18362 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18362 .link_effect12stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect12stacks_in_18362 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18362 .link_effect12stacks_in_18362 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18362 .link_effect12stacks_in_18362 a,
#stacks_in_18362 .link_effect12stacks_in_18362 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18362 .link_effect12stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect12stacks_in_18362 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18362 .link_effect13stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect13stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect13stacks_in_18362 a::before,
#stacks_in_18362 .link_effect13stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect13stacks_in_18362 {
}

#stacks_in_18362 .link_effect13stacks_in_18362 a {
	
	color: #999999 !important;
		
	font-weight:normal;;
}

#stacks_in_18362 .link_effect13stacks_in_18362 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18362 .link_effect13stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect13stacks_in_18362 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18362 .link_effect14stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect14stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect14stacks_in_18362 a::before,
#stacks_in_18362 .link_effect14stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect14stacks_in_18362 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18362 .link_effect14stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect14stacks_in_18362 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18362 .link_effect14stacks_in_18362 a::before,
#stacks_in_18362 .link_effect14stacks_in_18362 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18362 .link_effect14stacks_in_18362 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18362 .link_effect14stacks_in_18362 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18362 .link_effect14stacks_in_18362 a:hover::after,
#stacks_in_18362 .link_effect14stacks_in_18362 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18362 .link_effect15stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect15stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect15stacks_in_18362 a::before,
#stacks_in_18362 .link_effect15stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect15stacks_in_18362 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18362 .link_effect15stacks_in_18362 a::before,
#stacks_in_18362 .link_effect15stacks_in_18362 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18362 .link_effect15stacks_in_18362 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18362 .link_effect15stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect15stacks_in_18362 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18362 .link_effect15stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect15stacks_in_18362 a:focus::before,
#stacks_in_18362 .link_effect15stacks_in_18362 a:hover::after,
#stacks_in_18362 .link_effect15stacks_in_18362 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18362 .link_effect15stacks_in_18362 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18362 .link_effect15stacks_in_18362 a:hover::after,
#stacks_in_18362 .link_effect15stacks_in_18362 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18362 .link_effect16stacks_in_18362 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a::before,
#stacks_in_18362 .link_effect16stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a:hover {
	color: #d04c3f;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a::before,
#stacks_in_18362 .link_effect16stacks_in_18362 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18362 .link_effect16stacks_in_18362 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18362 .link_effect16stacks_in_18362 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18362 .link_effect16stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect16stacks_in_18362 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18362 .link_effect17stacks_in_18362 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #999999 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18362 .link_effect17stacks_in_18362 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #999999 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18362 .link_effect17stacks_in_18362 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18362 .link_effect18stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect18stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect18stacks_in_18362 a::before,
#stacks_in_18362 .link_effect18stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18362 .link_effect18stacks_in_18362 {
}

#stacks_in_18362 .link_effect18stacks_in_18362 a {
	padding: 0 ;
	color: #999999;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18362 .link_effect18stacks_in_18362 a::before,
#stacks_in_18362 .link_effect18stacks_in_18362 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #999999;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18362 .link_effect18stacks_in_18362 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18362 .link_effect18stacks_in_18362 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18362 .link_effect18stacks_in_18362 a:hover,
#stacks_in_18362 .link_effect18stacks_in_18362 a:focus {
	color: #fff;
}

#stacks_in_18362 .link_effect18stacks_in_18362 a:hover::before,
#stacks_in_18362 .link_effect18stacks_in_18362 a:focus::before,
#stacks_in_18362 .link_effect18stacks_in_18362 a:hover::after,
#stacks_in_18362 .link_effect18stacks_in_18362 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18362 .link_effect19stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect19stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect19stacks_in_18362 a::before,
#stacks_in_18362 .link_effect19stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18362 a {
}

.link_effect19stacks_in_18362 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18362 a:hover::after,
.link_effect19stacks_in_18362 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18362 .link_effect20stacks_in_18362 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18362 .link_effect20stacks_in_18362 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #999999 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18362 .link_effect20stacks_in_18362 a::before,
#stacks_in_18362 .link_effect20stacks_in_18362 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18362 a {
}

.link_effect20stacks_in_18362 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18362 a:hover::after,
.link_effect20stacks_in_18362 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_18364 article,
#stacks_in_18364 aside,
#stacks_in_18364 details,
#stacks_in_18364 figcaption,
#stacks_in_18364 figure,
#stacks_in_18364 footer,
#stacks_in_18364 header,
#stacks_in_18364 hgroup,
#stacks_in_18364 main,
#stacks_in_18364 nav,
#stacks_in_18364 section,
#stacks_in_18364 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_18364 audio,
#stacks_in_18364 canvas,
#stacks_in_18364 progress,
#stacks_in_18364 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_18364 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_18364 [hidden],
#stacks_in_18364 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_18364 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_18364 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_18364 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_18364 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_18364 code,
#stacks_in_18364 kbd,
#stacks_in_18364 pre,
#stacks_in_18364 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_18364 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_18364 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_18364 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_18364 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_18364 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_18364 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_18364 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_18364 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_18364 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_18364 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_18364 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_18364 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_18364 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_18364 .left {
  float: left !important; }

#stacks_in_18364 .right {
  float: right !important; }

#stacks_in_18364 .clearfix:before,
#stacks_in_18364 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_18364 .clearfix:after {
  clear: both; }

#stacks_in_18364 .hide {
  display: none; }

#stacks_in_18364 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_18364 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_18364 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_18364 select {
  width: 100%; }

#stacks_in_18364 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_18364 .row:before,
#stacks_in_18364 .row:after {
  content: " ";
  display: table; }

#stacks_in_18364 .row:after {
  clear: both; }

#stacks_in_18364 .row.collapse > .column,
#stacks_in_18364 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_18364 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_18364 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_18364 .row .row:before,
#stacks_in_18364 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_18364 .row .row:after {
  clear: both; }

#stacks_in_18364 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_18364 .row .row.collapse:before,
#stacks_in_18364 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_18364 .row .row.collapse:after {
  clear: both; }

#stacks_in_18364 .column,
#stacks_in_18364 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_18364 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_18364 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_18364 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18364 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18364 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18364 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18364 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18364 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18364 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18364 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18364 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18364 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18364 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18364 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18364 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18364 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18364 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18364 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18364 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18364 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18364 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18364 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18364 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18364 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18364 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18364 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18364 .column,
  #stacks_in_18364 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18364 .small-1 {
    width: 8.33333%; }

  #stacks_in_18364 .small-2 {
    width: 16.66667%; }

  #stacks_in_18364 .small-3 {
    width: 25%; }

  #stacks_in_18364 .small-4 {
    width: 33.33333%; }

  #stacks_in_18364 .small-5 {
    width: 41.66667%; }

  #stacks_in_18364 .small-6 {
    width: 50%; }

  #stacks_in_18364 .small-7 {
    width: 58.33333%; }

  #stacks_in_18364 .small-8 {
    width: 66.66667%; }

  #stacks_in_18364 .small-9 {
    width: 75%; }

  #stacks_in_18364 .small-10 {
    width: 83.33333%; }

  #stacks_in_18364 .small-11 {
    width: 91.66667%; }

  #stacks_in_18364 .small-12 {
    width: 100%; }

  #stacks_in_18364 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18364 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18364 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18364 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18364 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18364 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18364 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18364 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18364 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18364 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18364 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18364 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18364 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18364 .column.small-centered,
  #stacks_in_18364 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18364 .column.small-uncentered,
  #stacks_in_18364 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18364 .column.small-centered:last-child,
  #stacks_in_18364 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_18364 .column.small-uncentered:last-child,
  #stacks_in_18364 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_18364 .column.small-uncentered.opposite,
  #stacks_in_18364 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_18364 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18364 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18364 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18364 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18364 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18364 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18364 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18364 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18364 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18364 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18364 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18364 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18364 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18364 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18364 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18364 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18364 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18364 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18364 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18364 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18364 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18364 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18364 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18364 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18364 .column,
  #stacks_in_18364 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18364 .medium-1 {
    width: 8.33333%; }

  #stacks_in_18364 .medium-2 {
    width: 16.66667%; }

  #stacks_in_18364 .medium-3 {
    width: 25%; }

  #stacks_in_18364 .medium-4 {
    width: 33.33333%; }

  #stacks_in_18364 .medium-5 {
    width: 41.66667%; }

  #stacks_in_18364 .medium-6 {
    width: 50%; }

  #stacks_in_18364 .medium-7 {
    width: 58.33333%; }

  #stacks_in_18364 .medium-8 {
    width: 66.66667%; }

  #stacks_in_18364 .medium-9 {
    width: 75%; }

  #stacks_in_18364 .medium-10 {
    width: 83.33333%; }

  #stacks_in_18364 .medium-11 {
    width: 91.66667%; }

  #stacks_in_18364 .medium-12 {
    width: 100%; }

  #stacks_in_18364 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18364 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18364 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18364 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18364 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18364 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18364 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18364 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18364 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18364 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18364 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18364 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18364 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18364 .column.medium-centered,
  #stacks_in_18364 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18364 .column.medium-uncentered,
  #stacks_in_18364 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18364 .column.medium-centered:last-child,
  #stacks_in_18364 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_18364 .column.medium-uncentered:last-child,
  #stacks_in_18364 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_18364 .column.medium-uncentered.opposite,
  #stacks_in_18364 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_18364 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18364 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18364 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18364 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18364 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18364 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18364 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18364 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18364 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18364 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18364 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18364 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18364 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18364 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18364 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18364 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18364 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18364 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18364 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18364 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18364 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18364 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18364 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18364 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_18364 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18364 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18364 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18364 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18364 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18364 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18364 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18364 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18364 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18364 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18364 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18364 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18364 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18364 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18364 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18364 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18364 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18364 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18364 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18364 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18364 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18364 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18364 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18364 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18364 .column,
  #stacks_in_18364 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18364 .large-1 {
    width: 8.33333%; }

  #stacks_in_18364 .large-2 {
    width: 16.66667%; }

  #stacks_in_18364 .large-3 {
    width: 25%; }

  #stacks_in_18364 .large-4 {
    width: 33.33333%; }

  #stacks_in_18364 .large-5 {
    width: 41.66667%; }

  #stacks_in_18364 .large-6 {
    width: 50%; }

  #stacks_in_18364 .large-7 {
    width: 58.33333%; }

  #stacks_in_18364 .large-8 {
    width: 66.66667%; }

  #stacks_in_18364 .large-9 {
    width: 75%; }

  #stacks_in_18364 .large-10 {
    width: 83.33333%; }

  #stacks_in_18364 .large-11 {
    width: 91.66667%; }

  #stacks_in_18364 .large-12 {
    width: 100%; }

  #stacks_in_18364 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18364 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18364 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18364 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18364 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18364 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18364 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18364 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18364 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18364 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18364 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18364 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18364 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18364 .column.large-centered,
  #stacks_in_18364 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18364 .column.large-uncentered,
  #stacks_in_18364 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18364 .column.large-centered:last-child,
  #stacks_in_18364 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_18364 .column.large-uncentered:last-child,
  #stacks_in_18364 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_18364 .column.large-uncentered.opposite,
  #stacks_in_18364 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_18364 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18364 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18364 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18364 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18364 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18364 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18364 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18364 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18364 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18364 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18364 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18364 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18364 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18364 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18364 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18364 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18364 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18364 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18364 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18364 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18364 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18364 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18364 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18364 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_18364 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_18364 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_18364 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_18364 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_18364 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_18364 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_18364 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_18364 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18364 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18364 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_18364 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18364 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18364 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_18364 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18364 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18364 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18364 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_out_18364 {
	width: 35%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18460Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18460Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18460Calligrapher h6, .stacks_in_18460Calligrapher h5, .stacks_in_18460Calligrapher h4, .stacks_in_18460Calligrapher h3, .stacks_in_18460Calligrapher h2, .stacks_in_18460Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18460Calligrapher, .stacks_in_18460Calligrapher h1, .stacks_in_18460Calligrapher h2, .stacks_in_18460Calligrapher h3, .stacks_in_18460Calligrapher h4, .stacks_in_18460Calligrapher h5, .stacks_in_18460Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18460targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18460Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18460Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18460Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18460Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18460 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18462 a:before, .link_effect1stacks_in_18462 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18462 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18462 a:hover:before, .link_effect1stacks_in_18462 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18462 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18462 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18462 .link_effect2stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18462 .link_effect2stacks_in_18462 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18462 .link_effect3stacks_in_18462 {
  	text-decoration: none;
}

#stacks_in_18462 .link_effect3stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18462 .link_effect3stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect3stacks_in_18462 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18462 .link_effect4stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect4stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect4stacks_in_18462 a::before,
#stacks_in_18462 .link_effect%stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect4stacks_in_18462 {
}

#stacks_in_18462 .link_effect4stacks_in_18462 a {
	font-weight:normal;;
}

#stacks_in_18462 .link_effect4stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18462 .link_effect4stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect4stacks_in_18462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18462 .link_effect5stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect5stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect5stacks_in_18462 a::before,
#stacks_in_18462 .link_effect5stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect5stacks_in_18462 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18462 .link_effect5stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18462 .link_effect5stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect5stacks_in_18462 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18462 .link_effect6stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect6stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect6stacks_in_18462 a::before,
#stacks_in_18462 .link_effect6stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect6stacks_in_18462 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18462 .link_effect6stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18462 .link_effect6stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect6stacks_in_18462 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18462 .link_effect7stacks_in_18462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect7stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect7stacks_in_18462 a::before,
#stacks_in_18462 .link_effect7stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect7stacks_in_18462 {
	position: relative;
}

#stacks_in_18462 .link_effect7stacks_in_18462 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18462 .link_effect7stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18462 .link_effect7stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect7stacks_in_18462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18462 .link_effect8stacks_in_18462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect8stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect8stacks_in_18462 a::before,
#stacks_in_18462 .link_effect8stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18462 .link_effect8stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18462 .link_effect8stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect8stacks_in_18462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18462 .link_effect8stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18462 .link_effect8stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect8stacks_in_18462 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18462 .link_effect9stacks_in_18462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect9stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect9stacks_in_18462 a::before,
#stacks_in_18462 .link_effect9stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect9stacks_in_18462 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18462 .link_effect9stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect9stacks_in_18462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18462 .link_effect9stacks_in_18462 a::before,
#stacks_in_18462 .link_effect9stacks_in_18462 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18462 .link_effect9stacks_in_18462 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18462 .link_effect9stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect9stacks_in_18462 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18462 .link_effect9stacks_in_18462 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18462 .link_effect10stacks_in_18462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect10stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect10stacks_in_18462 a::before,
#stacks_in_18462 .link_effect10stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect10stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18462 .link_effect10stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect10stacks_in_18462 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18462 .link_effect10stacks_in_18462 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18462 .link_effect10stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect10stacks_in_18462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18462 .link_effect11stacks_in_18462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18462 .link_effect11stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect11stacks_in_18462 a::before,
#stacks_in_18462 .link_effect11stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect11stacks_in_18462 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18462 .link_effect11stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect11stacks_in_18462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18462 .link_effect11stacks_in_18462 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18462 .link_effect11stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect11stacks_in_18462 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18462 .link_effect12stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect12stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect12stacks_in_18462 a::before,
#stacks_in_18462 .link_effect12stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect12stacks_in_18462 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18462 .link_effect12stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect12stacks_in_18462 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18462 .link_effect12stacks_in_18462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18462 .link_effect12stacks_in_18462 a,
#stacks_in_18462 .link_effect12stacks_in_18462 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18462 .link_effect12stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect12stacks_in_18462 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18462 .link_effect13stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect13stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect13stacks_in_18462 a::before,
#stacks_in_18462 .link_effect13stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect13stacks_in_18462 {
}

#stacks_in_18462 .link_effect13stacks_in_18462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18462 .link_effect13stacks_in_18462 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18462 .link_effect13stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect13stacks_in_18462 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18462 .link_effect14stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect14stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect14stacks_in_18462 a::before,
#stacks_in_18462 .link_effect14stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect14stacks_in_18462 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18462 .link_effect14stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect14stacks_in_18462 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18462 .link_effect14stacks_in_18462 a::before,
#stacks_in_18462 .link_effect14stacks_in_18462 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18462 .link_effect14stacks_in_18462 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18462 .link_effect14stacks_in_18462 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18462 .link_effect14stacks_in_18462 a:hover::after,
#stacks_in_18462 .link_effect14stacks_in_18462 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18462 .link_effect15stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect15stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect15stacks_in_18462 a::before,
#stacks_in_18462 .link_effect15stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect15stacks_in_18462 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18462 .link_effect15stacks_in_18462 a::before,
#stacks_in_18462 .link_effect15stacks_in_18462 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18462 .link_effect15stacks_in_18462 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18462 .link_effect15stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect15stacks_in_18462 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18462 .link_effect15stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect15stacks_in_18462 a:focus::before,
#stacks_in_18462 .link_effect15stacks_in_18462 a:hover::after,
#stacks_in_18462 .link_effect15stacks_in_18462 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18462 .link_effect15stacks_in_18462 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18462 .link_effect15stacks_in_18462 a:hover::after,
#stacks_in_18462 .link_effect15stacks_in_18462 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18462 .link_effect16stacks_in_18462 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a::before,
#stacks_in_18462 .link_effect16stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a:hover {
	color: #d04c3f;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a::before,
#stacks_in_18462 .link_effect16stacks_in_18462 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18462 .link_effect16stacks_in_18462 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18462 .link_effect16stacks_in_18462 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18462 .link_effect16stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect16stacks_in_18462 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18462 .link_effect17stacks_in_18462 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18462 .link_effect17stacks_in_18462 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18462 .link_effect17stacks_in_18462 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18462 .link_effect18stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect18stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect18stacks_in_18462 a::before,
#stacks_in_18462 .link_effect18stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18462 .link_effect18stacks_in_18462 {
}

#stacks_in_18462 .link_effect18stacks_in_18462 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18462 .link_effect18stacks_in_18462 a::before,
#stacks_in_18462 .link_effect18stacks_in_18462 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18462 .link_effect18stacks_in_18462 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18462 .link_effect18stacks_in_18462 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18462 .link_effect18stacks_in_18462 a:hover,
#stacks_in_18462 .link_effect18stacks_in_18462 a:focus {
	color: #fff;
}

#stacks_in_18462 .link_effect18stacks_in_18462 a:hover::before,
#stacks_in_18462 .link_effect18stacks_in_18462 a:focus::before,
#stacks_in_18462 .link_effect18stacks_in_18462 a:hover::after,
#stacks_in_18462 .link_effect18stacks_in_18462 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18462 .link_effect19stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect19stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect19stacks_in_18462 a::before,
#stacks_in_18462 .link_effect19stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18462 a {
}

.link_effect19stacks_in_18462 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18462 a:hover::after,
.link_effect19stacks_in_18462 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18462 .link_effect20stacks_in_18462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18462 .link_effect20stacks_in_18462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18462 .link_effect20stacks_in_18462 a::before,
#stacks_in_18462 .link_effect20stacks_in_18462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18462 a {
}

.link_effect20stacks_in_18462 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18462 a:hover::after,
.link_effect20stacks_in_18462 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18464 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18466 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18466 .borderbuttonthing, #stacks_in_18466 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18466 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18466 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18466 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_18218 article,
#stacks_in_18218 aside,
#stacks_in_18218 details,
#stacks_in_18218 figcaption,
#stacks_in_18218 figure,
#stacks_in_18218 footer,
#stacks_in_18218 header,
#stacks_in_18218 hgroup,
#stacks_in_18218 main,
#stacks_in_18218 nav,
#stacks_in_18218 section,
#stacks_in_18218 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_18218 audio,
#stacks_in_18218 canvas,
#stacks_in_18218 progress,
#stacks_in_18218 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_18218 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_18218 [hidden],
#stacks_in_18218 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_18218 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_18218 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_18218 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_18218 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_18218 code,
#stacks_in_18218 kbd,
#stacks_in_18218 pre,
#stacks_in_18218 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_18218 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_18218 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_18218 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_18218 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_18218 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_18218 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_18218 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_18218 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_18218 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_18218 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_18218 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_18218 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_18218 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_18218 .left {
  float: left !important; }

#stacks_in_18218 .right {
  float: right !important; }

#stacks_in_18218 .clearfix:before,
#stacks_in_18218 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_18218 .clearfix:after {
  clear: both; }

#stacks_in_18218 .hide {
  display: none; }

#stacks_in_18218 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_18218 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_18218 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_18218 select {
  width: 100%; }

#stacks_in_18218 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_18218 .row:before,
#stacks_in_18218 .row:after {
  content: " ";
  display: table; }

#stacks_in_18218 .row:after {
  clear: both; }

#stacks_in_18218 .row.collapse > .column,
#stacks_in_18218 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_18218 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_18218 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_18218 .row .row:before,
#stacks_in_18218 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_18218 .row .row:after {
  clear: both; }

#stacks_in_18218 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_18218 .row .row.collapse:before,
#stacks_in_18218 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_18218 .row .row.collapse:after {
  clear: both; }

#stacks_in_18218 .column,
#stacks_in_18218 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_18218 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_18218 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_18218 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18218 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18218 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18218 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18218 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18218 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18218 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18218 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18218 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18218 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18218 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18218 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18218 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18218 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18218 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18218 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18218 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18218 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18218 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18218 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18218 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18218 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18218 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18218 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18218 .column,
  #stacks_in_18218 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18218 .small-1 {
    width: 8.33333%; }

  #stacks_in_18218 .small-2 {
    width: 16.66667%; }

  #stacks_in_18218 .small-3 {
    width: 25%; }

  #stacks_in_18218 .small-4 {
    width: 33.33333%; }

  #stacks_in_18218 .small-5 {
    width: 41.66667%; }

  #stacks_in_18218 .small-6 {
    width: 50%; }

  #stacks_in_18218 .small-7 {
    width: 58.33333%; }

  #stacks_in_18218 .small-8 {
    width: 66.66667%; }

  #stacks_in_18218 .small-9 {
    width: 75%; }

  #stacks_in_18218 .small-10 {
    width: 83.33333%; }

  #stacks_in_18218 .small-11 {
    width: 91.66667%; }

  #stacks_in_18218 .small-12 {
    width: 100%; }

  #stacks_in_18218 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18218 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18218 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18218 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18218 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18218 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18218 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18218 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18218 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18218 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18218 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18218 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18218 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18218 .column.small-centered,
  #stacks_in_18218 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18218 .column.small-uncentered,
  #stacks_in_18218 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18218 .column.small-centered:last-child,
  #stacks_in_18218 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_18218 .column.small-uncentered:last-child,
  #stacks_in_18218 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_18218 .column.small-uncentered.opposite,
  #stacks_in_18218 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_18218 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18218 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18218 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18218 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18218 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18218 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18218 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18218 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18218 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18218 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18218 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18218 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18218 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18218 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18218 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18218 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18218 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18218 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18218 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18218 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18218 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18218 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18218 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18218 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18218 .column,
  #stacks_in_18218 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18218 .medium-1 {
    width: 8.33333%; }

  #stacks_in_18218 .medium-2 {
    width: 16.66667%; }

  #stacks_in_18218 .medium-3 {
    width: 25%; }

  #stacks_in_18218 .medium-4 {
    width: 33.33333%; }

  #stacks_in_18218 .medium-5 {
    width: 41.66667%; }

  #stacks_in_18218 .medium-6 {
    width: 50%; }

  #stacks_in_18218 .medium-7 {
    width: 58.33333%; }

  #stacks_in_18218 .medium-8 {
    width: 66.66667%; }

  #stacks_in_18218 .medium-9 {
    width: 75%; }

  #stacks_in_18218 .medium-10 {
    width: 83.33333%; }

  #stacks_in_18218 .medium-11 {
    width: 91.66667%; }

  #stacks_in_18218 .medium-12 {
    width: 100%; }

  #stacks_in_18218 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18218 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18218 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18218 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18218 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18218 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18218 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18218 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18218 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18218 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18218 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18218 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18218 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18218 .column.medium-centered,
  #stacks_in_18218 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18218 .column.medium-uncentered,
  #stacks_in_18218 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18218 .column.medium-centered:last-child,
  #stacks_in_18218 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_18218 .column.medium-uncentered:last-child,
  #stacks_in_18218 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_18218 .column.medium-uncentered.opposite,
  #stacks_in_18218 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_18218 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18218 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18218 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18218 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18218 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18218 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18218 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18218 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18218 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18218 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18218 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18218 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18218 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18218 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18218 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18218 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18218 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18218 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18218 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18218 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18218 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18218 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18218 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18218 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_18218 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18218 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18218 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18218 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18218 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18218 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18218 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18218 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18218 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18218 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18218 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18218 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18218 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18218 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18218 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18218 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18218 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18218 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18218 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18218 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18218 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18218 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18218 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18218 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_18218 .column,
  #stacks_in_18218 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_18218 .large-1 {
    width: 8.33333%; }

  #stacks_in_18218 .large-2 {
    width: 16.66667%; }

  #stacks_in_18218 .large-3 {
    width: 25%; }

  #stacks_in_18218 .large-4 {
    width: 33.33333%; }

  #stacks_in_18218 .large-5 {
    width: 41.66667%; }

  #stacks_in_18218 .large-6 {
    width: 50%; }

  #stacks_in_18218 .large-7 {
    width: 58.33333%; }

  #stacks_in_18218 .large-8 {
    width: 66.66667%; }

  #stacks_in_18218 .large-9 {
    width: 75%; }

  #stacks_in_18218 .large-10 {
    width: 83.33333%; }

  #stacks_in_18218 .large-11 {
    width: 91.66667%; }

  #stacks_in_18218 .large-12 {
    width: 100%; }

  #stacks_in_18218 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_18218 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_18218 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_18218 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_18218 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_18218 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_18218 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_18218 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_18218 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_18218 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_18218 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_18218 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_18218 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_18218 .column.large-centered,
  #stacks_in_18218 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_18218 .column.large-uncentered,
  #stacks_in_18218 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_18218 .column.large-centered:last-child,
  #stacks_in_18218 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_18218 .column.large-uncentered:last-child,
  #stacks_in_18218 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_18218 .column.large-uncentered.opposite,
  #stacks_in_18218 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_18218 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_18218 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_18218 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_18218 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_18218 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_18218 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_18218 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_18218 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_18218 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_18218 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_18218 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_18218 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_18218 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_18218 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_18218 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_18218 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_18218 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_18218 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_18218 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_18218 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_18218 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_18218 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_18218 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_18218 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_18218 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_18218 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_18218 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_18218 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_18218 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_18218 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_18218 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_18218 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18218 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18218 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_18218 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18218 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18218 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_18218 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_18218 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_18218 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_18218 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18280Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18280Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18280Calligrapher h6, .stacks_in_18280Calligrapher h5, .stacks_in_18280Calligrapher h4, .stacks_in_18280Calligrapher h3, .stacks_in_18280Calligrapher h2, .stacks_in_18280Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18280Calligrapher, .stacks_in_18280Calligrapher h1, .stacks_in_18280Calligrapher h2, .stacks_in_18280Calligrapher h3, .stacks_in_18280Calligrapher h4, .stacks_in_18280Calligrapher h5, .stacks_in_18280Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18280targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18280Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18280Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18280Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18280Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18280 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18282 a:before, .link_effect1stacks_in_18282 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18282 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18282 a:hover:before, .link_effect1stacks_in_18282 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18282 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18282 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18282 .link_effect2stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18282 .link_effect2stacks_in_18282 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18282 .link_effect3stacks_in_18282 {
  	text-decoration: none;
}

#stacks_in_18282 .link_effect3stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18282 .link_effect3stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect3stacks_in_18282 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18282 .link_effect4stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect4stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect4stacks_in_18282 a::before,
#stacks_in_18282 .link_effect%stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect4stacks_in_18282 {
}

#stacks_in_18282 .link_effect4stacks_in_18282 a {
	font-weight:normal;;
}

#stacks_in_18282 .link_effect4stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18282 .link_effect4stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect4stacks_in_18282 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18282 .link_effect5stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect5stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect5stacks_in_18282 a::before,
#stacks_in_18282 .link_effect5stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect5stacks_in_18282 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18282 .link_effect5stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18282 .link_effect5stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect5stacks_in_18282 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18282 .link_effect6stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect6stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect6stacks_in_18282 a::before,
#stacks_in_18282 .link_effect6stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect6stacks_in_18282 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18282 .link_effect6stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18282 .link_effect6stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect6stacks_in_18282 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18282 .link_effect7stacks_in_18282 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect7stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect7stacks_in_18282 a::before,
#stacks_in_18282 .link_effect7stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect7stacks_in_18282 {
	position: relative;
}

#stacks_in_18282 .link_effect7stacks_in_18282 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18282 .link_effect7stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18282 .link_effect7stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect7stacks_in_18282 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18282 .link_effect8stacks_in_18282 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect8stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect8stacks_in_18282 a::before,
#stacks_in_18282 .link_effect8stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18282 .link_effect8stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18282 .link_effect8stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect8stacks_in_18282 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18282 .link_effect8stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18282 .link_effect8stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect8stacks_in_18282 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18282 .link_effect9stacks_in_18282 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect9stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect9stacks_in_18282 a::before,
#stacks_in_18282 .link_effect9stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect9stacks_in_18282 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18282 .link_effect9stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect9stacks_in_18282 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18282 .link_effect9stacks_in_18282 a::before,
#stacks_in_18282 .link_effect9stacks_in_18282 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18282 .link_effect9stacks_in_18282 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18282 .link_effect9stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect9stacks_in_18282 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18282 .link_effect9stacks_in_18282 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18282 .link_effect10stacks_in_18282 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect10stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect10stacks_in_18282 a::before,
#stacks_in_18282 .link_effect10stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect10stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18282 .link_effect10stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect10stacks_in_18282 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18282 .link_effect10stacks_in_18282 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18282 .link_effect10stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect10stacks_in_18282 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18282 .link_effect11stacks_in_18282 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18282 .link_effect11stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect11stacks_in_18282 a::before,
#stacks_in_18282 .link_effect11stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect11stacks_in_18282 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18282 .link_effect11stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect11stacks_in_18282 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18282 .link_effect11stacks_in_18282 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18282 .link_effect11stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect11stacks_in_18282 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18282 .link_effect12stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect12stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect12stacks_in_18282 a::before,
#stacks_in_18282 .link_effect12stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect12stacks_in_18282 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18282 .link_effect12stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect12stacks_in_18282 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18282 .link_effect12stacks_in_18282 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18282 .link_effect12stacks_in_18282 a,
#stacks_in_18282 .link_effect12stacks_in_18282 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18282 .link_effect12stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect12stacks_in_18282 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18282 .link_effect13stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect13stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect13stacks_in_18282 a::before,
#stacks_in_18282 .link_effect13stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect13stacks_in_18282 {
}

#stacks_in_18282 .link_effect13stacks_in_18282 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18282 .link_effect13stacks_in_18282 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18282 .link_effect13stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect13stacks_in_18282 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18282 .link_effect14stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect14stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect14stacks_in_18282 a::before,
#stacks_in_18282 .link_effect14stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect14stacks_in_18282 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18282 .link_effect14stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect14stacks_in_18282 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18282 .link_effect14stacks_in_18282 a::before,
#stacks_in_18282 .link_effect14stacks_in_18282 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18282 .link_effect14stacks_in_18282 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18282 .link_effect14stacks_in_18282 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18282 .link_effect14stacks_in_18282 a:hover::after,
#stacks_in_18282 .link_effect14stacks_in_18282 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18282 .link_effect15stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect15stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect15stacks_in_18282 a::before,
#stacks_in_18282 .link_effect15stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect15stacks_in_18282 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18282 .link_effect15stacks_in_18282 a::before,
#stacks_in_18282 .link_effect15stacks_in_18282 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18282 .link_effect15stacks_in_18282 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18282 .link_effect15stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect15stacks_in_18282 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18282 .link_effect15stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect15stacks_in_18282 a:focus::before,
#stacks_in_18282 .link_effect15stacks_in_18282 a:hover::after,
#stacks_in_18282 .link_effect15stacks_in_18282 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18282 .link_effect15stacks_in_18282 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18282 .link_effect15stacks_in_18282 a:hover::after,
#stacks_in_18282 .link_effect15stacks_in_18282 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18282 .link_effect16stacks_in_18282 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a::before,
#stacks_in_18282 .link_effect16stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a:hover {
	color: #d04c3f;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a::before,
#stacks_in_18282 .link_effect16stacks_in_18282 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18282 .link_effect16stacks_in_18282 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18282 .link_effect16stacks_in_18282 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18282 .link_effect16stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect16stacks_in_18282 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18282 .link_effect17stacks_in_18282 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18282 .link_effect17stacks_in_18282 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18282 .link_effect17stacks_in_18282 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18282 .link_effect18stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect18stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect18stacks_in_18282 a::before,
#stacks_in_18282 .link_effect18stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18282 .link_effect18stacks_in_18282 {
}

#stacks_in_18282 .link_effect18stacks_in_18282 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18282 .link_effect18stacks_in_18282 a::before,
#stacks_in_18282 .link_effect18stacks_in_18282 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18282 .link_effect18stacks_in_18282 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18282 .link_effect18stacks_in_18282 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18282 .link_effect18stacks_in_18282 a:hover,
#stacks_in_18282 .link_effect18stacks_in_18282 a:focus {
	color: #fff;
}

#stacks_in_18282 .link_effect18stacks_in_18282 a:hover::before,
#stacks_in_18282 .link_effect18stacks_in_18282 a:focus::before,
#stacks_in_18282 .link_effect18stacks_in_18282 a:hover::after,
#stacks_in_18282 .link_effect18stacks_in_18282 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18282 .link_effect19stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect19stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect19stacks_in_18282 a::before,
#stacks_in_18282 .link_effect19stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18282 a {
}

.link_effect19stacks_in_18282 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18282 a:hover::after,
.link_effect19stacks_in_18282 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18282 .link_effect20stacks_in_18282 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18282 .link_effect20stacks_in_18282 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18282 .link_effect20stacks_in_18282 a::before,
#stacks_in_18282 .link_effect20stacks_in_18282 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18282 a {
}

.link_effect20stacks_in_18282 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18282 a:hover::after,
.link_effect20stacks_in_18282 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18284 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18296 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18296 .borderbuttonthing, #stacks_in_18296 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18296 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18296 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18296 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18222Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18222Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18222Calligrapher h6, .stacks_in_18222Calligrapher h5, .stacks_in_18222Calligrapher h4, .stacks_in_18222Calligrapher h3, .stacks_in_18222Calligrapher h2, .stacks_in_18222Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18222Calligrapher, .stacks_in_18222Calligrapher h1, .stacks_in_18222Calligrapher h2, .stacks_in_18222Calligrapher h3, .stacks_in_18222Calligrapher h4, .stacks_in_18222Calligrapher h5, .stacks_in_18222Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18222targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18222Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18222Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18222Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18222Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18222 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18224 a:before, .link_effect1stacks_in_18224 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18224 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18224 a:hover:before, .link_effect1stacks_in_18224 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18224 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18224 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18224 .link_effect2stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18224 .link_effect2stacks_in_18224 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18224 .link_effect3stacks_in_18224 {
  	text-decoration: none;
}

#stacks_in_18224 .link_effect3stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18224 .link_effect3stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect3stacks_in_18224 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18224 .link_effect4stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect4stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect4stacks_in_18224 a::before,
#stacks_in_18224 .link_effect%stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect4stacks_in_18224 {
}

#stacks_in_18224 .link_effect4stacks_in_18224 a {
	font-weight:normal;;
}

#stacks_in_18224 .link_effect4stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18224 .link_effect4stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect4stacks_in_18224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18224 .link_effect5stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect5stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect5stacks_in_18224 a::before,
#stacks_in_18224 .link_effect5stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect5stacks_in_18224 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18224 .link_effect5stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18224 .link_effect5stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect5stacks_in_18224 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18224 .link_effect6stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect6stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect6stacks_in_18224 a::before,
#stacks_in_18224 .link_effect6stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect6stacks_in_18224 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18224 .link_effect6stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18224 .link_effect6stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect6stacks_in_18224 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18224 .link_effect7stacks_in_18224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect7stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect7stacks_in_18224 a::before,
#stacks_in_18224 .link_effect7stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect7stacks_in_18224 {
	position: relative;
}

#stacks_in_18224 .link_effect7stacks_in_18224 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18224 .link_effect7stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18224 .link_effect7stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect7stacks_in_18224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18224 .link_effect8stacks_in_18224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect8stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect8stacks_in_18224 a::before,
#stacks_in_18224 .link_effect8stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18224 .link_effect8stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18224 .link_effect8stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect8stacks_in_18224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18224 .link_effect8stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18224 .link_effect8stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect8stacks_in_18224 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18224 .link_effect9stacks_in_18224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect9stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect9stacks_in_18224 a::before,
#stacks_in_18224 .link_effect9stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect9stacks_in_18224 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18224 .link_effect9stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect9stacks_in_18224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18224 .link_effect9stacks_in_18224 a::before,
#stacks_in_18224 .link_effect9stacks_in_18224 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18224 .link_effect9stacks_in_18224 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18224 .link_effect9stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect9stacks_in_18224 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18224 .link_effect9stacks_in_18224 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18224 .link_effect10stacks_in_18224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect10stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect10stacks_in_18224 a::before,
#stacks_in_18224 .link_effect10stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect10stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18224 .link_effect10stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect10stacks_in_18224 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18224 .link_effect10stacks_in_18224 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18224 .link_effect10stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect10stacks_in_18224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18224 .link_effect11stacks_in_18224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18224 .link_effect11stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect11stacks_in_18224 a::before,
#stacks_in_18224 .link_effect11stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect11stacks_in_18224 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18224 .link_effect11stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect11stacks_in_18224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18224 .link_effect11stacks_in_18224 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18224 .link_effect11stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect11stacks_in_18224 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18224 .link_effect12stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect12stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect12stacks_in_18224 a::before,
#stacks_in_18224 .link_effect12stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect12stacks_in_18224 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18224 .link_effect12stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect12stacks_in_18224 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18224 .link_effect12stacks_in_18224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18224 .link_effect12stacks_in_18224 a,
#stacks_in_18224 .link_effect12stacks_in_18224 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18224 .link_effect12stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect12stacks_in_18224 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18224 .link_effect13stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect13stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect13stacks_in_18224 a::before,
#stacks_in_18224 .link_effect13stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect13stacks_in_18224 {
}

#stacks_in_18224 .link_effect13stacks_in_18224 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18224 .link_effect13stacks_in_18224 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18224 .link_effect13stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect13stacks_in_18224 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18224 .link_effect14stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect14stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect14stacks_in_18224 a::before,
#stacks_in_18224 .link_effect14stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect14stacks_in_18224 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18224 .link_effect14stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect14stacks_in_18224 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18224 .link_effect14stacks_in_18224 a::before,
#stacks_in_18224 .link_effect14stacks_in_18224 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18224 .link_effect14stacks_in_18224 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18224 .link_effect14stacks_in_18224 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18224 .link_effect14stacks_in_18224 a:hover::after,
#stacks_in_18224 .link_effect14stacks_in_18224 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18224 .link_effect15stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect15stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect15stacks_in_18224 a::before,
#stacks_in_18224 .link_effect15stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect15stacks_in_18224 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18224 .link_effect15stacks_in_18224 a::before,
#stacks_in_18224 .link_effect15stacks_in_18224 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18224 .link_effect15stacks_in_18224 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18224 .link_effect15stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect15stacks_in_18224 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18224 .link_effect15stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect15stacks_in_18224 a:focus::before,
#stacks_in_18224 .link_effect15stacks_in_18224 a:hover::after,
#stacks_in_18224 .link_effect15stacks_in_18224 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18224 .link_effect15stacks_in_18224 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18224 .link_effect15stacks_in_18224 a:hover::after,
#stacks_in_18224 .link_effect15stacks_in_18224 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18224 .link_effect16stacks_in_18224 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a::before,
#stacks_in_18224 .link_effect16stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a:hover {
	color: #d04c3f;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a::before,
#stacks_in_18224 .link_effect16stacks_in_18224 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18224 .link_effect16stacks_in_18224 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18224 .link_effect16stacks_in_18224 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18224 .link_effect16stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect16stacks_in_18224 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18224 .link_effect17stacks_in_18224 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18224 .link_effect17stacks_in_18224 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18224 .link_effect17stacks_in_18224 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18224 .link_effect18stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect18stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect18stacks_in_18224 a::before,
#stacks_in_18224 .link_effect18stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18224 .link_effect18stacks_in_18224 {
}

#stacks_in_18224 .link_effect18stacks_in_18224 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18224 .link_effect18stacks_in_18224 a::before,
#stacks_in_18224 .link_effect18stacks_in_18224 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18224 .link_effect18stacks_in_18224 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18224 .link_effect18stacks_in_18224 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18224 .link_effect18stacks_in_18224 a:hover,
#stacks_in_18224 .link_effect18stacks_in_18224 a:focus {
	color: #fff;
}

#stacks_in_18224 .link_effect18stacks_in_18224 a:hover::before,
#stacks_in_18224 .link_effect18stacks_in_18224 a:focus::before,
#stacks_in_18224 .link_effect18stacks_in_18224 a:hover::after,
#stacks_in_18224 .link_effect18stacks_in_18224 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18224 .link_effect19stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect19stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect19stacks_in_18224 a::before,
#stacks_in_18224 .link_effect19stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18224 a {
}

.link_effect19stacks_in_18224 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18224 a:hover::after,
.link_effect19stacks_in_18224 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18224 .link_effect20stacks_in_18224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18224 .link_effect20stacks_in_18224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18224 .link_effect20stacks_in_18224 a::before,
#stacks_in_18224 .link_effect20stacks_in_18224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18224 a {
}

.link_effect20stacks_in_18224 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18224 a:hover::after,
.link_effect20stacks_in_18224 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18226 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18299 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18299 .borderbuttonthing, #stacks_in_18299 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18299 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18299 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18299 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18232Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18232Calligrapher h6, .stacks_in_18232Calligrapher h5, .stacks_in_18232Calligrapher h4, .stacks_in_18232Calligrapher h3, .stacks_in_18232Calligrapher h2, .stacks_in_18232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18232Calligrapher, .stacks_in_18232Calligrapher h1, .stacks_in_18232Calligrapher h2, .stacks_in_18232Calligrapher h3, .stacks_in_18232Calligrapher h4, .stacks_in_18232Calligrapher h5, .stacks_in_18232Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18232Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18232 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18234 a:before, .link_effect1stacks_in_18234 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18234 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18234 a:hover:before, .link_effect1stacks_in_18234 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18234 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18234 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18234 .link_effect2stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18234 .link_effect2stacks_in_18234 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18234 .link_effect3stacks_in_18234 {
  	text-decoration: none;
}

#stacks_in_18234 .link_effect3stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18234 .link_effect3stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect3stacks_in_18234 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18234 .link_effect4stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect4stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect4stacks_in_18234 a::before,
#stacks_in_18234 .link_effect%stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect4stacks_in_18234 {
}

#stacks_in_18234 .link_effect4stacks_in_18234 a {
	font-weight:normal;;
}

#stacks_in_18234 .link_effect4stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18234 .link_effect4stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect4stacks_in_18234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18234 .link_effect5stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect5stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect5stacks_in_18234 a::before,
#stacks_in_18234 .link_effect5stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect5stacks_in_18234 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18234 .link_effect5stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18234 .link_effect5stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect5stacks_in_18234 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18234 .link_effect6stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect6stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect6stacks_in_18234 a::before,
#stacks_in_18234 .link_effect6stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect6stacks_in_18234 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18234 .link_effect6stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18234 .link_effect6stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect6stacks_in_18234 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18234 .link_effect7stacks_in_18234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect7stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect7stacks_in_18234 a::before,
#stacks_in_18234 .link_effect7stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect7stacks_in_18234 {
	position: relative;
}

#stacks_in_18234 .link_effect7stacks_in_18234 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18234 .link_effect7stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18234 .link_effect7stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect7stacks_in_18234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18234 .link_effect8stacks_in_18234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect8stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect8stacks_in_18234 a::before,
#stacks_in_18234 .link_effect8stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18234 .link_effect8stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18234 .link_effect8stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect8stacks_in_18234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18234 .link_effect8stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18234 .link_effect8stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect8stacks_in_18234 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18234 .link_effect9stacks_in_18234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect9stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect9stacks_in_18234 a::before,
#stacks_in_18234 .link_effect9stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect9stacks_in_18234 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18234 .link_effect9stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect9stacks_in_18234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18234 .link_effect9stacks_in_18234 a::before,
#stacks_in_18234 .link_effect9stacks_in_18234 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18234 .link_effect9stacks_in_18234 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18234 .link_effect9stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect9stacks_in_18234 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18234 .link_effect9stacks_in_18234 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18234 .link_effect10stacks_in_18234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect10stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect10stacks_in_18234 a::before,
#stacks_in_18234 .link_effect10stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect10stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18234 .link_effect10stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect10stacks_in_18234 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18234 .link_effect10stacks_in_18234 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18234 .link_effect10stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect10stacks_in_18234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18234 .link_effect11stacks_in_18234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18234 .link_effect11stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect11stacks_in_18234 a::before,
#stacks_in_18234 .link_effect11stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect11stacks_in_18234 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18234 .link_effect11stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect11stacks_in_18234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18234 .link_effect11stacks_in_18234 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18234 .link_effect11stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect11stacks_in_18234 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18234 .link_effect12stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect12stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect12stacks_in_18234 a::before,
#stacks_in_18234 .link_effect12stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect12stacks_in_18234 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18234 .link_effect12stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect12stacks_in_18234 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18234 .link_effect12stacks_in_18234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18234 .link_effect12stacks_in_18234 a,
#stacks_in_18234 .link_effect12stacks_in_18234 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18234 .link_effect12stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect12stacks_in_18234 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18234 .link_effect13stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect13stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect13stacks_in_18234 a::before,
#stacks_in_18234 .link_effect13stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect13stacks_in_18234 {
}

#stacks_in_18234 .link_effect13stacks_in_18234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18234 .link_effect13stacks_in_18234 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18234 .link_effect13stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect13stacks_in_18234 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18234 .link_effect14stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect14stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect14stacks_in_18234 a::before,
#stacks_in_18234 .link_effect14stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect14stacks_in_18234 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18234 .link_effect14stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect14stacks_in_18234 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18234 .link_effect14stacks_in_18234 a::before,
#stacks_in_18234 .link_effect14stacks_in_18234 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18234 .link_effect14stacks_in_18234 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18234 .link_effect14stacks_in_18234 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18234 .link_effect14stacks_in_18234 a:hover::after,
#stacks_in_18234 .link_effect14stacks_in_18234 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18234 .link_effect15stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect15stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect15stacks_in_18234 a::before,
#stacks_in_18234 .link_effect15stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect15stacks_in_18234 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18234 .link_effect15stacks_in_18234 a::before,
#stacks_in_18234 .link_effect15stacks_in_18234 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18234 .link_effect15stacks_in_18234 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18234 .link_effect15stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect15stacks_in_18234 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18234 .link_effect15stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect15stacks_in_18234 a:focus::before,
#stacks_in_18234 .link_effect15stacks_in_18234 a:hover::after,
#stacks_in_18234 .link_effect15stacks_in_18234 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18234 .link_effect15stacks_in_18234 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18234 .link_effect15stacks_in_18234 a:hover::after,
#stacks_in_18234 .link_effect15stacks_in_18234 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18234 .link_effect16stacks_in_18234 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a::before,
#stacks_in_18234 .link_effect16stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a:hover {
	color: #d04c3f;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a::before,
#stacks_in_18234 .link_effect16stacks_in_18234 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18234 .link_effect16stacks_in_18234 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18234 .link_effect16stacks_in_18234 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18234 .link_effect16stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect16stacks_in_18234 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18234 .link_effect17stacks_in_18234 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18234 .link_effect17stacks_in_18234 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18234 .link_effect17stacks_in_18234 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18234 .link_effect18stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect18stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect18stacks_in_18234 a::before,
#stacks_in_18234 .link_effect18stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18234 .link_effect18stacks_in_18234 {
}

#stacks_in_18234 .link_effect18stacks_in_18234 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18234 .link_effect18stacks_in_18234 a::before,
#stacks_in_18234 .link_effect18stacks_in_18234 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18234 .link_effect18stacks_in_18234 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18234 .link_effect18stacks_in_18234 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18234 .link_effect18stacks_in_18234 a:hover,
#stacks_in_18234 .link_effect18stacks_in_18234 a:focus {
	color: #fff;
}

#stacks_in_18234 .link_effect18stacks_in_18234 a:hover::before,
#stacks_in_18234 .link_effect18stacks_in_18234 a:focus::before,
#stacks_in_18234 .link_effect18stacks_in_18234 a:hover::after,
#stacks_in_18234 .link_effect18stacks_in_18234 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18234 .link_effect19stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect19stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect19stacks_in_18234 a::before,
#stacks_in_18234 .link_effect19stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18234 a {
}

.link_effect19stacks_in_18234 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18234 a:hover::after,
.link_effect19stacks_in_18234 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18234 .link_effect20stacks_in_18234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18234 .link_effect20stacks_in_18234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18234 .link_effect20stacks_in_18234 a::before,
#stacks_in_18234 .link_effect20stacks_in_18234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18234 a {
}

.link_effect20stacks_in_18234 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18234 a:hover::after,
.link_effect20stacks_in_18234 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18236 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18300 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18300 .borderbuttonthing, #stacks_in_18300 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18300 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18300 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18300 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17307 article,
#stacks_in_17307 aside,
#stacks_in_17307 details,
#stacks_in_17307 figcaption,
#stacks_in_17307 figure,
#stacks_in_17307 footer,
#stacks_in_17307 header,
#stacks_in_17307 hgroup,
#stacks_in_17307 main,
#stacks_in_17307 nav,
#stacks_in_17307 section,
#stacks_in_17307 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17307 audio,
#stacks_in_17307 canvas,
#stacks_in_17307 progress,
#stacks_in_17307 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17307 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17307 [hidden],
#stacks_in_17307 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17307 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17307 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17307 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17307 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17307 code,
#stacks_in_17307 kbd,
#stacks_in_17307 pre,
#stacks_in_17307 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17307 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17307 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17307 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17307 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17307 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17307 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17307 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17307 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17307 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17307 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17307 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17307 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17307 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17307 .left {
  float: left !important; }

#stacks_in_17307 .right {
  float: right !important; }

#stacks_in_17307 .clearfix:before,
#stacks_in_17307 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17307 .clearfix:after {
  clear: both; }

#stacks_in_17307 .hide {
  display: none; }

#stacks_in_17307 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17307 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17307 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17307 select {
  width: 100%; }

#stacks_in_17307 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17307 .row:before,
#stacks_in_17307 .row:after {
  content: " ";
  display: table; }

#stacks_in_17307 .row:after {
  clear: both; }

#stacks_in_17307 .row.collapse > .column,
#stacks_in_17307 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17307 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17307 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17307 .row .row:before,
#stacks_in_17307 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17307 .row .row:after {
  clear: both; }

#stacks_in_17307 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17307 .row .row.collapse:before,
#stacks_in_17307 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17307 .row .row.collapse:after {
  clear: both; }

#stacks_in_17307 .column,
#stacks_in_17307 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17307 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17307 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17307 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17307 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17307 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17307 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17307 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17307 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17307 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17307 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17307 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17307 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17307 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17307 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17307 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17307 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17307 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17307 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17307 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17307 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17307 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17307 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17307 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17307 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17307 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17307 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17307 .column,
  #stacks_in_17307 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17307 .small-1 {
    width: 8.33333%; }

  #stacks_in_17307 .small-2 {
    width: 16.66667%; }

  #stacks_in_17307 .small-3 {
    width: 25%; }

  #stacks_in_17307 .small-4 {
    width: 33.33333%; }

  #stacks_in_17307 .small-5 {
    width: 41.66667%; }

  #stacks_in_17307 .small-6 {
    width: 50%; }

  #stacks_in_17307 .small-7 {
    width: 58.33333%; }

  #stacks_in_17307 .small-8 {
    width: 66.66667%; }

  #stacks_in_17307 .small-9 {
    width: 75%; }

  #stacks_in_17307 .small-10 {
    width: 83.33333%; }

  #stacks_in_17307 .small-11 {
    width: 91.66667%; }

  #stacks_in_17307 .small-12 {
    width: 100%; }

  #stacks_in_17307 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17307 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17307 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17307 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17307 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17307 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17307 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17307 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17307 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17307 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17307 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17307 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17307 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17307 .column.small-centered,
  #stacks_in_17307 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17307 .column.small-uncentered,
  #stacks_in_17307 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17307 .column.small-centered:last-child,
  #stacks_in_17307 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17307 .column.small-uncentered:last-child,
  #stacks_in_17307 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17307 .column.small-uncentered.opposite,
  #stacks_in_17307 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17307 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17307 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17307 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17307 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17307 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17307 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17307 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17307 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17307 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17307 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17307 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17307 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17307 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17307 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17307 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17307 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17307 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17307 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17307 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17307 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17307 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17307 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17307 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17307 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17307 .column,
  #stacks_in_17307 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17307 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17307 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17307 .medium-3 {
    width: 25%; }

  #stacks_in_17307 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17307 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17307 .medium-6 {
    width: 50%; }

  #stacks_in_17307 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17307 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17307 .medium-9 {
    width: 75%; }

  #stacks_in_17307 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17307 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17307 .medium-12 {
    width: 100%; }

  #stacks_in_17307 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17307 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17307 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17307 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17307 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17307 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17307 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17307 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17307 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17307 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17307 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17307 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17307 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17307 .column.medium-centered,
  #stacks_in_17307 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17307 .column.medium-uncentered,
  #stacks_in_17307 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17307 .column.medium-centered:last-child,
  #stacks_in_17307 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17307 .column.medium-uncentered:last-child,
  #stacks_in_17307 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17307 .column.medium-uncentered.opposite,
  #stacks_in_17307 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17307 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17307 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17307 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17307 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17307 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17307 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17307 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17307 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17307 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17307 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17307 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17307 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17307 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17307 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17307 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17307 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17307 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17307 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17307 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17307 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17307 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17307 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17307 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17307 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17307 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17307 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17307 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17307 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17307 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17307 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17307 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17307 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17307 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17307 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17307 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17307 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17307 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17307 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17307 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17307 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17307 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17307 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17307 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17307 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17307 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17307 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17307 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17307 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17307 .column,
  #stacks_in_17307 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17307 .large-1 {
    width: 8.33333%; }

  #stacks_in_17307 .large-2 {
    width: 16.66667%; }

  #stacks_in_17307 .large-3 {
    width: 25%; }

  #stacks_in_17307 .large-4 {
    width: 33.33333%; }

  #stacks_in_17307 .large-5 {
    width: 41.66667%; }

  #stacks_in_17307 .large-6 {
    width: 50%; }

  #stacks_in_17307 .large-7 {
    width: 58.33333%; }

  #stacks_in_17307 .large-8 {
    width: 66.66667%; }

  #stacks_in_17307 .large-9 {
    width: 75%; }

  #stacks_in_17307 .large-10 {
    width: 83.33333%; }

  #stacks_in_17307 .large-11 {
    width: 91.66667%; }

  #stacks_in_17307 .large-12 {
    width: 100%; }

  #stacks_in_17307 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17307 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17307 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17307 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17307 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17307 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17307 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17307 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17307 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17307 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17307 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17307 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17307 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17307 .column.large-centered,
  #stacks_in_17307 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17307 .column.large-uncentered,
  #stacks_in_17307 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17307 .column.large-centered:last-child,
  #stacks_in_17307 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17307 .column.large-uncentered:last-child,
  #stacks_in_17307 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17307 .column.large-uncentered.opposite,
  #stacks_in_17307 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17307 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17307 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17307 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17307 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17307 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17307 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17307 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17307 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17307 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17307 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17307 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17307 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17307 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17307 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17307 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17307 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17307 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17307 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17307 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17307 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17307 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17307 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17307 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17307 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17307 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17307 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17307 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17307 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17307 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17307 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17307 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17307 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17307 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17307 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17307 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17307 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17307 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17307 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17307 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17307 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17307 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18068Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18068Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18068Calligrapher h6, .stacks_in_18068Calligrapher h5, .stacks_in_18068Calligrapher h4, .stacks_in_18068Calligrapher h3, .stacks_in_18068Calligrapher h2, .stacks_in_18068Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18068Calligrapher, .stacks_in_18068Calligrapher h1, .stacks_in_18068Calligrapher h2, .stacks_in_18068Calligrapher h3, .stacks_in_18068Calligrapher h4, .stacks_in_18068Calligrapher h5, .stacks_in_18068Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18068targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18068Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18068Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18068Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18068Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18068 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18069 a:before, .link_effect1stacks_in_18069 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18069 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18069 a:hover:before, .link_effect1stacks_in_18069 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18069 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18069 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18069 .link_effect2stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18069 .link_effect2stacks_in_18069 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18069 .link_effect3stacks_in_18069 {
  	text-decoration: none;
}

#stacks_in_18069 .link_effect3stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18069 .link_effect3stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect3stacks_in_18069 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18069 .link_effect4stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect4stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect4stacks_in_18069 a::before,
#stacks_in_18069 .link_effect%stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect4stacks_in_18069 {
}

#stacks_in_18069 .link_effect4stacks_in_18069 a {
	font-weight:normal;;
}

#stacks_in_18069 .link_effect4stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18069 .link_effect4stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect4stacks_in_18069 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18069 .link_effect5stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect5stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect5stacks_in_18069 a::before,
#stacks_in_18069 .link_effect5stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect5stacks_in_18069 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18069 .link_effect5stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18069 .link_effect5stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect5stacks_in_18069 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18069 .link_effect6stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect6stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect6stacks_in_18069 a::before,
#stacks_in_18069 .link_effect6stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect6stacks_in_18069 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18069 .link_effect6stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18069 .link_effect6stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect6stacks_in_18069 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18069 .link_effect7stacks_in_18069 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect7stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect7stacks_in_18069 a::before,
#stacks_in_18069 .link_effect7stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect7stacks_in_18069 {
	position: relative;
}

#stacks_in_18069 .link_effect7stacks_in_18069 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18069 .link_effect7stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18069 .link_effect7stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect7stacks_in_18069 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18069 .link_effect8stacks_in_18069 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect8stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect8stacks_in_18069 a::before,
#stacks_in_18069 .link_effect8stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18069 .link_effect8stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18069 .link_effect8stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect8stacks_in_18069 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18069 .link_effect8stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18069 .link_effect8stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect8stacks_in_18069 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18069 .link_effect9stacks_in_18069 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect9stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect9stacks_in_18069 a::before,
#stacks_in_18069 .link_effect9stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect9stacks_in_18069 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18069 .link_effect9stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect9stacks_in_18069 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18069 .link_effect9stacks_in_18069 a::before,
#stacks_in_18069 .link_effect9stacks_in_18069 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18069 .link_effect9stacks_in_18069 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18069 .link_effect9stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect9stacks_in_18069 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18069 .link_effect9stacks_in_18069 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18069 .link_effect10stacks_in_18069 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect10stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect10stacks_in_18069 a::before,
#stacks_in_18069 .link_effect10stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect10stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18069 .link_effect10stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect10stacks_in_18069 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18069 .link_effect10stacks_in_18069 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18069 .link_effect10stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect10stacks_in_18069 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18069 .link_effect11stacks_in_18069 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18069 .link_effect11stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect11stacks_in_18069 a::before,
#stacks_in_18069 .link_effect11stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect11stacks_in_18069 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18069 .link_effect11stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect11stacks_in_18069 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18069 .link_effect11stacks_in_18069 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18069 .link_effect11stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect11stacks_in_18069 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18069 .link_effect12stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect12stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect12stacks_in_18069 a::before,
#stacks_in_18069 .link_effect12stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect12stacks_in_18069 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18069 .link_effect12stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect12stacks_in_18069 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18069 .link_effect12stacks_in_18069 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18069 .link_effect12stacks_in_18069 a,
#stacks_in_18069 .link_effect12stacks_in_18069 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18069 .link_effect12stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect12stacks_in_18069 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18069 .link_effect13stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect13stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect13stacks_in_18069 a::before,
#stacks_in_18069 .link_effect13stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect13stacks_in_18069 {
}

#stacks_in_18069 .link_effect13stacks_in_18069 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18069 .link_effect13stacks_in_18069 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18069 .link_effect13stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect13stacks_in_18069 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18069 .link_effect14stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect14stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect14stacks_in_18069 a::before,
#stacks_in_18069 .link_effect14stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect14stacks_in_18069 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18069 .link_effect14stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect14stacks_in_18069 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18069 .link_effect14stacks_in_18069 a::before,
#stacks_in_18069 .link_effect14stacks_in_18069 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18069 .link_effect14stacks_in_18069 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18069 .link_effect14stacks_in_18069 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18069 .link_effect14stacks_in_18069 a:hover::after,
#stacks_in_18069 .link_effect14stacks_in_18069 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18069 .link_effect15stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect15stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect15stacks_in_18069 a::before,
#stacks_in_18069 .link_effect15stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect15stacks_in_18069 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18069 .link_effect15stacks_in_18069 a::before,
#stacks_in_18069 .link_effect15stacks_in_18069 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18069 .link_effect15stacks_in_18069 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18069 .link_effect15stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect15stacks_in_18069 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18069 .link_effect15stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect15stacks_in_18069 a:focus::before,
#stacks_in_18069 .link_effect15stacks_in_18069 a:hover::after,
#stacks_in_18069 .link_effect15stacks_in_18069 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18069 .link_effect15stacks_in_18069 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18069 .link_effect15stacks_in_18069 a:hover::after,
#stacks_in_18069 .link_effect15stacks_in_18069 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18069 .link_effect16stacks_in_18069 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a::before,
#stacks_in_18069 .link_effect16stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a:hover {
	color: #d04c3f;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a::before,
#stacks_in_18069 .link_effect16stacks_in_18069 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18069 .link_effect16stacks_in_18069 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18069 .link_effect16stacks_in_18069 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18069 .link_effect16stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect16stacks_in_18069 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18069 .link_effect17stacks_in_18069 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18069 .link_effect17stacks_in_18069 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18069 .link_effect17stacks_in_18069 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18069 .link_effect18stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect18stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect18stacks_in_18069 a::before,
#stacks_in_18069 .link_effect18stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18069 .link_effect18stacks_in_18069 {
}

#stacks_in_18069 .link_effect18stacks_in_18069 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18069 .link_effect18stacks_in_18069 a::before,
#stacks_in_18069 .link_effect18stacks_in_18069 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18069 .link_effect18stacks_in_18069 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18069 .link_effect18stacks_in_18069 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18069 .link_effect18stacks_in_18069 a:hover,
#stacks_in_18069 .link_effect18stacks_in_18069 a:focus {
	color: #fff;
}

#stacks_in_18069 .link_effect18stacks_in_18069 a:hover::before,
#stacks_in_18069 .link_effect18stacks_in_18069 a:focus::before,
#stacks_in_18069 .link_effect18stacks_in_18069 a:hover::after,
#stacks_in_18069 .link_effect18stacks_in_18069 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18069 .link_effect19stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect19stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect19stacks_in_18069 a::before,
#stacks_in_18069 .link_effect19stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18069 a {
}

.link_effect19stacks_in_18069 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18069 a:hover::after,
.link_effect19stacks_in_18069 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18069 .link_effect20stacks_in_18069 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18069 .link_effect20stacks_in_18069 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18069 .link_effect20stacks_in_18069 a::before,
#stacks_in_18069 .link_effect20stacks_in_18069 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18069 a {
}

.link_effect20stacks_in_18069 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18069 a:hover::after,
.link_effect20stacks_in_18069 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18070 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18074 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18074 .borderbuttonthing, #stacks_in_18074 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18074 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18074 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18074 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17867Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17867Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17867Calligrapher h6, .stacks_in_17867Calligrapher h5, .stacks_in_17867Calligrapher h4, .stacks_in_17867Calligrapher h3, .stacks_in_17867Calligrapher h2, .stacks_in_17867Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17867Calligrapher, .stacks_in_17867Calligrapher h1, .stacks_in_17867Calligrapher h2, .stacks_in_17867Calligrapher h3, .stacks_in_17867Calligrapher h4, .stacks_in_17867Calligrapher h5, .stacks_in_17867Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17867targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17867Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17867Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17867Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17867Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17867 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17868 a:before, .link_effect1stacks_in_17868 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17868 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17868 a:hover:before, .link_effect1stacks_in_17868 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17868 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17868 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17868 .link_effect2stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17868 .link_effect2stacks_in_17868 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17868 .link_effect3stacks_in_17868 {
  	text-decoration: none;
}

#stacks_in_17868 .link_effect3stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17868 .link_effect3stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect3stacks_in_17868 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17868 .link_effect4stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect4stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect4stacks_in_17868 a::before,
#stacks_in_17868 .link_effect%stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect4stacks_in_17868 {
}

#stacks_in_17868 .link_effect4stacks_in_17868 a {
	font-weight:normal;;
}

#stacks_in_17868 .link_effect4stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17868 .link_effect4stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect4stacks_in_17868 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17868 .link_effect5stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect5stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect5stacks_in_17868 a::before,
#stacks_in_17868 .link_effect5stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect5stacks_in_17868 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17868 .link_effect5stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17868 .link_effect5stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect5stacks_in_17868 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17868 .link_effect6stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect6stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect6stacks_in_17868 a::before,
#stacks_in_17868 .link_effect6stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect6stacks_in_17868 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17868 .link_effect6stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17868 .link_effect6stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect6stacks_in_17868 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17868 .link_effect7stacks_in_17868 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect7stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect7stacks_in_17868 a::before,
#stacks_in_17868 .link_effect7stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect7stacks_in_17868 {
	position: relative;
}

#stacks_in_17868 .link_effect7stacks_in_17868 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17868 .link_effect7stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17868 .link_effect7stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect7stacks_in_17868 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17868 .link_effect8stacks_in_17868 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect8stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect8stacks_in_17868 a::before,
#stacks_in_17868 .link_effect8stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17868 .link_effect8stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17868 .link_effect8stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect8stacks_in_17868 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17868 .link_effect8stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17868 .link_effect8stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect8stacks_in_17868 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17868 .link_effect9stacks_in_17868 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect9stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect9stacks_in_17868 a::before,
#stacks_in_17868 .link_effect9stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect9stacks_in_17868 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17868 .link_effect9stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect9stacks_in_17868 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17868 .link_effect9stacks_in_17868 a::before,
#stacks_in_17868 .link_effect9stacks_in_17868 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17868 .link_effect9stacks_in_17868 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17868 .link_effect9stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect9stacks_in_17868 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17868 .link_effect9stacks_in_17868 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17868 .link_effect10stacks_in_17868 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect10stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect10stacks_in_17868 a::before,
#stacks_in_17868 .link_effect10stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect10stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17868 .link_effect10stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect10stacks_in_17868 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17868 .link_effect10stacks_in_17868 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17868 .link_effect10stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect10stacks_in_17868 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17868 .link_effect11stacks_in_17868 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17868 .link_effect11stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect11stacks_in_17868 a::before,
#stacks_in_17868 .link_effect11stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect11stacks_in_17868 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17868 .link_effect11stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect11stacks_in_17868 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17868 .link_effect11stacks_in_17868 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17868 .link_effect11stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect11stacks_in_17868 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17868 .link_effect12stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect12stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect12stacks_in_17868 a::before,
#stacks_in_17868 .link_effect12stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect12stacks_in_17868 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17868 .link_effect12stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect12stacks_in_17868 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17868 .link_effect12stacks_in_17868 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17868 .link_effect12stacks_in_17868 a,
#stacks_in_17868 .link_effect12stacks_in_17868 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17868 .link_effect12stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect12stacks_in_17868 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17868 .link_effect13stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect13stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect13stacks_in_17868 a::before,
#stacks_in_17868 .link_effect13stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect13stacks_in_17868 {
}

#stacks_in_17868 .link_effect13stacks_in_17868 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17868 .link_effect13stacks_in_17868 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17868 .link_effect13stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect13stacks_in_17868 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17868 .link_effect14stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect14stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect14stacks_in_17868 a::before,
#stacks_in_17868 .link_effect14stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect14stacks_in_17868 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17868 .link_effect14stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect14stacks_in_17868 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17868 .link_effect14stacks_in_17868 a::before,
#stacks_in_17868 .link_effect14stacks_in_17868 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17868 .link_effect14stacks_in_17868 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17868 .link_effect14stacks_in_17868 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17868 .link_effect14stacks_in_17868 a:hover::after,
#stacks_in_17868 .link_effect14stacks_in_17868 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17868 .link_effect15stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect15stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect15stacks_in_17868 a::before,
#stacks_in_17868 .link_effect15stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect15stacks_in_17868 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17868 .link_effect15stacks_in_17868 a::before,
#stacks_in_17868 .link_effect15stacks_in_17868 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17868 .link_effect15stacks_in_17868 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17868 .link_effect15stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect15stacks_in_17868 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17868 .link_effect15stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect15stacks_in_17868 a:focus::before,
#stacks_in_17868 .link_effect15stacks_in_17868 a:hover::after,
#stacks_in_17868 .link_effect15stacks_in_17868 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17868 .link_effect15stacks_in_17868 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17868 .link_effect15stacks_in_17868 a:hover::after,
#stacks_in_17868 .link_effect15stacks_in_17868 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17868 .link_effect16stacks_in_17868 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a::before,
#stacks_in_17868 .link_effect16stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a:hover {
	color: #d04c3f;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a::before,
#stacks_in_17868 .link_effect16stacks_in_17868 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17868 .link_effect16stacks_in_17868 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17868 .link_effect16stacks_in_17868 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17868 .link_effect16stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect16stacks_in_17868 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17868 .link_effect17stacks_in_17868 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17868 .link_effect17stacks_in_17868 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17868 .link_effect17stacks_in_17868 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17868 .link_effect18stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect18stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect18stacks_in_17868 a::before,
#stacks_in_17868 .link_effect18stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17868 .link_effect18stacks_in_17868 {
}

#stacks_in_17868 .link_effect18stacks_in_17868 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17868 .link_effect18stacks_in_17868 a::before,
#stacks_in_17868 .link_effect18stacks_in_17868 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17868 .link_effect18stacks_in_17868 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17868 .link_effect18stacks_in_17868 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17868 .link_effect18stacks_in_17868 a:hover,
#stacks_in_17868 .link_effect18stacks_in_17868 a:focus {
	color: #fff;
}

#stacks_in_17868 .link_effect18stacks_in_17868 a:hover::before,
#stacks_in_17868 .link_effect18stacks_in_17868 a:focus::before,
#stacks_in_17868 .link_effect18stacks_in_17868 a:hover::after,
#stacks_in_17868 .link_effect18stacks_in_17868 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17868 .link_effect19stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect19stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect19stacks_in_17868 a::before,
#stacks_in_17868 .link_effect19stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17868 a {
}

.link_effect19stacks_in_17868 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17868 a:hover::after,
.link_effect19stacks_in_17868 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17868 .link_effect20stacks_in_17868 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17868 .link_effect20stacks_in_17868 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17868 .link_effect20stacks_in_17868 a::before,
#stacks_in_17868 .link_effect20stacks_in_17868 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17868 a {
}

.link_effect20stacks_in_17868 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17868 a:hover::after,
.link_effect20stacks_in_17868 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17869 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17879 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17879 .borderbuttonthing, #stacks_in_17879 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17879 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17879 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17879 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17873Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17873Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17873Calligrapher h6, .stacks_in_17873Calligrapher h5, .stacks_in_17873Calligrapher h4, .stacks_in_17873Calligrapher h3, .stacks_in_17873Calligrapher h2, .stacks_in_17873Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17873Calligrapher, .stacks_in_17873Calligrapher h1, .stacks_in_17873Calligrapher h2, .stacks_in_17873Calligrapher h3, .stacks_in_17873Calligrapher h4, .stacks_in_17873Calligrapher h5, .stacks_in_17873Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17873targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17873Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17873Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17873Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17873Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17873 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17874 a:before, .link_effect1stacks_in_17874 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17874 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17874 a:hover:before, .link_effect1stacks_in_17874 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17874 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17874 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17874 .link_effect2stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17874 .link_effect2stacks_in_17874 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17874 .link_effect3stacks_in_17874 {
  	text-decoration: none;
}

#stacks_in_17874 .link_effect3stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17874 .link_effect3stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect3stacks_in_17874 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17874 .link_effect4stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect4stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect4stacks_in_17874 a::before,
#stacks_in_17874 .link_effect%stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect4stacks_in_17874 {
}

#stacks_in_17874 .link_effect4stacks_in_17874 a {
	font-weight:normal;;
}

#stacks_in_17874 .link_effect4stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17874 .link_effect4stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect4stacks_in_17874 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17874 .link_effect5stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect5stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect5stacks_in_17874 a::before,
#stacks_in_17874 .link_effect5stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect5stacks_in_17874 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17874 .link_effect5stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17874 .link_effect5stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect5stacks_in_17874 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17874 .link_effect6stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect6stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect6stacks_in_17874 a::before,
#stacks_in_17874 .link_effect6stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect6stacks_in_17874 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17874 .link_effect6stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17874 .link_effect6stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect6stacks_in_17874 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17874 .link_effect7stacks_in_17874 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect7stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect7stacks_in_17874 a::before,
#stacks_in_17874 .link_effect7stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect7stacks_in_17874 {
	position: relative;
}

#stacks_in_17874 .link_effect7stacks_in_17874 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17874 .link_effect7stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17874 .link_effect7stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect7stacks_in_17874 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17874 .link_effect8stacks_in_17874 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect8stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect8stacks_in_17874 a::before,
#stacks_in_17874 .link_effect8stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17874 .link_effect8stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17874 .link_effect8stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect8stacks_in_17874 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17874 .link_effect8stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17874 .link_effect8stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect8stacks_in_17874 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17874 .link_effect9stacks_in_17874 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect9stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect9stacks_in_17874 a::before,
#stacks_in_17874 .link_effect9stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect9stacks_in_17874 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17874 .link_effect9stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect9stacks_in_17874 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17874 .link_effect9stacks_in_17874 a::before,
#stacks_in_17874 .link_effect9stacks_in_17874 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17874 .link_effect9stacks_in_17874 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17874 .link_effect9stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect9stacks_in_17874 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17874 .link_effect9stacks_in_17874 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17874 .link_effect10stacks_in_17874 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect10stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect10stacks_in_17874 a::before,
#stacks_in_17874 .link_effect10stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect10stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17874 .link_effect10stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect10stacks_in_17874 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17874 .link_effect10stacks_in_17874 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17874 .link_effect10stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect10stacks_in_17874 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17874 .link_effect11stacks_in_17874 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17874 .link_effect11stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect11stacks_in_17874 a::before,
#stacks_in_17874 .link_effect11stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect11stacks_in_17874 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17874 .link_effect11stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect11stacks_in_17874 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17874 .link_effect11stacks_in_17874 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17874 .link_effect11stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect11stacks_in_17874 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17874 .link_effect12stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect12stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect12stacks_in_17874 a::before,
#stacks_in_17874 .link_effect12stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect12stacks_in_17874 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17874 .link_effect12stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect12stacks_in_17874 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17874 .link_effect12stacks_in_17874 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17874 .link_effect12stacks_in_17874 a,
#stacks_in_17874 .link_effect12stacks_in_17874 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17874 .link_effect12stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect12stacks_in_17874 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17874 .link_effect13stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect13stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect13stacks_in_17874 a::before,
#stacks_in_17874 .link_effect13stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect13stacks_in_17874 {
}

#stacks_in_17874 .link_effect13stacks_in_17874 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17874 .link_effect13stacks_in_17874 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17874 .link_effect13stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect13stacks_in_17874 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17874 .link_effect14stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect14stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect14stacks_in_17874 a::before,
#stacks_in_17874 .link_effect14stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect14stacks_in_17874 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17874 .link_effect14stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect14stacks_in_17874 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17874 .link_effect14stacks_in_17874 a::before,
#stacks_in_17874 .link_effect14stacks_in_17874 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17874 .link_effect14stacks_in_17874 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17874 .link_effect14stacks_in_17874 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17874 .link_effect14stacks_in_17874 a:hover::after,
#stacks_in_17874 .link_effect14stacks_in_17874 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17874 .link_effect15stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect15stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect15stacks_in_17874 a::before,
#stacks_in_17874 .link_effect15stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect15stacks_in_17874 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17874 .link_effect15stacks_in_17874 a::before,
#stacks_in_17874 .link_effect15stacks_in_17874 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17874 .link_effect15stacks_in_17874 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17874 .link_effect15stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect15stacks_in_17874 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17874 .link_effect15stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect15stacks_in_17874 a:focus::before,
#stacks_in_17874 .link_effect15stacks_in_17874 a:hover::after,
#stacks_in_17874 .link_effect15stacks_in_17874 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17874 .link_effect15stacks_in_17874 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17874 .link_effect15stacks_in_17874 a:hover::after,
#stacks_in_17874 .link_effect15stacks_in_17874 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17874 .link_effect16stacks_in_17874 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a::before,
#stacks_in_17874 .link_effect16stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a:hover {
	color: #d04c3f;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a::before,
#stacks_in_17874 .link_effect16stacks_in_17874 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17874 .link_effect16stacks_in_17874 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17874 .link_effect16stacks_in_17874 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17874 .link_effect16stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect16stacks_in_17874 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17874 .link_effect17stacks_in_17874 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17874 .link_effect17stacks_in_17874 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17874 .link_effect17stacks_in_17874 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17874 .link_effect18stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect18stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect18stacks_in_17874 a::before,
#stacks_in_17874 .link_effect18stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17874 .link_effect18stacks_in_17874 {
}

#stacks_in_17874 .link_effect18stacks_in_17874 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17874 .link_effect18stacks_in_17874 a::before,
#stacks_in_17874 .link_effect18stacks_in_17874 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17874 .link_effect18stacks_in_17874 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17874 .link_effect18stacks_in_17874 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17874 .link_effect18stacks_in_17874 a:hover,
#stacks_in_17874 .link_effect18stacks_in_17874 a:focus {
	color: #fff;
}

#stacks_in_17874 .link_effect18stacks_in_17874 a:hover::before,
#stacks_in_17874 .link_effect18stacks_in_17874 a:focus::before,
#stacks_in_17874 .link_effect18stacks_in_17874 a:hover::after,
#stacks_in_17874 .link_effect18stacks_in_17874 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17874 .link_effect19stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect19stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect19stacks_in_17874 a::before,
#stacks_in_17874 .link_effect19stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17874 a {
}

.link_effect19stacks_in_17874 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17874 a:hover::after,
.link_effect19stacks_in_17874 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17874 .link_effect20stacks_in_17874 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17874 .link_effect20stacks_in_17874 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17874 .link_effect20stacks_in_17874 a::before,
#stacks_in_17874 .link_effect20stacks_in_17874 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17874 a {
}

.link_effect20stacks_in_17874 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17874 a:hover::after,
.link_effect20stacks_in_17874 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17875 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17880 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17880 .borderbuttonthing, #stacks_in_17880 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17880 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17880 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17880 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_16994 article,
#stacks_in_16994 aside,
#stacks_in_16994 details,
#stacks_in_16994 figcaption,
#stacks_in_16994 figure,
#stacks_in_16994 footer,
#stacks_in_16994 header,
#stacks_in_16994 hgroup,
#stacks_in_16994 main,
#stacks_in_16994 nav,
#stacks_in_16994 section,
#stacks_in_16994 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_16994 audio,
#stacks_in_16994 canvas,
#stacks_in_16994 progress,
#stacks_in_16994 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_16994 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_16994 [hidden],
#stacks_in_16994 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_16994 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_16994 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_16994 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_16994 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_16994 code,
#stacks_in_16994 kbd,
#stacks_in_16994 pre,
#stacks_in_16994 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_16994 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_16994 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_16994 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_16994 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_16994 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_16994 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_16994 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_16994 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_16994 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_16994 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_16994 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_16994 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_16994 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_16994 .left {
  float: left !important; }

#stacks_in_16994 .right {
  float: right !important; }

#stacks_in_16994 .clearfix:before,
#stacks_in_16994 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_16994 .clearfix:after {
  clear: both; }

#stacks_in_16994 .hide {
  display: none; }

#stacks_in_16994 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_16994 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_16994 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_16994 select {
  width: 100%; }

#stacks_in_16994 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_16994 .row:before,
#stacks_in_16994 .row:after {
  content: " ";
  display: table; }

#stacks_in_16994 .row:after {
  clear: both; }

#stacks_in_16994 .row.collapse > .column,
#stacks_in_16994 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_16994 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_16994 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_16994 .row .row:before,
#stacks_in_16994 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_16994 .row .row:after {
  clear: both; }

#stacks_in_16994 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_16994 .row .row.collapse:before,
#stacks_in_16994 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_16994 .row .row.collapse:after {
  clear: both; }

#stacks_in_16994 .column,
#stacks_in_16994 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_16994 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_16994 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_16994 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16994 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16994 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16994 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16994 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16994 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16994 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16994 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16994 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16994 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16994 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16994 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16994 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16994 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16994 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16994 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16994 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16994 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16994 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16994 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16994 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16994 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16994 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16994 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16994 .column,
  #stacks_in_16994 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16994 .small-1 {
    width: 8.33333%; }

  #stacks_in_16994 .small-2 {
    width: 16.66667%; }

  #stacks_in_16994 .small-3 {
    width: 25%; }

  #stacks_in_16994 .small-4 {
    width: 33.33333%; }

  #stacks_in_16994 .small-5 {
    width: 41.66667%; }

  #stacks_in_16994 .small-6 {
    width: 50%; }

  #stacks_in_16994 .small-7 {
    width: 58.33333%; }

  #stacks_in_16994 .small-8 {
    width: 66.66667%; }

  #stacks_in_16994 .small-9 {
    width: 75%; }

  #stacks_in_16994 .small-10 {
    width: 83.33333%; }

  #stacks_in_16994 .small-11 {
    width: 91.66667%; }

  #stacks_in_16994 .small-12 {
    width: 100%; }

  #stacks_in_16994 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16994 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16994 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16994 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16994 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16994 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16994 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16994 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16994 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16994 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16994 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16994 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16994 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16994 .column.small-centered,
  #stacks_in_16994 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16994 .column.small-uncentered,
  #stacks_in_16994 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16994 .column.small-centered:last-child,
  #stacks_in_16994 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_16994 .column.small-uncentered:last-child,
  #stacks_in_16994 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_16994 .column.small-uncentered.opposite,
  #stacks_in_16994 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_16994 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16994 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16994 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16994 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16994 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16994 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16994 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16994 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16994 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16994 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16994 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16994 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16994 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16994 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16994 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16994 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16994 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16994 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16994 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16994 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16994 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16994 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16994 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16994 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16994 .column,
  #stacks_in_16994 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16994 .medium-1 {
    width: 8.33333%; }

  #stacks_in_16994 .medium-2 {
    width: 16.66667%; }

  #stacks_in_16994 .medium-3 {
    width: 25%; }

  #stacks_in_16994 .medium-4 {
    width: 33.33333%; }

  #stacks_in_16994 .medium-5 {
    width: 41.66667%; }

  #stacks_in_16994 .medium-6 {
    width: 50%; }

  #stacks_in_16994 .medium-7 {
    width: 58.33333%; }

  #stacks_in_16994 .medium-8 {
    width: 66.66667%; }

  #stacks_in_16994 .medium-9 {
    width: 75%; }

  #stacks_in_16994 .medium-10 {
    width: 83.33333%; }

  #stacks_in_16994 .medium-11 {
    width: 91.66667%; }

  #stacks_in_16994 .medium-12 {
    width: 100%; }

  #stacks_in_16994 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16994 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16994 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16994 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16994 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16994 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16994 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16994 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16994 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16994 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16994 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16994 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16994 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16994 .column.medium-centered,
  #stacks_in_16994 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16994 .column.medium-uncentered,
  #stacks_in_16994 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16994 .column.medium-centered:last-child,
  #stacks_in_16994 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_16994 .column.medium-uncentered:last-child,
  #stacks_in_16994 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_16994 .column.medium-uncentered.opposite,
  #stacks_in_16994 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_16994 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16994 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16994 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16994 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16994 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16994 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16994 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16994 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16994 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16994 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16994 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16994 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16994 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16994 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16994 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16994 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16994 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16994 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16994 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16994 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16994 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16994 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16994 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16994 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_16994 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16994 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16994 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16994 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16994 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16994 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16994 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16994 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16994 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16994 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16994 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16994 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16994 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16994 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16994 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16994 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16994 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16994 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16994 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16994 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16994 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16994 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16994 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16994 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_16994 .column,
  #stacks_in_16994 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_16994 .large-1 {
    width: 8.33333%; }

  #stacks_in_16994 .large-2 {
    width: 16.66667%; }

  #stacks_in_16994 .large-3 {
    width: 25%; }

  #stacks_in_16994 .large-4 {
    width: 33.33333%; }

  #stacks_in_16994 .large-5 {
    width: 41.66667%; }

  #stacks_in_16994 .large-6 {
    width: 50%; }

  #stacks_in_16994 .large-7 {
    width: 58.33333%; }

  #stacks_in_16994 .large-8 {
    width: 66.66667%; }

  #stacks_in_16994 .large-9 {
    width: 75%; }

  #stacks_in_16994 .large-10 {
    width: 83.33333%; }

  #stacks_in_16994 .large-11 {
    width: 91.66667%; }

  #stacks_in_16994 .large-12 {
    width: 100%; }

  #stacks_in_16994 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_16994 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_16994 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_16994 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_16994 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_16994 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_16994 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_16994 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_16994 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_16994 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_16994 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_16994 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_16994 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_16994 .column.large-centered,
  #stacks_in_16994 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_16994 .column.large-uncentered,
  #stacks_in_16994 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_16994 .column.large-centered:last-child,
  #stacks_in_16994 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_16994 .column.large-uncentered:last-child,
  #stacks_in_16994 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_16994 .column.large-uncentered.opposite,
  #stacks_in_16994 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_16994 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_16994 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_16994 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_16994 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_16994 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_16994 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_16994 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_16994 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_16994 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_16994 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_16994 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_16994 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_16994 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_16994 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_16994 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_16994 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_16994 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_16994 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_16994 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_16994 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_16994 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_16994 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_16994 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_16994 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_16994 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_16994 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_16994 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_16994 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_16994 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_16994 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_16994 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_16994 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16994 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16994 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_16994 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16994 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16994 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_16994 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_16994 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_16994 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_16994 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17461Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17461Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17461Calligrapher h6, .stacks_in_17461Calligrapher h5, .stacks_in_17461Calligrapher h4, .stacks_in_17461Calligrapher h3, .stacks_in_17461Calligrapher h2, .stacks_in_17461Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17461Calligrapher, .stacks_in_17461Calligrapher h1, .stacks_in_17461Calligrapher h2, .stacks_in_17461Calligrapher h3, .stacks_in_17461Calligrapher h4, .stacks_in_17461Calligrapher h5, .stacks_in_17461Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17461targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17461Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17461Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17461Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17461Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17461 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17462 a:before, .link_effect1stacks_in_17462 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17462 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17462 a:hover:before, .link_effect1stacks_in_17462 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17462 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17462 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17462 .link_effect2stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17462 .link_effect2stacks_in_17462 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17462 .link_effect3stacks_in_17462 {
  	text-decoration: none;
}

#stacks_in_17462 .link_effect3stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17462 .link_effect3stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect3stacks_in_17462 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17462 .link_effect4stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect4stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect4stacks_in_17462 a::before,
#stacks_in_17462 .link_effect%stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect4stacks_in_17462 {
}

#stacks_in_17462 .link_effect4stacks_in_17462 a {
	font-weight:normal;;
}

#stacks_in_17462 .link_effect4stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17462 .link_effect4stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect4stacks_in_17462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17462 .link_effect5stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect5stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect5stacks_in_17462 a::before,
#stacks_in_17462 .link_effect5stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect5stacks_in_17462 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17462 .link_effect5stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17462 .link_effect5stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect5stacks_in_17462 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17462 .link_effect6stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect6stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect6stacks_in_17462 a::before,
#stacks_in_17462 .link_effect6stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect6stacks_in_17462 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17462 .link_effect6stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17462 .link_effect6stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect6stacks_in_17462 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17462 .link_effect7stacks_in_17462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect7stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect7stacks_in_17462 a::before,
#stacks_in_17462 .link_effect7stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect7stacks_in_17462 {
	position: relative;
}

#stacks_in_17462 .link_effect7stacks_in_17462 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17462 .link_effect7stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17462 .link_effect7stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect7stacks_in_17462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17462 .link_effect8stacks_in_17462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect8stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect8stacks_in_17462 a::before,
#stacks_in_17462 .link_effect8stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17462 .link_effect8stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17462 .link_effect8stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect8stacks_in_17462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17462 .link_effect8stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17462 .link_effect8stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect8stacks_in_17462 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17462 .link_effect9stacks_in_17462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect9stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect9stacks_in_17462 a::before,
#stacks_in_17462 .link_effect9stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect9stacks_in_17462 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17462 .link_effect9stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect9stacks_in_17462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17462 .link_effect9stacks_in_17462 a::before,
#stacks_in_17462 .link_effect9stacks_in_17462 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17462 .link_effect9stacks_in_17462 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17462 .link_effect9stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect9stacks_in_17462 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17462 .link_effect9stacks_in_17462 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17462 .link_effect10stacks_in_17462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect10stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect10stacks_in_17462 a::before,
#stacks_in_17462 .link_effect10stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect10stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17462 .link_effect10stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect10stacks_in_17462 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17462 .link_effect10stacks_in_17462 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17462 .link_effect10stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect10stacks_in_17462 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17462 .link_effect11stacks_in_17462 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17462 .link_effect11stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect11stacks_in_17462 a::before,
#stacks_in_17462 .link_effect11stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect11stacks_in_17462 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17462 .link_effect11stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect11stacks_in_17462 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17462 .link_effect11stacks_in_17462 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17462 .link_effect11stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect11stacks_in_17462 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17462 .link_effect12stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect12stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect12stacks_in_17462 a::before,
#stacks_in_17462 .link_effect12stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect12stacks_in_17462 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17462 .link_effect12stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect12stacks_in_17462 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17462 .link_effect12stacks_in_17462 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17462 .link_effect12stacks_in_17462 a,
#stacks_in_17462 .link_effect12stacks_in_17462 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17462 .link_effect12stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect12stacks_in_17462 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17462 .link_effect13stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect13stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect13stacks_in_17462 a::before,
#stacks_in_17462 .link_effect13stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect13stacks_in_17462 {
}

#stacks_in_17462 .link_effect13stacks_in_17462 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17462 .link_effect13stacks_in_17462 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17462 .link_effect13stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect13stacks_in_17462 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17462 .link_effect14stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect14stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect14stacks_in_17462 a::before,
#stacks_in_17462 .link_effect14stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect14stacks_in_17462 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17462 .link_effect14stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect14stacks_in_17462 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17462 .link_effect14stacks_in_17462 a::before,
#stacks_in_17462 .link_effect14stacks_in_17462 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17462 .link_effect14stacks_in_17462 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17462 .link_effect14stacks_in_17462 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17462 .link_effect14stacks_in_17462 a:hover::after,
#stacks_in_17462 .link_effect14stacks_in_17462 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17462 .link_effect15stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect15stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect15stacks_in_17462 a::before,
#stacks_in_17462 .link_effect15stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect15stacks_in_17462 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17462 .link_effect15stacks_in_17462 a::before,
#stacks_in_17462 .link_effect15stacks_in_17462 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17462 .link_effect15stacks_in_17462 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17462 .link_effect15stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect15stacks_in_17462 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17462 .link_effect15stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect15stacks_in_17462 a:focus::before,
#stacks_in_17462 .link_effect15stacks_in_17462 a:hover::after,
#stacks_in_17462 .link_effect15stacks_in_17462 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17462 .link_effect15stacks_in_17462 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17462 .link_effect15stacks_in_17462 a:hover::after,
#stacks_in_17462 .link_effect15stacks_in_17462 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17462 .link_effect16stacks_in_17462 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a::before,
#stacks_in_17462 .link_effect16stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a:hover {
	color: #d04c3f;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a::before,
#stacks_in_17462 .link_effect16stacks_in_17462 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17462 .link_effect16stacks_in_17462 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17462 .link_effect16stacks_in_17462 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17462 .link_effect16stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect16stacks_in_17462 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17462 .link_effect17stacks_in_17462 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17462 .link_effect17stacks_in_17462 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17462 .link_effect17stacks_in_17462 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17462 .link_effect18stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect18stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect18stacks_in_17462 a::before,
#stacks_in_17462 .link_effect18stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17462 .link_effect18stacks_in_17462 {
}

#stacks_in_17462 .link_effect18stacks_in_17462 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17462 .link_effect18stacks_in_17462 a::before,
#stacks_in_17462 .link_effect18stacks_in_17462 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17462 .link_effect18stacks_in_17462 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17462 .link_effect18stacks_in_17462 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17462 .link_effect18stacks_in_17462 a:hover,
#stacks_in_17462 .link_effect18stacks_in_17462 a:focus {
	color: #fff;
}

#stacks_in_17462 .link_effect18stacks_in_17462 a:hover::before,
#stacks_in_17462 .link_effect18stacks_in_17462 a:focus::before,
#stacks_in_17462 .link_effect18stacks_in_17462 a:hover::after,
#stacks_in_17462 .link_effect18stacks_in_17462 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17462 .link_effect19stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect19stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect19stacks_in_17462 a::before,
#stacks_in_17462 .link_effect19stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17462 a {
}

.link_effect19stacks_in_17462 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17462 a:hover::after,
.link_effect19stacks_in_17462 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17462 .link_effect20stacks_in_17462 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17462 .link_effect20stacks_in_17462 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17462 .link_effect20stacks_in_17462 a::before,
#stacks_in_17462 .link_effect20stacks_in_17462 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17462 a {
}

.link_effect20stacks_in_17462 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17462 a:hover::after,
.link_effect20stacks_in_17462 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17463 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17467 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17467 .borderbuttonthing, #stacks_in_17467 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17467 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17467 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17467 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17310Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17310Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17310Calligrapher h6, .stacks_in_17310Calligrapher h5, .stacks_in_17310Calligrapher h4, .stacks_in_17310Calligrapher h3, .stacks_in_17310Calligrapher h2, .stacks_in_17310Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17310Calligrapher, .stacks_in_17310Calligrapher h1, .stacks_in_17310Calligrapher h2, .stacks_in_17310Calligrapher h3, .stacks_in_17310Calligrapher h4, .stacks_in_17310Calligrapher h5, .stacks_in_17310Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17310targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17310Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17310Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17310Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17310Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17310 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17311 a:before, .link_effect1stacks_in_17311 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17311 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17311 a:hover:before, .link_effect1stacks_in_17311 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17311 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17311 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17311 .link_effect2stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17311 .link_effect2stacks_in_17311 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17311 .link_effect3stacks_in_17311 {
  	text-decoration: none;
}

#stacks_in_17311 .link_effect3stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17311 .link_effect3stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect3stacks_in_17311 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17311 .link_effect4stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect4stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect4stacks_in_17311 a::before,
#stacks_in_17311 .link_effect%stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect4stacks_in_17311 {
}

#stacks_in_17311 .link_effect4stacks_in_17311 a {
	font-weight:normal;;
}

#stacks_in_17311 .link_effect4stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17311 .link_effect4stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect4stacks_in_17311 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17311 .link_effect5stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect5stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect5stacks_in_17311 a::before,
#stacks_in_17311 .link_effect5stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect5stacks_in_17311 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17311 .link_effect5stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17311 .link_effect5stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect5stacks_in_17311 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17311 .link_effect6stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect6stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect6stacks_in_17311 a::before,
#stacks_in_17311 .link_effect6stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect6stacks_in_17311 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17311 .link_effect6stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17311 .link_effect6stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect6stacks_in_17311 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17311 .link_effect7stacks_in_17311 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect7stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect7stacks_in_17311 a::before,
#stacks_in_17311 .link_effect7stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect7stacks_in_17311 {
	position: relative;
}

#stacks_in_17311 .link_effect7stacks_in_17311 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17311 .link_effect7stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17311 .link_effect7stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect7stacks_in_17311 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17311 .link_effect8stacks_in_17311 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect8stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect8stacks_in_17311 a::before,
#stacks_in_17311 .link_effect8stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17311 .link_effect8stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17311 .link_effect8stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect8stacks_in_17311 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17311 .link_effect8stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17311 .link_effect8stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect8stacks_in_17311 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17311 .link_effect9stacks_in_17311 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect9stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect9stacks_in_17311 a::before,
#stacks_in_17311 .link_effect9stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect9stacks_in_17311 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17311 .link_effect9stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect9stacks_in_17311 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17311 .link_effect9stacks_in_17311 a::before,
#stacks_in_17311 .link_effect9stacks_in_17311 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17311 .link_effect9stacks_in_17311 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17311 .link_effect9stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect9stacks_in_17311 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17311 .link_effect9stacks_in_17311 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17311 .link_effect10stacks_in_17311 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect10stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect10stacks_in_17311 a::before,
#stacks_in_17311 .link_effect10stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect10stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17311 .link_effect10stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect10stacks_in_17311 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17311 .link_effect10stacks_in_17311 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17311 .link_effect10stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect10stacks_in_17311 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17311 .link_effect11stacks_in_17311 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17311 .link_effect11stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect11stacks_in_17311 a::before,
#stacks_in_17311 .link_effect11stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect11stacks_in_17311 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17311 .link_effect11stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect11stacks_in_17311 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17311 .link_effect11stacks_in_17311 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17311 .link_effect11stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect11stacks_in_17311 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17311 .link_effect12stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect12stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect12stacks_in_17311 a::before,
#stacks_in_17311 .link_effect12stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect12stacks_in_17311 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17311 .link_effect12stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect12stacks_in_17311 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17311 .link_effect12stacks_in_17311 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17311 .link_effect12stacks_in_17311 a,
#stacks_in_17311 .link_effect12stacks_in_17311 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17311 .link_effect12stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect12stacks_in_17311 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17311 .link_effect13stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect13stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect13stacks_in_17311 a::before,
#stacks_in_17311 .link_effect13stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect13stacks_in_17311 {
}

#stacks_in_17311 .link_effect13stacks_in_17311 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17311 .link_effect13stacks_in_17311 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17311 .link_effect13stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect13stacks_in_17311 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17311 .link_effect14stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect14stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect14stacks_in_17311 a::before,
#stacks_in_17311 .link_effect14stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect14stacks_in_17311 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17311 .link_effect14stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect14stacks_in_17311 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17311 .link_effect14stacks_in_17311 a::before,
#stacks_in_17311 .link_effect14stacks_in_17311 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17311 .link_effect14stacks_in_17311 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17311 .link_effect14stacks_in_17311 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17311 .link_effect14stacks_in_17311 a:hover::after,
#stacks_in_17311 .link_effect14stacks_in_17311 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17311 .link_effect15stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect15stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect15stacks_in_17311 a::before,
#stacks_in_17311 .link_effect15stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect15stacks_in_17311 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17311 .link_effect15stacks_in_17311 a::before,
#stacks_in_17311 .link_effect15stacks_in_17311 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17311 .link_effect15stacks_in_17311 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17311 .link_effect15stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect15stacks_in_17311 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17311 .link_effect15stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect15stacks_in_17311 a:focus::before,
#stacks_in_17311 .link_effect15stacks_in_17311 a:hover::after,
#stacks_in_17311 .link_effect15stacks_in_17311 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17311 .link_effect15stacks_in_17311 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17311 .link_effect15stacks_in_17311 a:hover::after,
#stacks_in_17311 .link_effect15stacks_in_17311 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17311 .link_effect16stacks_in_17311 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a::before,
#stacks_in_17311 .link_effect16stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a:hover {
	color: #d04c3f;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a::before,
#stacks_in_17311 .link_effect16stacks_in_17311 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17311 .link_effect16stacks_in_17311 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17311 .link_effect16stacks_in_17311 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17311 .link_effect16stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect16stacks_in_17311 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17311 .link_effect17stacks_in_17311 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17311 .link_effect17stacks_in_17311 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17311 .link_effect17stacks_in_17311 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17311 .link_effect18stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect18stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect18stacks_in_17311 a::before,
#stacks_in_17311 .link_effect18stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17311 .link_effect18stacks_in_17311 {
}

#stacks_in_17311 .link_effect18stacks_in_17311 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17311 .link_effect18stacks_in_17311 a::before,
#stacks_in_17311 .link_effect18stacks_in_17311 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17311 .link_effect18stacks_in_17311 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17311 .link_effect18stacks_in_17311 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17311 .link_effect18stacks_in_17311 a:hover,
#stacks_in_17311 .link_effect18stacks_in_17311 a:focus {
	color: #fff;
}

#stacks_in_17311 .link_effect18stacks_in_17311 a:hover::before,
#stacks_in_17311 .link_effect18stacks_in_17311 a:focus::before,
#stacks_in_17311 .link_effect18stacks_in_17311 a:hover::after,
#stacks_in_17311 .link_effect18stacks_in_17311 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17311 .link_effect19stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect19stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect19stacks_in_17311 a::before,
#stacks_in_17311 .link_effect19stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17311 a {
}

.link_effect19stacks_in_17311 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17311 a:hover::after,
.link_effect19stacks_in_17311 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17311 .link_effect20stacks_in_17311 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17311 .link_effect20stacks_in_17311 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17311 .link_effect20stacks_in_17311 a::before,
#stacks_in_17311 .link_effect20stacks_in_17311 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17311 a {
}

.link_effect20stacks_in_17311 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17311 a:hover::after,
.link_effect20stacks_in_17311 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17312 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_16910 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_16910 .borderbuttonthing, #stacks_in_16910 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_16910 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_16910 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_16910 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17357Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17357Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17357Calligrapher h6, .stacks_in_17357Calligrapher h5, .stacks_in_17357Calligrapher h4, .stacks_in_17357Calligrapher h3, .stacks_in_17357Calligrapher h2, .stacks_in_17357Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17357Calligrapher, .stacks_in_17357Calligrapher h1, .stacks_in_17357Calligrapher h2, .stacks_in_17357Calligrapher h3, .stacks_in_17357Calligrapher h4, .stacks_in_17357Calligrapher h5, .stacks_in_17357Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17357targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17357Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17357Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17357Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17357Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17357 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17358 a:before, .link_effect1stacks_in_17358 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17358 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17358 a:hover:before, .link_effect1stacks_in_17358 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17358 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17358 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17358 .link_effect2stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17358 .link_effect2stacks_in_17358 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17358 .link_effect3stacks_in_17358 {
  	text-decoration: none;
}

#stacks_in_17358 .link_effect3stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17358 .link_effect3stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect3stacks_in_17358 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17358 .link_effect4stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect4stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect4stacks_in_17358 a::before,
#stacks_in_17358 .link_effect%stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect4stacks_in_17358 {
}

#stacks_in_17358 .link_effect4stacks_in_17358 a {
	font-weight:normal;;
}

#stacks_in_17358 .link_effect4stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17358 .link_effect4stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect4stacks_in_17358 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17358 .link_effect5stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect5stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect5stacks_in_17358 a::before,
#stacks_in_17358 .link_effect5stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect5stacks_in_17358 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17358 .link_effect5stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17358 .link_effect5stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect5stacks_in_17358 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17358 .link_effect6stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect6stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect6stacks_in_17358 a::before,
#stacks_in_17358 .link_effect6stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect6stacks_in_17358 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17358 .link_effect6stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17358 .link_effect6stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect6stacks_in_17358 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17358 .link_effect7stacks_in_17358 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect7stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect7stacks_in_17358 a::before,
#stacks_in_17358 .link_effect7stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect7stacks_in_17358 {
	position: relative;
}

#stacks_in_17358 .link_effect7stacks_in_17358 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17358 .link_effect7stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17358 .link_effect7stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect7stacks_in_17358 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17358 .link_effect8stacks_in_17358 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect8stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect8stacks_in_17358 a::before,
#stacks_in_17358 .link_effect8stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17358 .link_effect8stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17358 .link_effect8stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect8stacks_in_17358 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17358 .link_effect8stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17358 .link_effect8stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect8stacks_in_17358 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17358 .link_effect9stacks_in_17358 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect9stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect9stacks_in_17358 a::before,
#stacks_in_17358 .link_effect9stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect9stacks_in_17358 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17358 .link_effect9stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect9stacks_in_17358 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17358 .link_effect9stacks_in_17358 a::before,
#stacks_in_17358 .link_effect9stacks_in_17358 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17358 .link_effect9stacks_in_17358 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17358 .link_effect9stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect9stacks_in_17358 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17358 .link_effect9stacks_in_17358 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17358 .link_effect10stacks_in_17358 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect10stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect10stacks_in_17358 a::before,
#stacks_in_17358 .link_effect10stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect10stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17358 .link_effect10stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect10stacks_in_17358 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17358 .link_effect10stacks_in_17358 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17358 .link_effect10stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect10stacks_in_17358 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17358 .link_effect11stacks_in_17358 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17358 .link_effect11stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect11stacks_in_17358 a::before,
#stacks_in_17358 .link_effect11stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect11stacks_in_17358 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17358 .link_effect11stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect11stacks_in_17358 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17358 .link_effect11stacks_in_17358 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17358 .link_effect11stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect11stacks_in_17358 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17358 .link_effect12stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect12stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect12stacks_in_17358 a::before,
#stacks_in_17358 .link_effect12stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect12stacks_in_17358 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17358 .link_effect12stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect12stacks_in_17358 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17358 .link_effect12stacks_in_17358 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17358 .link_effect12stacks_in_17358 a,
#stacks_in_17358 .link_effect12stacks_in_17358 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17358 .link_effect12stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect12stacks_in_17358 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17358 .link_effect13stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect13stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect13stacks_in_17358 a::before,
#stacks_in_17358 .link_effect13stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect13stacks_in_17358 {
}

#stacks_in_17358 .link_effect13stacks_in_17358 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17358 .link_effect13stacks_in_17358 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17358 .link_effect13stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect13stacks_in_17358 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17358 .link_effect14stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect14stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect14stacks_in_17358 a::before,
#stacks_in_17358 .link_effect14stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect14stacks_in_17358 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17358 .link_effect14stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect14stacks_in_17358 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17358 .link_effect14stacks_in_17358 a::before,
#stacks_in_17358 .link_effect14stacks_in_17358 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17358 .link_effect14stacks_in_17358 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17358 .link_effect14stacks_in_17358 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17358 .link_effect14stacks_in_17358 a:hover::after,
#stacks_in_17358 .link_effect14stacks_in_17358 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17358 .link_effect15stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect15stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect15stacks_in_17358 a::before,
#stacks_in_17358 .link_effect15stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect15stacks_in_17358 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17358 .link_effect15stacks_in_17358 a::before,
#stacks_in_17358 .link_effect15stacks_in_17358 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17358 .link_effect15stacks_in_17358 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17358 .link_effect15stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect15stacks_in_17358 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17358 .link_effect15stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect15stacks_in_17358 a:focus::before,
#stacks_in_17358 .link_effect15stacks_in_17358 a:hover::after,
#stacks_in_17358 .link_effect15stacks_in_17358 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17358 .link_effect15stacks_in_17358 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17358 .link_effect15stacks_in_17358 a:hover::after,
#stacks_in_17358 .link_effect15stacks_in_17358 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17358 .link_effect16stacks_in_17358 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a::before,
#stacks_in_17358 .link_effect16stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a:hover {
	color: #d04c3f;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a::before,
#stacks_in_17358 .link_effect16stacks_in_17358 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17358 .link_effect16stacks_in_17358 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17358 .link_effect16stacks_in_17358 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17358 .link_effect16stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect16stacks_in_17358 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17358 .link_effect17stacks_in_17358 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17358 .link_effect17stacks_in_17358 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17358 .link_effect17stacks_in_17358 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17358 .link_effect18stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect18stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect18stacks_in_17358 a::before,
#stacks_in_17358 .link_effect18stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17358 .link_effect18stacks_in_17358 {
}

#stacks_in_17358 .link_effect18stacks_in_17358 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17358 .link_effect18stacks_in_17358 a::before,
#stacks_in_17358 .link_effect18stacks_in_17358 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17358 .link_effect18stacks_in_17358 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17358 .link_effect18stacks_in_17358 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17358 .link_effect18stacks_in_17358 a:hover,
#stacks_in_17358 .link_effect18stacks_in_17358 a:focus {
	color: #fff;
}

#stacks_in_17358 .link_effect18stacks_in_17358 a:hover::before,
#stacks_in_17358 .link_effect18stacks_in_17358 a:focus::before,
#stacks_in_17358 .link_effect18stacks_in_17358 a:hover::after,
#stacks_in_17358 .link_effect18stacks_in_17358 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17358 .link_effect19stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect19stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect19stacks_in_17358 a::before,
#stacks_in_17358 .link_effect19stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17358 a {
}

.link_effect19stacks_in_17358 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17358 a:hover::after,
.link_effect19stacks_in_17358 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17358 .link_effect20stacks_in_17358 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17358 .link_effect20stacks_in_17358 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17358 .link_effect20stacks_in_17358 a::before,
#stacks_in_17358 .link_effect20stacks_in_17358 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17358 a {
}

.link_effect20stacks_in_17358 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17358 a:hover::after,
.link_effect20stacks_in_17358 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17359 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_16912 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_16912 .borderbuttonthing, #stacks_in_16912 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_16912 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_16912 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_16912 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17023 article,
#stacks_in_17023 aside,
#stacks_in_17023 details,
#stacks_in_17023 figcaption,
#stacks_in_17023 figure,
#stacks_in_17023 footer,
#stacks_in_17023 header,
#stacks_in_17023 hgroup,
#stacks_in_17023 main,
#stacks_in_17023 nav,
#stacks_in_17023 section,
#stacks_in_17023 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17023 audio,
#stacks_in_17023 canvas,
#stacks_in_17023 progress,
#stacks_in_17023 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17023 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17023 [hidden],
#stacks_in_17023 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17023 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17023 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17023 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17023 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17023 code,
#stacks_in_17023 kbd,
#stacks_in_17023 pre,
#stacks_in_17023 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17023 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17023 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17023 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17023 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17023 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17023 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17023 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17023 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17023 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17023 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17023 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17023 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17023 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17023 .left {
  float: left !important; }

#stacks_in_17023 .right {
  float: right !important; }

#stacks_in_17023 .clearfix:before,
#stacks_in_17023 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17023 .clearfix:after {
  clear: both; }

#stacks_in_17023 .hide {
  display: none; }

#stacks_in_17023 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17023 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17023 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17023 select {
  width: 100%; }

#stacks_in_17023 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17023 .row:before,
#stacks_in_17023 .row:after {
  content: " ";
  display: table; }

#stacks_in_17023 .row:after {
  clear: both; }

#stacks_in_17023 .row.collapse > .column,
#stacks_in_17023 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17023 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17023 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17023 .row .row:before,
#stacks_in_17023 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17023 .row .row:after {
  clear: both; }

#stacks_in_17023 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17023 .row .row.collapse:before,
#stacks_in_17023 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17023 .row .row.collapse:after {
  clear: both; }

#stacks_in_17023 .column,
#stacks_in_17023 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17023 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17023 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17023 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17023 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17023 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17023 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17023 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17023 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17023 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17023 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17023 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17023 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17023 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17023 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17023 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17023 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17023 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17023 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17023 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17023 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17023 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17023 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17023 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17023 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17023 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17023 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17023 .column,
  #stacks_in_17023 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17023 .small-1 {
    width: 8.33333%; }

  #stacks_in_17023 .small-2 {
    width: 16.66667%; }

  #stacks_in_17023 .small-3 {
    width: 25%; }

  #stacks_in_17023 .small-4 {
    width: 33.33333%; }

  #stacks_in_17023 .small-5 {
    width: 41.66667%; }

  #stacks_in_17023 .small-6 {
    width: 50%; }

  #stacks_in_17023 .small-7 {
    width: 58.33333%; }

  #stacks_in_17023 .small-8 {
    width: 66.66667%; }

  #stacks_in_17023 .small-9 {
    width: 75%; }

  #stacks_in_17023 .small-10 {
    width: 83.33333%; }

  #stacks_in_17023 .small-11 {
    width: 91.66667%; }

  #stacks_in_17023 .small-12 {
    width: 100%; }

  #stacks_in_17023 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17023 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17023 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17023 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17023 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17023 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17023 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17023 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17023 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17023 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17023 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17023 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17023 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17023 .column.small-centered,
  #stacks_in_17023 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17023 .column.small-uncentered,
  #stacks_in_17023 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17023 .column.small-centered:last-child,
  #stacks_in_17023 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17023 .column.small-uncentered:last-child,
  #stacks_in_17023 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17023 .column.small-uncentered.opposite,
  #stacks_in_17023 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17023 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17023 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17023 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17023 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17023 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17023 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17023 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17023 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17023 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17023 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17023 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17023 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17023 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17023 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17023 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17023 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17023 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17023 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17023 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17023 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17023 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17023 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17023 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17023 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17023 .column,
  #stacks_in_17023 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17023 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17023 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17023 .medium-3 {
    width: 25%; }

  #stacks_in_17023 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17023 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17023 .medium-6 {
    width: 50%; }

  #stacks_in_17023 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17023 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17023 .medium-9 {
    width: 75%; }

  #stacks_in_17023 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17023 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17023 .medium-12 {
    width: 100%; }

  #stacks_in_17023 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17023 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17023 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17023 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17023 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17023 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17023 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17023 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17023 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17023 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17023 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17023 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17023 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17023 .column.medium-centered,
  #stacks_in_17023 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17023 .column.medium-uncentered,
  #stacks_in_17023 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17023 .column.medium-centered:last-child,
  #stacks_in_17023 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17023 .column.medium-uncentered:last-child,
  #stacks_in_17023 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17023 .column.medium-uncentered.opposite,
  #stacks_in_17023 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17023 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17023 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17023 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17023 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17023 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17023 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17023 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17023 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17023 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17023 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17023 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17023 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17023 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17023 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17023 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17023 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17023 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17023 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17023 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17023 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17023 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17023 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17023 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17023 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17023 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17023 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17023 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17023 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17023 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17023 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17023 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17023 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17023 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17023 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17023 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17023 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17023 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17023 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17023 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17023 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17023 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17023 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17023 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17023 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17023 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17023 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17023 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17023 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17023 .column,
  #stacks_in_17023 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17023 .large-1 {
    width: 8.33333%; }

  #stacks_in_17023 .large-2 {
    width: 16.66667%; }

  #stacks_in_17023 .large-3 {
    width: 25%; }

  #stacks_in_17023 .large-4 {
    width: 33.33333%; }

  #stacks_in_17023 .large-5 {
    width: 41.66667%; }

  #stacks_in_17023 .large-6 {
    width: 50%; }

  #stacks_in_17023 .large-7 {
    width: 58.33333%; }

  #stacks_in_17023 .large-8 {
    width: 66.66667%; }

  #stacks_in_17023 .large-9 {
    width: 75%; }

  #stacks_in_17023 .large-10 {
    width: 83.33333%; }

  #stacks_in_17023 .large-11 {
    width: 91.66667%; }

  #stacks_in_17023 .large-12 {
    width: 100%; }

  #stacks_in_17023 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17023 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17023 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17023 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17023 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17023 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17023 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17023 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17023 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17023 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17023 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17023 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17023 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17023 .column.large-centered,
  #stacks_in_17023 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17023 .column.large-uncentered,
  #stacks_in_17023 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17023 .column.large-centered:last-child,
  #stacks_in_17023 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17023 .column.large-uncentered:last-child,
  #stacks_in_17023 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17023 .column.large-uncentered.opposite,
  #stacks_in_17023 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17023 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17023 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17023 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17023 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17023 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17023 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17023 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17023 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17023 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17023 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17023 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17023 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17023 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17023 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17023 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17023 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17023 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17023 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17023 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17023 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17023 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17023 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17023 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17023 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17023 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17023 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17023 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17023 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17023 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17023 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17023 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17023 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17023 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17023 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17023 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17023 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17023 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17023 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17023 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17023 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17023 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17351Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17351Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17351Calligrapher h6, .stacks_in_17351Calligrapher h5, .stacks_in_17351Calligrapher h4, .stacks_in_17351Calligrapher h3, .stacks_in_17351Calligrapher h2, .stacks_in_17351Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17351Calligrapher, .stacks_in_17351Calligrapher h1, .stacks_in_17351Calligrapher h2, .stacks_in_17351Calligrapher h3, .stacks_in_17351Calligrapher h4, .stacks_in_17351Calligrapher h5, .stacks_in_17351Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17351targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17351Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17351Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17351Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17351Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17351 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17352 a:before, .link_effect1stacks_in_17352 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17352 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17352 a:hover:before, .link_effect1stacks_in_17352 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17352 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17352 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17352 .link_effect2stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17352 .link_effect2stacks_in_17352 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17352 .link_effect3stacks_in_17352 {
  	text-decoration: none;
}

#stacks_in_17352 .link_effect3stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17352 .link_effect3stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect3stacks_in_17352 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17352 .link_effect4stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect4stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect4stacks_in_17352 a::before,
#stacks_in_17352 .link_effect%stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect4stacks_in_17352 {
}

#stacks_in_17352 .link_effect4stacks_in_17352 a {
	font-weight:normal;;
}

#stacks_in_17352 .link_effect4stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17352 .link_effect4stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect4stacks_in_17352 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17352 .link_effect5stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect5stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect5stacks_in_17352 a::before,
#stacks_in_17352 .link_effect5stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect5stacks_in_17352 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17352 .link_effect5stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17352 .link_effect5stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect5stacks_in_17352 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17352 .link_effect6stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect6stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect6stacks_in_17352 a::before,
#stacks_in_17352 .link_effect6stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect6stacks_in_17352 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17352 .link_effect6stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17352 .link_effect6stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect6stacks_in_17352 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17352 .link_effect7stacks_in_17352 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect7stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect7stacks_in_17352 a::before,
#stacks_in_17352 .link_effect7stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect7stacks_in_17352 {
	position: relative;
}

#stacks_in_17352 .link_effect7stacks_in_17352 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17352 .link_effect7stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17352 .link_effect7stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect7stacks_in_17352 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17352 .link_effect8stacks_in_17352 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect8stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect8stacks_in_17352 a::before,
#stacks_in_17352 .link_effect8stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17352 .link_effect8stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17352 .link_effect8stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect8stacks_in_17352 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17352 .link_effect8stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17352 .link_effect8stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect8stacks_in_17352 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17352 .link_effect9stacks_in_17352 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect9stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect9stacks_in_17352 a::before,
#stacks_in_17352 .link_effect9stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect9stacks_in_17352 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17352 .link_effect9stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect9stacks_in_17352 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17352 .link_effect9stacks_in_17352 a::before,
#stacks_in_17352 .link_effect9stacks_in_17352 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17352 .link_effect9stacks_in_17352 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17352 .link_effect9stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect9stacks_in_17352 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17352 .link_effect9stacks_in_17352 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17352 .link_effect10stacks_in_17352 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect10stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect10stacks_in_17352 a::before,
#stacks_in_17352 .link_effect10stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect10stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17352 .link_effect10stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect10stacks_in_17352 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17352 .link_effect10stacks_in_17352 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17352 .link_effect10stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect10stacks_in_17352 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17352 .link_effect11stacks_in_17352 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17352 .link_effect11stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect11stacks_in_17352 a::before,
#stacks_in_17352 .link_effect11stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect11stacks_in_17352 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17352 .link_effect11stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect11stacks_in_17352 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17352 .link_effect11stacks_in_17352 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17352 .link_effect11stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect11stacks_in_17352 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17352 .link_effect12stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect12stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect12stacks_in_17352 a::before,
#stacks_in_17352 .link_effect12stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect12stacks_in_17352 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17352 .link_effect12stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect12stacks_in_17352 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17352 .link_effect12stacks_in_17352 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17352 .link_effect12stacks_in_17352 a,
#stacks_in_17352 .link_effect12stacks_in_17352 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17352 .link_effect12stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect12stacks_in_17352 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17352 .link_effect13stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect13stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect13stacks_in_17352 a::before,
#stacks_in_17352 .link_effect13stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect13stacks_in_17352 {
}

#stacks_in_17352 .link_effect13stacks_in_17352 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17352 .link_effect13stacks_in_17352 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17352 .link_effect13stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect13stacks_in_17352 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17352 .link_effect14stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect14stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect14stacks_in_17352 a::before,
#stacks_in_17352 .link_effect14stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect14stacks_in_17352 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17352 .link_effect14stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect14stacks_in_17352 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17352 .link_effect14stacks_in_17352 a::before,
#stacks_in_17352 .link_effect14stacks_in_17352 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17352 .link_effect14stacks_in_17352 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17352 .link_effect14stacks_in_17352 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17352 .link_effect14stacks_in_17352 a:hover::after,
#stacks_in_17352 .link_effect14stacks_in_17352 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17352 .link_effect15stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect15stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect15stacks_in_17352 a::before,
#stacks_in_17352 .link_effect15stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect15stacks_in_17352 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17352 .link_effect15stacks_in_17352 a::before,
#stacks_in_17352 .link_effect15stacks_in_17352 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17352 .link_effect15stacks_in_17352 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17352 .link_effect15stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect15stacks_in_17352 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17352 .link_effect15stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect15stacks_in_17352 a:focus::before,
#stacks_in_17352 .link_effect15stacks_in_17352 a:hover::after,
#stacks_in_17352 .link_effect15stacks_in_17352 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17352 .link_effect15stacks_in_17352 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17352 .link_effect15stacks_in_17352 a:hover::after,
#stacks_in_17352 .link_effect15stacks_in_17352 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17352 .link_effect16stacks_in_17352 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a::before,
#stacks_in_17352 .link_effect16stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a:hover {
	color: #d04c3f;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a::before,
#stacks_in_17352 .link_effect16stacks_in_17352 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17352 .link_effect16stacks_in_17352 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17352 .link_effect16stacks_in_17352 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17352 .link_effect16stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect16stacks_in_17352 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17352 .link_effect17stacks_in_17352 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17352 .link_effect17stacks_in_17352 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17352 .link_effect17stacks_in_17352 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17352 .link_effect18stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect18stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect18stacks_in_17352 a::before,
#stacks_in_17352 .link_effect18stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17352 .link_effect18stacks_in_17352 {
}

#stacks_in_17352 .link_effect18stacks_in_17352 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17352 .link_effect18stacks_in_17352 a::before,
#stacks_in_17352 .link_effect18stacks_in_17352 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17352 .link_effect18stacks_in_17352 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17352 .link_effect18stacks_in_17352 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17352 .link_effect18stacks_in_17352 a:hover,
#stacks_in_17352 .link_effect18stacks_in_17352 a:focus {
	color: #fff;
}

#stacks_in_17352 .link_effect18stacks_in_17352 a:hover::before,
#stacks_in_17352 .link_effect18stacks_in_17352 a:focus::before,
#stacks_in_17352 .link_effect18stacks_in_17352 a:hover::after,
#stacks_in_17352 .link_effect18stacks_in_17352 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17352 .link_effect19stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect19stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect19stacks_in_17352 a::before,
#stacks_in_17352 .link_effect19stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17352 a {
}

.link_effect19stacks_in_17352 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17352 a:hover::after,
.link_effect19stacks_in_17352 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17352 .link_effect20stacks_in_17352 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17352 .link_effect20stacks_in_17352 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17352 .link_effect20stacks_in_17352 a::before,
#stacks_in_17352 .link_effect20stacks_in_17352 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17352 a {
}

.link_effect20stacks_in_17352 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17352 a:hover::after,
.link_effect20stacks_in_17352 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17353 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_16914 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_16914 .borderbuttonthing, #stacks_in_16914 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_16914 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_16914 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_16914 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16998Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_16998Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16998Calligrapher h6, .stacks_in_16998Calligrapher h5, .stacks_in_16998Calligrapher h4, .stacks_in_16998Calligrapher h3, .stacks_in_16998Calligrapher h2, .stacks_in_16998Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_16998Calligrapher, .stacks_in_16998Calligrapher h1, .stacks_in_16998Calligrapher h2, .stacks_in_16998Calligrapher h3, .stacks_in_16998Calligrapher h4, .stacks_in_16998Calligrapher h5, .stacks_in_16998Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16998targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16998Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_16998Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16998Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16998Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_16998 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17000 a:before, .link_effect1stacks_in_17000 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17000 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17000 a:hover:before, .link_effect1stacks_in_17000 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17000 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17000 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17000 .link_effect2stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17000 .link_effect2stacks_in_17000 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17000 .link_effect3stacks_in_17000 {
  	text-decoration: none;
}

#stacks_in_17000 .link_effect3stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17000 .link_effect3stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect3stacks_in_17000 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17000 .link_effect4stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect4stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect4stacks_in_17000 a::before,
#stacks_in_17000 .link_effect%stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect4stacks_in_17000 {
}

#stacks_in_17000 .link_effect4stacks_in_17000 a {
	font-weight:normal;;
}

#stacks_in_17000 .link_effect4stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17000 .link_effect4stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect4stacks_in_17000 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17000 .link_effect5stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect5stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect5stacks_in_17000 a::before,
#stacks_in_17000 .link_effect5stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect5stacks_in_17000 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17000 .link_effect5stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17000 .link_effect5stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect5stacks_in_17000 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17000 .link_effect6stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect6stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect6stacks_in_17000 a::before,
#stacks_in_17000 .link_effect6stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect6stacks_in_17000 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17000 .link_effect6stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17000 .link_effect6stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect6stacks_in_17000 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17000 .link_effect7stacks_in_17000 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect7stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect7stacks_in_17000 a::before,
#stacks_in_17000 .link_effect7stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect7stacks_in_17000 {
	position: relative;
}

#stacks_in_17000 .link_effect7stacks_in_17000 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17000 .link_effect7stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17000 .link_effect7stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect7stacks_in_17000 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17000 .link_effect8stacks_in_17000 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect8stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect8stacks_in_17000 a::before,
#stacks_in_17000 .link_effect8stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17000 .link_effect8stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17000 .link_effect8stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect8stacks_in_17000 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17000 .link_effect8stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17000 .link_effect8stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect8stacks_in_17000 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17000 .link_effect9stacks_in_17000 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect9stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect9stacks_in_17000 a::before,
#stacks_in_17000 .link_effect9stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect9stacks_in_17000 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17000 .link_effect9stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect9stacks_in_17000 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17000 .link_effect9stacks_in_17000 a::before,
#stacks_in_17000 .link_effect9stacks_in_17000 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17000 .link_effect9stacks_in_17000 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17000 .link_effect9stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect9stacks_in_17000 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17000 .link_effect9stacks_in_17000 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17000 .link_effect10stacks_in_17000 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect10stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect10stacks_in_17000 a::before,
#stacks_in_17000 .link_effect10stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect10stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17000 .link_effect10stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect10stacks_in_17000 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17000 .link_effect10stacks_in_17000 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17000 .link_effect10stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect10stacks_in_17000 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17000 .link_effect11stacks_in_17000 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17000 .link_effect11stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect11stacks_in_17000 a::before,
#stacks_in_17000 .link_effect11stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect11stacks_in_17000 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17000 .link_effect11stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect11stacks_in_17000 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17000 .link_effect11stacks_in_17000 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17000 .link_effect11stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect11stacks_in_17000 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17000 .link_effect12stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect12stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect12stacks_in_17000 a::before,
#stacks_in_17000 .link_effect12stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect12stacks_in_17000 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17000 .link_effect12stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect12stacks_in_17000 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17000 .link_effect12stacks_in_17000 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17000 .link_effect12stacks_in_17000 a,
#stacks_in_17000 .link_effect12stacks_in_17000 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17000 .link_effect12stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect12stacks_in_17000 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17000 .link_effect13stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect13stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect13stacks_in_17000 a::before,
#stacks_in_17000 .link_effect13stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect13stacks_in_17000 {
}

#stacks_in_17000 .link_effect13stacks_in_17000 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17000 .link_effect13stacks_in_17000 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17000 .link_effect13stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect13stacks_in_17000 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17000 .link_effect14stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect14stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect14stacks_in_17000 a::before,
#stacks_in_17000 .link_effect14stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect14stacks_in_17000 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17000 .link_effect14stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect14stacks_in_17000 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17000 .link_effect14stacks_in_17000 a::before,
#stacks_in_17000 .link_effect14stacks_in_17000 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17000 .link_effect14stacks_in_17000 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17000 .link_effect14stacks_in_17000 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17000 .link_effect14stacks_in_17000 a:hover::after,
#stacks_in_17000 .link_effect14stacks_in_17000 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17000 .link_effect15stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect15stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect15stacks_in_17000 a::before,
#stacks_in_17000 .link_effect15stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect15stacks_in_17000 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17000 .link_effect15stacks_in_17000 a::before,
#stacks_in_17000 .link_effect15stacks_in_17000 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17000 .link_effect15stacks_in_17000 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17000 .link_effect15stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect15stacks_in_17000 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17000 .link_effect15stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect15stacks_in_17000 a:focus::before,
#stacks_in_17000 .link_effect15stacks_in_17000 a:hover::after,
#stacks_in_17000 .link_effect15stacks_in_17000 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17000 .link_effect15stacks_in_17000 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17000 .link_effect15stacks_in_17000 a:hover::after,
#stacks_in_17000 .link_effect15stacks_in_17000 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17000 .link_effect16stacks_in_17000 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a::before,
#stacks_in_17000 .link_effect16stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a:hover {
	color: #d04c3f;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a::before,
#stacks_in_17000 .link_effect16stacks_in_17000 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17000 .link_effect16stacks_in_17000 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17000 .link_effect16stacks_in_17000 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17000 .link_effect16stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect16stacks_in_17000 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17000 .link_effect17stacks_in_17000 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17000 .link_effect17stacks_in_17000 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17000 .link_effect17stacks_in_17000 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17000 .link_effect18stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect18stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect18stacks_in_17000 a::before,
#stacks_in_17000 .link_effect18stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17000 .link_effect18stacks_in_17000 {
}

#stacks_in_17000 .link_effect18stacks_in_17000 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17000 .link_effect18stacks_in_17000 a::before,
#stacks_in_17000 .link_effect18stacks_in_17000 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17000 .link_effect18stacks_in_17000 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17000 .link_effect18stacks_in_17000 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17000 .link_effect18stacks_in_17000 a:hover,
#stacks_in_17000 .link_effect18stacks_in_17000 a:focus {
	color: #fff;
}

#stacks_in_17000 .link_effect18stacks_in_17000 a:hover::before,
#stacks_in_17000 .link_effect18stacks_in_17000 a:focus::before,
#stacks_in_17000 .link_effect18stacks_in_17000 a:hover::after,
#stacks_in_17000 .link_effect18stacks_in_17000 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17000 .link_effect19stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect19stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect19stacks_in_17000 a::before,
#stacks_in_17000 .link_effect19stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17000 a {
}

.link_effect19stacks_in_17000 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17000 a:hover::after,
.link_effect19stacks_in_17000 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17000 .link_effect20stacks_in_17000 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17000 .link_effect20stacks_in_17000 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17000 .link_effect20stacks_in_17000 a::before,
#stacks_in_17000 .link_effect20stacks_in_17000 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17000 a {
}

.link_effect20stacks_in_17000 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17000 a:hover::after,
.link_effect20stacks_in_17000 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17002 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17025 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17025 .borderbuttonthing, #stacks_in_17025 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17025 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17025 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17025 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17007Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17007Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17007Calligrapher h6, .stacks_in_17007Calligrapher h5, .stacks_in_17007Calligrapher h4, .stacks_in_17007Calligrapher h3, .stacks_in_17007Calligrapher h2, .stacks_in_17007Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17007Calligrapher, .stacks_in_17007Calligrapher h1, .stacks_in_17007Calligrapher h2, .stacks_in_17007Calligrapher h3, .stacks_in_17007Calligrapher h4, .stacks_in_17007Calligrapher h5, .stacks_in_17007Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17007targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17007Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17007Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17007Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17007Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17007 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17009 a:before, .link_effect1stacks_in_17009 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17009 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17009 a:hover:before, .link_effect1stacks_in_17009 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17009 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17009 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17009 .link_effect2stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17009 .link_effect2stacks_in_17009 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17009 .link_effect3stacks_in_17009 {
  	text-decoration: none;
}

#stacks_in_17009 .link_effect3stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17009 .link_effect3stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect3stacks_in_17009 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17009 .link_effect4stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect4stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect4stacks_in_17009 a::before,
#stacks_in_17009 .link_effect%stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect4stacks_in_17009 {
}

#stacks_in_17009 .link_effect4stacks_in_17009 a {
	font-weight:normal;;
}

#stacks_in_17009 .link_effect4stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17009 .link_effect4stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect4stacks_in_17009 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17009 .link_effect5stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect5stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect5stacks_in_17009 a::before,
#stacks_in_17009 .link_effect5stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect5stacks_in_17009 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17009 .link_effect5stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17009 .link_effect5stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect5stacks_in_17009 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17009 .link_effect6stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect6stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect6stacks_in_17009 a::before,
#stacks_in_17009 .link_effect6stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect6stacks_in_17009 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17009 .link_effect6stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17009 .link_effect6stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect6stacks_in_17009 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17009 .link_effect7stacks_in_17009 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect7stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect7stacks_in_17009 a::before,
#stacks_in_17009 .link_effect7stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect7stacks_in_17009 {
	position: relative;
}

#stacks_in_17009 .link_effect7stacks_in_17009 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17009 .link_effect7stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17009 .link_effect7stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect7stacks_in_17009 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17009 .link_effect8stacks_in_17009 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect8stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect8stacks_in_17009 a::before,
#stacks_in_17009 .link_effect8stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17009 .link_effect8stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17009 .link_effect8stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect8stacks_in_17009 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17009 .link_effect8stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17009 .link_effect8stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect8stacks_in_17009 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17009 .link_effect9stacks_in_17009 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect9stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect9stacks_in_17009 a::before,
#stacks_in_17009 .link_effect9stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect9stacks_in_17009 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17009 .link_effect9stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect9stacks_in_17009 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17009 .link_effect9stacks_in_17009 a::before,
#stacks_in_17009 .link_effect9stacks_in_17009 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17009 .link_effect9stacks_in_17009 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17009 .link_effect9stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect9stacks_in_17009 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17009 .link_effect9stacks_in_17009 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17009 .link_effect10stacks_in_17009 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect10stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect10stacks_in_17009 a::before,
#stacks_in_17009 .link_effect10stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect10stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17009 .link_effect10stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect10stacks_in_17009 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17009 .link_effect10stacks_in_17009 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17009 .link_effect10stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect10stacks_in_17009 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17009 .link_effect11stacks_in_17009 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17009 .link_effect11stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect11stacks_in_17009 a::before,
#stacks_in_17009 .link_effect11stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect11stacks_in_17009 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17009 .link_effect11stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect11stacks_in_17009 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17009 .link_effect11stacks_in_17009 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17009 .link_effect11stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect11stacks_in_17009 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17009 .link_effect12stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect12stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect12stacks_in_17009 a::before,
#stacks_in_17009 .link_effect12stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect12stacks_in_17009 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17009 .link_effect12stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect12stacks_in_17009 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17009 .link_effect12stacks_in_17009 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17009 .link_effect12stacks_in_17009 a,
#stacks_in_17009 .link_effect12stacks_in_17009 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17009 .link_effect12stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect12stacks_in_17009 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17009 .link_effect13stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect13stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect13stacks_in_17009 a::before,
#stacks_in_17009 .link_effect13stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect13stacks_in_17009 {
}

#stacks_in_17009 .link_effect13stacks_in_17009 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17009 .link_effect13stacks_in_17009 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17009 .link_effect13stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect13stacks_in_17009 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17009 .link_effect14stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect14stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect14stacks_in_17009 a::before,
#stacks_in_17009 .link_effect14stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect14stacks_in_17009 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17009 .link_effect14stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect14stacks_in_17009 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17009 .link_effect14stacks_in_17009 a::before,
#stacks_in_17009 .link_effect14stacks_in_17009 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17009 .link_effect14stacks_in_17009 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17009 .link_effect14stacks_in_17009 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17009 .link_effect14stacks_in_17009 a:hover::after,
#stacks_in_17009 .link_effect14stacks_in_17009 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17009 .link_effect15stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect15stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect15stacks_in_17009 a::before,
#stacks_in_17009 .link_effect15stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect15stacks_in_17009 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17009 .link_effect15stacks_in_17009 a::before,
#stacks_in_17009 .link_effect15stacks_in_17009 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17009 .link_effect15stacks_in_17009 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17009 .link_effect15stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect15stacks_in_17009 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17009 .link_effect15stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect15stacks_in_17009 a:focus::before,
#stacks_in_17009 .link_effect15stacks_in_17009 a:hover::after,
#stacks_in_17009 .link_effect15stacks_in_17009 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17009 .link_effect15stacks_in_17009 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17009 .link_effect15stacks_in_17009 a:hover::after,
#stacks_in_17009 .link_effect15stacks_in_17009 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17009 .link_effect16stacks_in_17009 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a::before,
#stacks_in_17009 .link_effect16stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a:hover {
	color: #d04c3f;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a::before,
#stacks_in_17009 .link_effect16stacks_in_17009 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17009 .link_effect16stacks_in_17009 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17009 .link_effect16stacks_in_17009 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17009 .link_effect16stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect16stacks_in_17009 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17009 .link_effect17stacks_in_17009 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17009 .link_effect17stacks_in_17009 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17009 .link_effect17stacks_in_17009 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17009 .link_effect18stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect18stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect18stacks_in_17009 a::before,
#stacks_in_17009 .link_effect18stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17009 .link_effect18stacks_in_17009 {
}

#stacks_in_17009 .link_effect18stacks_in_17009 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17009 .link_effect18stacks_in_17009 a::before,
#stacks_in_17009 .link_effect18stacks_in_17009 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17009 .link_effect18stacks_in_17009 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17009 .link_effect18stacks_in_17009 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17009 .link_effect18stacks_in_17009 a:hover,
#stacks_in_17009 .link_effect18stacks_in_17009 a:focus {
	color: #fff;
}

#stacks_in_17009 .link_effect18stacks_in_17009 a:hover::before,
#stacks_in_17009 .link_effect18stacks_in_17009 a:focus::before,
#stacks_in_17009 .link_effect18stacks_in_17009 a:hover::after,
#stacks_in_17009 .link_effect18stacks_in_17009 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17009 .link_effect19stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect19stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect19stacks_in_17009 a::before,
#stacks_in_17009 .link_effect19stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17009 a {
}

.link_effect19stacks_in_17009 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17009 a:hover::after,
.link_effect19stacks_in_17009 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17009 .link_effect20stacks_in_17009 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17009 .link_effect20stacks_in_17009 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17009 .link_effect20stacks_in_17009 a::before,
#stacks_in_17009 .link_effect20stacks_in_17009 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17009 a {
}

.link_effect20stacks_in_17009 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17009 a:hover::after,
.link_effect20stacks_in_17009 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17011 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17027 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17027 .borderbuttonthing, #stacks_in_17027 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17027 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17027 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17027 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17031 article,
#stacks_in_17031 aside,
#stacks_in_17031 details,
#stacks_in_17031 figcaption,
#stacks_in_17031 figure,
#stacks_in_17031 footer,
#stacks_in_17031 header,
#stacks_in_17031 hgroup,
#stacks_in_17031 main,
#stacks_in_17031 nav,
#stacks_in_17031 section,
#stacks_in_17031 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17031 audio,
#stacks_in_17031 canvas,
#stacks_in_17031 progress,
#stacks_in_17031 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17031 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17031 [hidden],
#stacks_in_17031 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17031 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17031 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17031 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17031 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17031 code,
#stacks_in_17031 kbd,
#stacks_in_17031 pre,
#stacks_in_17031 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17031 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17031 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17031 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17031 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17031 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17031 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17031 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17031 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17031 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17031 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17031 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17031 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17031 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17031 .left {
  float: left !important; }

#stacks_in_17031 .right {
  float: right !important; }

#stacks_in_17031 .clearfix:before,
#stacks_in_17031 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17031 .clearfix:after {
  clear: both; }

#stacks_in_17031 .hide {
  display: none; }

#stacks_in_17031 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17031 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17031 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17031 select {
  width: 100%; }

#stacks_in_17031 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17031 .row:before,
#stacks_in_17031 .row:after {
  content: " ";
  display: table; }

#stacks_in_17031 .row:after {
  clear: both; }

#stacks_in_17031 .row.collapse > .column,
#stacks_in_17031 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17031 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17031 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17031 .row .row:before,
#stacks_in_17031 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17031 .row .row:after {
  clear: both; }

#stacks_in_17031 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17031 .row .row.collapse:before,
#stacks_in_17031 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17031 .row .row.collapse:after {
  clear: both; }

#stacks_in_17031 .column,
#stacks_in_17031 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17031 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17031 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17031 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17031 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17031 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17031 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17031 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17031 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17031 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17031 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17031 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17031 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17031 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17031 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17031 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17031 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17031 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17031 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17031 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17031 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17031 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17031 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17031 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17031 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17031 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17031 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17031 .column,
  #stacks_in_17031 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17031 .small-1 {
    width: 8.33333%; }

  #stacks_in_17031 .small-2 {
    width: 16.66667%; }

  #stacks_in_17031 .small-3 {
    width: 25%; }

  #stacks_in_17031 .small-4 {
    width: 33.33333%; }

  #stacks_in_17031 .small-5 {
    width: 41.66667%; }

  #stacks_in_17031 .small-6 {
    width: 50%; }

  #stacks_in_17031 .small-7 {
    width: 58.33333%; }

  #stacks_in_17031 .small-8 {
    width: 66.66667%; }

  #stacks_in_17031 .small-9 {
    width: 75%; }

  #stacks_in_17031 .small-10 {
    width: 83.33333%; }

  #stacks_in_17031 .small-11 {
    width: 91.66667%; }

  #stacks_in_17031 .small-12 {
    width: 100%; }

  #stacks_in_17031 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17031 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17031 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17031 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17031 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17031 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17031 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17031 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17031 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17031 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17031 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17031 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17031 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17031 .column.small-centered,
  #stacks_in_17031 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17031 .column.small-uncentered,
  #stacks_in_17031 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17031 .column.small-centered:last-child,
  #stacks_in_17031 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17031 .column.small-uncentered:last-child,
  #stacks_in_17031 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17031 .column.small-uncentered.opposite,
  #stacks_in_17031 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17031 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17031 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17031 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17031 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17031 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17031 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17031 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17031 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17031 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17031 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17031 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17031 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17031 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17031 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17031 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17031 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17031 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17031 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17031 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17031 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17031 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17031 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17031 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17031 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17031 .column,
  #stacks_in_17031 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17031 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17031 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17031 .medium-3 {
    width: 25%; }

  #stacks_in_17031 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17031 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17031 .medium-6 {
    width: 50%; }

  #stacks_in_17031 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17031 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17031 .medium-9 {
    width: 75%; }

  #stacks_in_17031 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17031 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17031 .medium-12 {
    width: 100%; }

  #stacks_in_17031 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17031 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17031 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17031 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17031 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17031 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17031 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17031 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17031 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17031 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17031 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17031 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17031 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17031 .column.medium-centered,
  #stacks_in_17031 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17031 .column.medium-uncentered,
  #stacks_in_17031 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17031 .column.medium-centered:last-child,
  #stacks_in_17031 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17031 .column.medium-uncentered:last-child,
  #stacks_in_17031 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17031 .column.medium-uncentered.opposite,
  #stacks_in_17031 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17031 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17031 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17031 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17031 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17031 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17031 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17031 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17031 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17031 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17031 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17031 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17031 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17031 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17031 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17031 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17031 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17031 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17031 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17031 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17031 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17031 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17031 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17031 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17031 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17031 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17031 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17031 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17031 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17031 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17031 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17031 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17031 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17031 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17031 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17031 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17031 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17031 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17031 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17031 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17031 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17031 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17031 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17031 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17031 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17031 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17031 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17031 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17031 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17031 .column,
  #stacks_in_17031 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17031 .large-1 {
    width: 8.33333%; }

  #stacks_in_17031 .large-2 {
    width: 16.66667%; }

  #stacks_in_17031 .large-3 {
    width: 25%; }

  #stacks_in_17031 .large-4 {
    width: 33.33333%; }

  #stacks_in_17031 .large-5 {
    width: 41.66667%; }

  #stacks_in_17031 .large-6 {
    width: 50%; }

  #stacks_in_17031 .large-7 {
    width: 58.33333%; }

  #stacks_in_17031 .large-8 {
    width: 66.66667%; }

  #stacks_in_17031 .large-9 {
    width: 75%; }

  #stacks_in_17031 .large-10 {
    width: 83.33333%; }

  #stacks_in_17031 .large-11 {
    width: 91.66667%; }

  #stacks_in_17031 .large-12 {
    width: 100%; }

  #stacks_in_17031 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17031 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17031 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17031 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17031 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17031 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17031 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17031 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17031 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17031 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17031 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17031 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17031 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17031 .column.large-centered,
  #stacks_in_17031 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17031 .column.large-uncentered,
  #stacks_in_17031 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17031 .column.large-centered:last-child,
  #stacks_in_17031 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17031 .column.large-uncentered:last-child,
  #stacks_in_17031 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17031 .column.large-uncentered.opposite,
  #stacks_in_17031 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17031 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17031 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17031 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17031 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17031 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17031 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17031 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17031 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17031 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17031 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17031 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17031 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17031 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17031 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17031 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17031 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17031 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17031 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17031 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17031 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17031 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17031 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17031 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17031 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17031 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17031 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17031 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17031 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17031 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17031 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17031 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17031 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17031 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17031 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17031 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17031 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17031 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17031 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17031 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17031 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17031 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17016Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17016Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17016Calligrapher h6, .stacks_in_17016Calligrapher h5, .stacks_in_17016Calligrapher h4, .stacks_in_17016Calligrapher h3, .stacks_in_17016Calligrapher h2, .stacks_in_17016Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17016Calligrapher, .stacks_in_17016Calligrapher h1, .stacks_in_17016Calligrapher h2, .stacks_in_17016Calligrapher h3, .stacks_in_17016Calligrapher h4, .stacks_in_17016Calligrapher h5, .stacks_in_17016Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17016targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17016Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17016Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17016Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17016Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17016 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17018 a:before, .link_effect1stacks_in_17018 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17018 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17018 a:hover:before, .link_effect1stacks_in_17018 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17018 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17018 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17018 .link_effect2stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17018 .link_effect2stacks_in_17018 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17018 .link_effect3stacks_in_17018 {
  	text-decoration: none;
}

#stacks_in_17018 .link_effect3stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17018 .link_effect3stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect3stacks_in_17018 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17018 .link_effect4stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect4stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect4stacks_in_17018 a::before,
#stacks_in_17018 .link_effect%stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect4stacks_in_17018 {
}

#stacks_in_17018 .link_effect4stacks_in_17018 a {
	font-weight:normal;;
}

#stacks_in_17018 .link_effect4stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17018 .link_effect4stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect4stacks_in_17018 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17018 .link_effect5stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect5stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect5stacks_in_17018 a::before,
#stacks_in_17018 .link_effect5stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect5stacks_in_17018 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17018 .link_effect5stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17018 .link_effect5stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect5stacks_in_17018 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17018 .link_effect6stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect6stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect6stacks_in_17018 a::before,
#stacks_in_17018 .link_effect6stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect6stacks_in_17018 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17018 .link_effect6stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17018 .link_effect6stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect6stacks_in_17018 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17018 .link_effect7stacks_in_17018 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect7stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect7stacks_in_17018 a::before,
#stacks_in_17018 .link_effect7stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect7stacks_in_17018 {
	position: relative;
}

#stacks_in_17018 .link_effect7stacks_in_17018 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17018 .link_effect7stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17018 .link_effect7stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect7stacks_in_17018 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17018 .link_effect8stacks_in_17018 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect8stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect8stacks_in_17018 a::before,
#stacks_in_17018 .link_effect8stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17018 .link_effect8stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17018 .link_effect8stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect8stacks_in_17018 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17018 .link_effect8stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17018 .link_effect8stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect8stacks_in_17018 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17018 .link_effect9stacks_in_17018 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect9stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect9stacks_in_17018 a::before,
#stacks_in_17018 .link_effect9stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect9stacks_in_17018 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17018 .link_effect9stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect9stacks_in_17018 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17018 .link_effect9stacks_in_17018 a::before,
#stacks_in_17018 .link_effect9stacks_in_17018 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17018 .link_effect9stacks_in_17018 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17018 .link_effect9stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect9stacks_in_17018 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17018 .link_effect9stacks_in_17018 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17018 .link_effect10stacks_in_17018 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect10stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect10stacks_in_17018 a::before,
#stacks_in_17018 .link_effect10stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect10stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17018 .link_effect10stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect10stacks_in_17018 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17018 .link_effect10stacks_in_17018 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17018 .link_effect10stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect10stacks_in_17018 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17018 .link_effect11stacks_in_17018 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17018 .link_effect11stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect11stacks_in_17018 a::before,
#stacks_in_17018 .link_effect11stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect11stacks_in_17018 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17018 .link_effect11stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect11stacks_in_17018 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17018 .link_effect11stacks_in_17018 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17018 .link_effect11stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect11stacks_in_17018 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17018 .link_effect12stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect12stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect12stacks_in_17018 a::before,
#stacks_in_17018 .link_effect12stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect12stacks_in_17018 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17018 .link_effect12stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect12stacks_in_17018 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17018 .link_effect12stacks_in_17018 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17018 .link_effect12stacks_in_17018 a,
#stacks_in_17018 .link_effect12stacks_in_17018 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17018 .link_effect12stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect12stacks_in_17018 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17018 .link_effect13stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect13stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect13stacks_in_17018 a::before,
#stacks_in_17018 .link_effect13stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect13stacks_in_17018 {
}

#stacks_in_17018 .link_effect13stacks_in_17018 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17018 .link_effect13stacks_in_17018 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17018 .link_effect13stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect13stacks_in_17018 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17018 .link_effect14stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect14stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect14stacks_in_17018 a::before,
#stacks_in_17018 .link_effect14stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect14stacks_in_17018 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17018 .link_effect14stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect14stacks_in_17018 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17018 .link_effect14stacks_in_17018 a::before,
#stacks_in_17018 .link_effect14stacks_in_17018 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17018 .link_effect14stacks_in_17018 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17018 .link_effect14stacks_in_17018 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17018 .link_effect14stacks_in_17018 a:hover::after,
#stacks_in_17018 .link_effect14stacks_in_17018 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17018 .link_effect15stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect15stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect15stacks_in_17018 a::before,
#stacks_in_17018 .link_effect15stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect15stacks_in_17018 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17018 .link_effect15stacks_in_17018 a::before,
#stacks_in_17018 .link_effect15stacks_in_17018 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17018 .link_effect15stacks_in_17018 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17018 .link_effect15stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect15stacks_in_17018 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17018 .link_effect15stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect15stacks_in_17018 a:focus::before,
#stacks_in_17018 .link_effect15stacks_in_17018 a:hover::after,
#stacks_in_17018 .link_effect15stacks_in_17018 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17018 .link_effect15stacks_in_17018 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17018 .link_effect15stacks_in_17018 a:hover::after,
#stacks_in_17018 .link_effect15stacks_in_17018 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17018 .link_effect16stacks_in_17018 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a::before,
#stacks_in_17018 .link_effect16stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a:hover {
	color: #d04c3f;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a::before,
#stacks_in_17018 .link_effect16stacks_in_17018 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17018 .link_effect16stacks_in_17018 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17018 .link_effect16stacks_in_17018 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17018 .link_effect16stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect16stacks_in_17018 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17018 .link_effect17stacks_in_17018 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17018 .link_effect17stacks_in_17018 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17018 .link_effect17stacks_in_17018 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17018 .link_effect18stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect18stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect18stacks_in_17018 a::before,
#stacks_in_17018 .link_effect18stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17018 .link_effect18stacks_in_17018 {
}

#stacks_in_17018 .link_effect18stacks_in_17018 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17018 .link_effect18stacks_in_17018 a::before,
#stacks_in_17018 .link_effect18stacks_in_17018 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17018 .link_effect18stacks_in_17018 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17018 .link_effect18stacks_in_17018 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17018 .link_effect18stacks_in_17018 a:hover,
#stacks_in_17018 .link_effect18stacks_in_17018 a:focus {
	color: #fff;
}

#stacks_in_17018 .link_effect18stacks_in_17018 a:hover::before,
#stacks_in_17018 .link_effect18stacks_in_17018 a:focus::before,
#stacks_in_17018 .link_effect18stacks_in_17018 a:hover::after,
#stacks_in_17018 .link_effect18stacks_in_17018 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17018 .link_effect19stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect19stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect19stacks_in_17018 a::before,
#stacks_in_17018 .link_effect19stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17018 a {
}

.link_effect19stacks_in_17018 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17018 a:hover::after,
.link_effect19stacks_in_17018 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17018 .link_effect20stacks_in_17018 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17018 .link_effect20stacks_in_17018 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17018 .link_effect20stacks_in_17018 a::before,
#stacks_in_17018 .link_effect20stacks_in_17018 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17018 a {
}

.link_effect20stacks_in_17018 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17018 a:hover::after,
.link_effect20stacks_in_17018 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17020 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17029 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17029 .borderbuttonthing, #stacks_in_17029 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17029 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17029 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17029 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17035Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17035Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17035Calligrapher h6, .stacks_in_17035Calligrapher h5, .stacks_in_17035Calligrapher h4, .stacks_in_17035Calligrapher h3, .stacks_in_17035Calligrapher h2, .stacks_in_17035Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17035Calligrapher, .stacks_in_17035Calligrapher h1, .stacks_in_17035Calligrapher h2, .stacks_in_17035Calligrapher h3, .stacks_in_17035Calligrapher h4, .stacks_in_17035Calligrapher h5, .stacks_in_17035Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17035targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17035Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17035Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17035Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17035Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17035 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17037 a:before, .link_effect1stacks_in_17037 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17037 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17037 a:hover:before, .link_effect1stacks_in_17037 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17037 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17037 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17037 .link_effect2stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17037 .link_effect2stacks_in_17037 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17037 .link_effect3stacks_in_17037 {
  	text-decoration: none;
}

#stacks_in_17037 .link_effect3stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17037 .link_effect3stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect3stacks_in_17037 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17037 .link_effect4stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect4stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect4stacks_in_17037 a::before,
#stacks_in_17037 .link_effect%stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect4stacks_in_17037 {
}

#stacks_in_17037 .link_effect4stacks_in_17037 a {
	font-weight:normal;;
}

#stacks_in_17037 .link_effect4stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17037 .link_effect4stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect4stacks_in_17037 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17037 .link_effect5stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect5stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect5stacks_in_17037 a::before,
#stacks_in_17037 .link_effect5stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect5stacks_in_17037 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17037 .link_effect5stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17037 .link_effect5stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect5stacks_in_17037 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17037 .link_effect6stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect6stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect6stacks_in_17037 a::before,
#stacks_in_17037 .link_effect6stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect6stacks_in_17037 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17037 .link_effect6stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17037 .link_effect6stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect6stacks_in_17037 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17037 .link_effect7stacks_in_17037 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect7stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect7stacks_in_17037 a::before,
#stacks_in_17037 .link_effect7stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect7stacks_in_17037 {
	position: relative;
}

#stacks_in_17037 .link_effect7stacks_in_17037 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17037 .link_effect7stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17037 .link_effect7stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect7stacks_in_17037 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17037 .link_effect8stacks_in_17037 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect8stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect8stacks_in_17037 a::before,
#stacks_in_17037 .link_effect8stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17037 .link_effect8stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17037 .link_effect8stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect8stacks_in_17037 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17037 .link_effect8stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17037 .link_effect8stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect8stacks_in_17037 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17037 .link_effect9stacks_in_17037 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect9stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect9stacks_in_17037 a::before,
#stacks_in_17037 .link_effect9stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect9stacks_in_17037 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17037 .link_effect9stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect9stacks_in_17037 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17037 .link_effect9stacks_in_17037 a::before,
#stacks_in_17037 .link_effect9stacks_in_17037 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17037 .link_effect9stacks_in_17037 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17037 .link_effect9stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect9stacks_in_17037 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17037 .link_effect9stacks_in_17037 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17037 .link_effect10stacks_in_17037 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect10stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect10stacks_in_17037 a::before,
#stacks_in_17037 .link_effect10stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect10stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17037 .link_effect10stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect10stacks_in_17037 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17037 .link_effect10stacks_in_17037 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17037 .link_effect10stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect10stacks_in_17037 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17037 .link_effect11stacks_in_17037 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17037 .link_effect11stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect11stacks_in_17037 a::before,
#stacks_in_17037 .link_effect11stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect11stacks_in_17037 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17037 .link_effect11stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect11stacks_in_17037 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17037 .link_effect11stacks_in_17037 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17037 .link_effect11stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect11stacks_in_17037 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17037 .link_effect12stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect12stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect12stacks_in_17037 a::before,
#stacks_in_17037 .link_effect12stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect12stacks_in_17037 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17037 .link_effect12stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect12stacks_in_17037 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17037 .link_effect12stacks_in_17037 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17037 .link_effect12stacks_in_17037 a,
#stacks_in_17037 .link_effect12stacks_in_17037 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17037 .link_effect12stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect12stacks_in_17037 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17037 .link_effect13stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect13stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect13stacks_in_17037 a::before,
#stacks_in_17037 .link_effect13stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect13stacks_in_17037 {
}

#stacks_in_17037 .link_effect13stacks_in_17037 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17037 .link_effect13stacks_in_17037 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17037 .link_effect13stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect13stacks_in_17037 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17037 .link_effect14stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect14stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect14stacks_in_17037 a::before,
#stacks_in_17037 .link_effect14stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect14stacks_in_17037 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17037 .link_effect14stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect14stacks_in_17037 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17037 .link_effect14stacks_in_17037 a::before,
#stacks_in_17037 .link_effect14stacks_in_17037 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17037 .link_effect14stacks_in_17037 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17037 .link_effect14stacks_in_17037 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17037 .link_effect14stacks_in_17037 a:hover::after,
#stacks_in_17037 .link_effect14stacks_in_17037 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17037 .link_effect15stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect15stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect15stacks_in_17037 a::before,
#stacks_in_17037 .link_effect15stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect15stacks_in_17037 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17037 .link_effect15stacks_in_17037 a::before,
#stacks_in_17037 .link_effect15stacks_in_17037 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17037 .link_effect15stacks_in_17037 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17037 .link_effect15stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect15stacks_in_17037 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17037 .link_effect15stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect15stacks_in_17037 a:focus::before,
#stacks_in_17037 .link_effect15stacks_in_17037 a:hover::after,
#stacks_in_17037 .link_effect15stacks_in_17037 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17037 .link_effect15stacks_in_17037 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17037 .link_effect15stacks_in_17037 a:hover::after,
#stacks_in_17037 .link_effect15stacks_in_17037 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17037 .link_effect16stacks_in_17037 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a::before,
#stacks_in_17037 .link_effect16stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a:hover {
	color: #d04c3f;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a::before,
#stacks_in_17037 .link_effect16stacks_in_17037 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17037 .link_effect16stacks_in_17037 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17037 .link_effect16stacks_in_17037 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17037 .link_effect16stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect16stacks_in_17037 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17037 .link_effect17stacks_in_17037 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17037 .link_effect17stacks_in_17037 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17037 .link_effect17stacks_in_17037 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17037 .link_effect18stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect18stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect18stacks_in_17037 a::before,
#stacks_in_17037 .link_effect18stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17037 .link_effect18stacks_in_17037 {
}

#stacks_in_17037 .link_effect18stacks_in_17037 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17037 .link_effect18stacks_in_17037 a::before,
#stacks_in_17037 .link_effect18stacks_in_17037 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17037 .link_effect18stacks_in_17037 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17037 .link_effect18stacks_in_17037 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17037 .link_effect18stacks_in_17037 a:hover,
#stacks_in_17037 .link_effect18stacks_in_17037 a:focus {
	color: #fff;
}

#stacks_in_17037 .link_effect18stacks_in_17037 a:hover::before,
#stacks_in_17037 .link_effect18stacks_in_17037 a:focus::before,
#stacks_in_17037 .link_effect18stacks_in_17037 a:hover::after,
#stacks_in_17037 .link_effect18stacks_in_17037 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17037 .link_effect19stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect19stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect19stacks_in_17037 a::before,
#stacks_in_17037 .link_effect19stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17037 a {
}

.link_effect19stacks_in_17037 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17037 a:hover::after,
.link_effect19stacks_in_17037 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17037 .link_effect20stacks_in_17037 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17037 .link_effect20stacks_in_17037 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17037 .link_effect20stacks_in_17037 a::before,
#stacks_in_17037 .link_effect20stacks_in_17037 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17037 a {
}

.link_effect20stacks_in_17037 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17037 a:hover::after,
.link_effect20stacks_in_17037 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17039 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17062 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17062 .borderbuttonthing, #stacks_in_17062 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17062 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17062 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17062 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17044Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17044Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17044Calligrapher h6, .stacks_in_17044Calligrapher h5, .stacks_in_17044Calligrapher h4, .stacks_in_17044Calligrapher h3, .stacks_in_17044Calligrapher h2, .stacks_in_17044Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17044Calligrapher, .stacks_in_17044Calligrapher h1, .stacks_in_17044Calligrapher h2, .stacks_in_17044Calligrapher h3, .stacks_in_17044Calligrapher h4, .stacks_in_17044Calligrapher h5, .stacks_in_17044Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17044targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17044Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17044Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17044Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17044Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17044 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17046 a:before, .link_effect1stacks_in_17046 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17046 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17046 a:hover:before, .link_effect1stacks_in_17046 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17046 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17046 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17046 .link_effect2stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17046 .link_effect2stacks_in_17046 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17046 .link_effect3stacks_in_17046 {
  	text-decoration: none;
}

#stacks_in_17046 .link_effect3stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17046 .link_effect3stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect3stacks_in_17046 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17046 .link_effect4stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect4stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect4stacks_in_17046 a::before,
#stacks_in_17046 .link_effect%stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect4stacks_in_17046 {
}

#stacks_in_17046 .link_effect4stacks_in_17046 a {
	font-weight:normal;;
}

#stacks_in_17046 .link_effect4stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17046 .link_effect4stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect4stacks_in_17046 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17046 .link_effect5stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect5stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect5stacks_in_17046 a::before,
#stacks_in_17046 .link_effect5stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect5stacks_in_17046 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17046 .link_effect5stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17046 .link_effect5stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect5stacks_in_17046 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17046 .link_effect6stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect6stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect6stacks_in_17046 a::before,
#stacks_in_17046 .link_effect6stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect6stacks_in_17046 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17046 .link_effect6stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17046 .link_effect6stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect6stacks_in_17046 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17046 .link_effect7stacks_in_17046 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect7stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect7stacks_in_17046 a::before,
#stacks_in_17046 .link_effect7stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect7stacks_in_17046 {
	position: relative;
}

#stacks_in_17046 .link_effect7stacks_in_17046 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17046 .link_effect7stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17046 .link_effect7stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect7stacks_in_17046 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17046 .link_effect8stacks_in_17046 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect8stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect8stacks_in_17046 a::before,
#stacks_in_17046 .link_effect8stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17046 .link_effect8stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17046 .link_effect8stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect8stacks_in_17046 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17046 .link_effect8stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17046 .link_effect8stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect8stacks_in_17046 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17046 .link_effect9stacks_in_17046 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect9stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect9stacks_in_17046 a::before,
#stacks_in_17046 .link_effect9stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect9stacks_in_17046 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17046 .link_effect9stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect9stacks_in_17046 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17046 .link_effect9stacks_in_17046 a::before,
#stacks_in_17046 .link_effect9stacks_in_17046 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17046 .link_effect9stacks_in_17046 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17046 .link_effect9stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect9stacks_in_17046 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17046 .link_effect9stacks_in_17046 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17046 .link_effect10stacks_in_17046 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect10stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect10stacks_in_17046 a::before,
#stacks_in_17046 .link_effect10stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect10stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17046 .link_effect10stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect10stacks_in_17046 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17046 .link_effect10stacks_in_17046 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17046 .link_effect10stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect10stacks_in_17046 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17046 .link_effect11stacks_in_17046 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17046 .link_effect11stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect11stacks_in_17046 a::before,
#stacks_in_17046 .link_effect11stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect11stacks_in_17046 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17046 .link_effect11stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect11stacks_in_17046 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17046 .link_effect11stacks_in_17046 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17046 .link_effect11stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect11stacks_in_17046 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17046 .link_effect12stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect12stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect12stacks_in_17046 a::before,
#stacks_in_17046 .link_effect12stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect12stacks_in_17046 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17046 .link_effect12stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect12stacks_in_17046 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17046 .link_effect12stacks_in_17046 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17046 .link_effect12stacks_in_17046 a,
#stacks_in_17046 .link_effect12stacks_in_17046 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17046 .link_effect12stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect12stacks_in_17046 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17046 .link_effect13stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect13stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect13stacks_in_17046 a::before,
#stacks_in_17046 .link_effect13stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect13stacks_in_17046 {
}

#stacks_in_17046 .link_effect13stacks_in_17046 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17046 .link_effect13stacks_in_17046 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17046 .link_effect13stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect13stacks_in_17046 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17046 .link_effect14stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect14stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect14stacks_in_17046 a::before,
#stacks_in_17046 .link_effect14stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect14stacks_in_17046 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17046 .link_effect14stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect14stacks_in_17046 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17046 .link_effect14stacks_in_17046 a::before,
#stacks_in_17046 .link_effect14stacks_in_17046 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17046 .link_effect14stacks_in_17046 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17046 .link_effect14stacks_in_17046 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17046 .link_effect14stacks_in_17046 a:hover::after,
#stacks_in_17046 .link_effect14stacks_in_17046 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17046 .link_effect15stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect15stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect15stacks_in_17046 a::before,
#stacks_in_17046 .link_effect15stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect15stacks_in_17046 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17046 .link_effect15stacks_in_17046 a::before,
#stacks_in_17046 .link_effect15stacks_in_17046 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17046 .link_effect15stacks_in_17046 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17046 .link_effect15stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect15stacks_in_17046 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17046 .link_effect15stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect15stacks_in_17046 a:focus::before,
#stacks_in_17046 .link_effect15stacks_in_17046 a:hover::after,
#stacks_in_17046 .link_effect15stacks_in_17046 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17046 .link_effect15stacks_in_17046 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17046 .link_effect15stacks_in_17046 a:hover::after,
#stacks_in_17046 .link_effect15stacks_in_17046 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17046 .link_effect16stacks_in_17046 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a::before,
#stacks_in_17046 .link_effect16stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a:hover {
	color: #d04c3f;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a::before,
#stacks_in_17046 .link_effect16stacks_in_17046 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17046 .link_effect16stacks_in_17046 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17046 .link_effect16stacks_in_17046 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17046 .link_effect16stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect16stacks_in_17046 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17046 .link_effect17stacks_in_17046 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17046 .link_effect17stacks_in_17046 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17046 .link_effect17stacks_in_17046 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17046 .link_effect18stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect18stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect18stacks_in_17046 a::before,
#stacks_in_17046 .link_effect18stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17046 .link_effect18stacks_in_17046 {
}

#stacks_in_17046 .link_effect18stacks_in_17046 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17046 .link_effect18stacks_in_17046 a::before,
#stacks_in_17046 .link_effect18stacks_in_17046 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17046 .link_effect18stacks_in_17046 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17046 .link_effect18stacks_in_17046 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17046 .link_effect18stacks_in_17046 a:hover,
#stacks_in_17046 .link_effect18stacks_in_17046 a:focus {
	color: #fff;
}

#stacks_in_17046 .link_effect18stacks_in_17046 a:hover::before,
#stacks_in_17046 .link_effect18stacks_in_17046 a:focus::before,
#stacks_in_17046 .link_effect18stacks_in_17046 a:hover::after,
#stacks_in_17046 .link_effect18stacks_in_17046 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17046 .link_effect19stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect19stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect19stacks_in_17046 a::before,
#stacks_in_17046 .link_effect19stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17046 a {
}

.link_effect19stacks_in_17046 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17046 a:hover::after,
.link_effect19stacks_in_17046 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17046 .link_effect20stacks_in_17046 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17046 .link_effect20stacks_in_17046 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17046 .link_effect20stacks_in_17046 a::before,
#stacks_in_17046 .link_effect20stacks_in_17046 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17046 a {
}

.link_effect20stacks_in_17046 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17046 a:hover::after,
.link_effect20stacks_in_17046 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17048 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17064 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17064 .borderbuttonthing, #stacks_in_17064 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17064 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17064 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17064 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17053Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17053Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17053Calligrapher h6, .stacks_in_17053Calligrapher h5, .stacks_in_17053Calligrapher h4, .stacks_in_17053Calligrapher h3, .stacks_in_17053Calligrapher h2, .stacks_in_17053Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17053Calligrapher, .stacks_in_17053Calligrapher h1, .stacks_in_17053Calligrapher h2, .stacks_in_17053Calligrapher h3, .stacks_in_17053Calligrapher h4, .stacks_in_17053Calligrapher h5, .stacks_in_17053Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17053targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17053Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17053Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17053Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17053Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17053 {
	margin:  14px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17055 a:before, .link_effect1stacks_in_17055 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17055 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17055 a:hover:before, .link_effect1stacks_in_17055 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17055 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17055 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17055 .link_effect2stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17055 .link_effect2stacks_in_17055 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17055 .link_effect3stacks_in_17055 {
  	text-decoration: none;
}

#stacks_in_17055 .link_effect3stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17055 .link_effect3stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect3stacks_in_17055 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17055 .link_effect4stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect4stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect4stacks_in_17055 a::before,
#stacks_in_17055 .link_effect%stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect4stacks_in_17055 {
}

#stacks_in_17055 .link_effect4stacks_in_17055 a {
	font-weight:normal;;
}

#stacks_in_17055 .link_effect4stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17055 .link_effect4stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect4stacks_in_17055 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17055 .link_effect5stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect5stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect5stacks_in_17055 a::before,
#stacks_in_17055 .link_effect5stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect5stacks_in_17055 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17055 .link_effect5stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17055 .link_effect5stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect5stacks_in_17055 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17055 .link_effect6stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect6stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect6stacks_in_17055 a::before,
#stacks_in_17055 .link_effect6stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect6stacks_in_17055 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17055 .link_effect6stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17055 .link_effect6stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect6stacks_in_17055 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17055 .link_effect7stacks_in_17055 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect7stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect7stacks_in_17055 a::before,
#stacks_in_17055 .link_effect7stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect7stacks_in_17055 {
	position: relative;
}

#stacks_in_17055 .link_effect7stacks_in_17055 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17055 .link_effect7stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17055 .link_effect7stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect7stacks_in_17055 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17055 .link_effect8stacks_in_17055 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect8stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect8stacks_in_17055 a::before,
#stacks_in_17055 .link_effect8stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17055 .link_effect8stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17055 .link_effect8stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect8stacks_in_17055 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17055 .link_effect8stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17055 .link_effect8stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect8stacks_in_17055 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17055 .link_effect9stacks_in_17055 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect9stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect9stacks_in_17055 a::before,
#stacks_in_17055 .link_effect9stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect9stacks_in_17055 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17055 .link_effect9stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect9stacks_in_17055 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17055 .link_effect9stacks_in_17055 a::before,
#stacks_in_17055 .link_effect9stacks_in_17055 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17055 .link_effect9stacks_in_17055 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17055 .link_effect9stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect9stacks_in_17055 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17055 .link_effect9stacks_in_17055 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17055 .link_effect10stacks_in_17055 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect10stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect10stacks_in_17055 a::before,
#stacks_in_17055 .link_effect10stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect10stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17055 .link_effect10stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect10stacks_in_17055 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17055 .link_effect10stacks_in_17055 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17055 .link_effect10stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect10stacks_in_17055 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17055 .link_effect11stacks_in_17055 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17055 .link_effect11stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect11stacks_in_17055 a::before,
#stacks_in_17055 .link_effect11stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect11stacks_in_17055 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17055 .link_effect11stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect11stacks_in_17055 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17055 .link_effect11stacks_in_17055 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17055 .link_effect11stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect11stacks_in_17055 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17055 .link_effect12stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect12stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect12stacks_in_17055 a::before,
#stacks_in_17055 .link_effect12stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect12stacks_in_17055 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17055 .link_effect12stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect12stacks_in_17055 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17055 .link_effect12stacks_in_17055 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17055 .link_effect12stacks_in_17055 a,
#stacks_in_17055 .link_effect12stacks_in_17055 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17055 .link_effect12stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect12stacks_in_17055 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17055 .link_effect13stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect13stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect13stacks_in_17055 a::before,
#stacks_in_17055 .link_effect13stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect13stacks_in_17055 {
}

#stacks_in_17055 .link_effect13stacks_in_17055 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17055 .link_effect13stacks_in_17055 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17055 .link_effect13stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect13stacks_in_17055 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17055 .link_effect14stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect14stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect14stacks_in_17055 a::before,
#stacks_in_17055 .link_effect14stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect14stacks_in_17055 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17055 .link_effect14stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect14stacks_in_17055 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17055 .link_effect14stacks_in_17055 a::before,
#stacks_in_17055 .link_effect14stacks_in_17055 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17055 .link_effect14stacks_in_17055 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17055 .link_effect14stacks_in_17055 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17055 .link_effect14stacks_in_17055 a:hover::after,
#stacks_in_17055 .link_effect14stacks_in_17055 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17055 .link_effect15stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect15stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect15stacks_in_17055 a::before,
#stacks_in_17055 .link_effect15stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect15stacks_in_17055 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17055 .link_effect15stacks_in_17055 a::before,
#stacks_in_17055 .link_effect15stacks_in_17055 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17055 .link_effect15stacks_in_17055 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17055 .link_effect15stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect15stacks_in_17055 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17055 .link_effect15stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect15stacks_in_17055 a:focus::before,
#stacks_in_17055 .link_effect15stacks_in_17055 a:hover::after,
#stacks_in_17055 .link_effect15stacks_in_17055 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17055 .link_effect15stacks_in_17055 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17055 .link_effect15stacks_in_17055 a:hover::after,
#stacks_in_17055 .link_effect15stacks_in_17055 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17055 .link_effect16stacks_in_17055 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a::before,
#stacks_in_17055 .link_effect16stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a:hover {
	color: #d04c3f;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a::before,
#stacks_in_17055 .link_effect16stacks_in_17055 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17055 .link_effect16stacks_in_17055 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17055 .link_effect16stacks_in_17055 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17055 .link_effect16stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect16stacks_in_17055 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17055 .link_effect17stacks_in_17055 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17055 .link_effect17stacks_in_17055 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17055 .link_effect17stacks_in_17055 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17055 .link_effect18stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect18stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect18stacks_in_17055 a::before,
#stacks_in_17055 .link_effect18stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17055 .link_effect18stacks_in_17055 {
}

#stacks_in_17055 .link_effect18stacks_in_17055 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17055 .link_effect18stacks_in_17055 a::before,
#stacks_in_17055 .link_effect18stacks_in_17055 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17055 .link_effect18stacks_in_17055 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17055 .link_effect18stacks_in_17055 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17055 .link_effect18stacks_in_17055 a:hover,
#stacks_in_17055 .link_effect18stacks_in_17055 a:focus {
	color: #fff;
}

#stacks_in_17055 .link_effect18stacks_in_17055 a:hover::before,
#stacks_in_17055 .link_effect18stacks_in_17055 a:focus::before,
#stacks_in_17055 .link_effect18stacks_in_17055 a:hover::after,
#stacks_in_17055 .link_effect18stacks_in_17055 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17055 .link_effect19stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect19stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect19stacks_in_17055 a::before,
#stacks_in_17055 .link_effect19stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17055 a {
}

.link_effect19stacks_in_17055 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17055 a:hover::after,
.link_effect19stacks_in_17055 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17055 .link_effect20stacks_in_17055 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17055 .link_effect20stacks_in_17055 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17055 .link_effect20stacks_in_17055 a::before,
#stacks_in_17055 .link_effect20stacks_in_17055 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17055 a {
}

.link_effect20stacks_in_17055 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17055 a:hover::after,
.link_effect20stacks_in_17055 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17057 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17066 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17066 .borderbuttonthing, #stacks_in_17066 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17066 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17066 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17066 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17161 article,
#stacks_in_17161 aside,
#stacks_in_17161 details,
#stacks_in_17161 figcaption,
#stacks_in_17161 figure,
#stacks_in_17161 footer,
#stacks_in_17161 header,
#stacks_in_17161 hgroup,
#stacks_in_17161 main,
#stacks_in_17161 nav,
#stacks_in_17161 section,
#stacks_in_17161 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17161 audio,
#stacks_in_17161 canvas,
#stacks_in_17161 progress,
#stacks_in_17161 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17161 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17161 [hidden],
#stacks_in_17161 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17161 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17161 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17161 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17161 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17161 code,
#stacks_in_17161 kbd,
#stacks_in_17161 pre,
#stacks_in_17161 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */
%[if ]%
  %[if edit]%
    #stacks_in_17161 {
      background-image: url(../files/images/preview_numbers_background.png), url(../files/images/preview_striped_background.png);
      background-repeat: no-repeat, repeat-y;
      background-size: 100%, 100%;
      background-position: center top, center 100px;
      border-radius: 4px;
      padding-top: 75px;
      padding-bottom: 25px;
      border: 1px solid #e9e9e9;
    }
  %[endif]%
%[endif]%

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

%[if !edit]%
#stacks_in_17161 .wow {
  visibility: hidden;
}
%[endif]%

#stacks_in_17161>ul li {
  padding-bottom: 0 !important;
}

/* iPhone aka SMALL */
@media only screen {
  #stacks_in_17161>ul>li {
    margin-bottom: px;
  }
}



%[if ]%
/* iPad aka MEDIUM */
@media only screen and (min-width: 40.063em) {
  #stacks_in_17161>ul>li {
    margin-bottom: px;
  }
}
%[endif]%


%[if ]%
/* Desktop aka LARGE */
@media only screen and (min-width: 64.063em) {
  #stacks_in_17161>ul>li {
    margin-bottom: px;
  }
}
%[endif]%





/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.   

*/


#stacks_in_17161 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17161 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17161 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17161 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17161 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17161 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17161 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17161 .left {
  float: left !important; }

#stacks_in_17161 .right {
  float: right !important; }

#stacks_in_17161 .clearfix:before, 
#stacks_in_17161 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17161 .clearfix:after {
  clear: both; }

#stacks_in_17161 .hide {
  display: none; }

#stacks_in_17161 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17161 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17161 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17161 select {
  width: 100%; }

#stacks_in_17161 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}


#stacks_in_17161 .row {
  max-width: 62.5em; 
}


#stacks_in_17161 .row:before, 
#stacks_in_17161 .row:after {
  content: " ";
  display: table; }

#stacks_in_17161 .row:after {
  clear: both; }

#stacks_in_17161 .row.collapse > .column,
#stacks_in_17161 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17161 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17161 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17161 .row .row:before, 
#stacks_in_17161 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17161 .row .row:after {
  clear: both; }

#stacks_in_17161 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17161 .row .row.collapse:before, 
#stacks_in_17161 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17161 .row .row.collapse:after {
  clear: both; }

#stacks_in_17161 .column,
#stacks_in_17161 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left; }

#stacks_in_17161 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17161 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17161 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17161 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17161 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17161 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17161 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17161 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17161 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17161 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17161 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17161 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17161 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17161 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17161 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17161 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17161 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17161 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17161 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17161 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17161 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17161 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17161 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17161 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17161 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17161 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17161 .column,
  #stacks_in_17161 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17161 .small-1 {
    width: 8.33333%; }

  #stacks_in_17161 .small-2 {
    width: 16.66667%; }

  #stacks_in_17161 .small-3 {
    width: 25%; }

  #stacks_in_17161 .small-4 {
    width: 33.33333%; }

  #stacks_in_17161 .small-5 {
    width: 41.66667%; }

  #stacks_in_17161 .small-6 {
    width: 50%; }

  #stacks_in_17161 .small-7 {
    width: 58.33333%; }

  #stacks_in_17161 .small-8 {
    width: 66.66667%; }

  #stacks_in_17161 .small-9 {
    width: 75%; }

  #stacks_in_17161 .small-10 {
    width: 83.33333%; }

  #stacks_in_17161 .small-11 {
    width: 91.66667%; }

  #stacks_in_17161 .small-12 {
    width: 100%; }

  #stacks_in_17161 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17161 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17161 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17161 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17161 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17161 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17161 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17161 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17161 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17161 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17161 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17161 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17161 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17161 .column.small-centered,
  #stacks_in_17161 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17161 .column.small-uncentered,
  #stacks_in_17161 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17161 .column.small-centered:last-child,
  #stacks_in_17161 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17161 .column.small-uncentered:last-child,
  #stacks_in_17161 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17161 .column.small-uncentered.opposite,
  #stacks_in_17161 .columns.small-uncentered.opposite {
    float: right; } 
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17161 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17161 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17161 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17161 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17161 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17161 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17161 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17161 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17161 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17161 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17161 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17161 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17161 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17161 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17161 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17161 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17161 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17161 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17161 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17161 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17161 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17161 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17161 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17161 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17161 .column,
  #stacks_in_17161 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17161 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17161 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17161 .medium-3 {
    width: 25%; }

  #stacks_in_17161 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17161 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17161 .medium-6 {
    width: 50%; }

  #stacks_in_17161 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17161 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17161 .medium-9 {
    width: 75%; }

  #stacks_in_17161 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17161 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17161 .medium-12 {
    width: 100%; }

  #stacks_in_17161 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17161 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17161 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17161 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17161 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17161 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17161 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17161 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17161 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17161 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17161 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17161 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17161 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17161 .column.medium-centered,
  #stacks_in_17161 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17161 .column.medium-uncentered,
  #stacks_in_17161 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17161 .column.medium-centered:last-child,
  #stacks_in_17161 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17161 .column.medium-uncentered:last-child,
  #stacks_in_17161 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17161 .column.medium-uncentered.opposite,
  #stacks_in_17161 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17161 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17161 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17161 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17161 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17161 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17161 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17161 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17161 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17161 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17161 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17161 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17161 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17161 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17161 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17161 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17161 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17161 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17161 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17161 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17161 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17161 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17161 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17161 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17161 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17161 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17161 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17161 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17161 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17161 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17161 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17161 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17161 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17161 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17161 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17161 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17161 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17161 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17161 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17161 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17161 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17161 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17161 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17161 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17161 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17161 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17161 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17161 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17161 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17161 .column,
  #stacks_in_17161 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17161 .large-1 {
    width: 8.33333%; }

  #stacks_in_17161 .large-2 {
    width: 16.66667%; }

  #stacks_in_17161 .large-3 {
    width: 25%; }

  #stacks_in_17161 .large-4 {
    width: 33.33333%; }

  #stacks_in_17161 .large-5 {
    width: 41.66667%; }

  #stacks_in_17161 .large-6 {
    width: 50%; }

  #stacks_in_17161 .large-7 {
    width: 58.33333%; }

  #stacks_in_17161 .large-8 {
    width: 66.66667%; }

  #stacks_in_17161 .large-9 {
    width: 75%; }

  #stacks_in_17161 .large-10 {
    width: 83.33333%; }

  #stacks_in_17161 .large-11 {
    width: 91.66667%; }

  #stacks_in_17161 .large-12 {
    width: 100%; }

  #stacks_in_17161 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17161 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17161 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17161 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17161 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17161 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17161 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17161 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17161 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17161 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17161 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17161 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17161 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17161 .column.large-centered,
  #stacks_in_17161 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17161 .column.large-uncentered,
  #stacks_in_17161 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17161 .column.large-centered:last-child,
  #stacks_in_17161 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17161 .column.large-uncentered:last-child,
  #stacks_in_17161 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17161 .column.large-uncentered.opposite,
  #stacks_in_17161 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17161 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17161 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17161 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17161 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17161 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17161 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17161 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17161 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17161 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17161 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17161 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17161 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17161 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17161 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17161 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17161 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17161 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17161 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17161 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17161 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17161 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17161 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17161 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17161 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

#stacks_in_17161 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17161 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17161 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17161 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17161 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17161 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17161 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17161 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17161 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17161 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17161 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17161 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17161 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17161 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17161 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17161 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17161 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

/* Visibility CSS - Foundation */

/* small displays */
@media only screen {
  #stacks_in_17161 .show-for-small-only, #stacks_in_17161 .show-for-small-up, #stacks_in_17161 .show-for-small, #stacks_in_17161 .show-for-small-down, #stacks_in_17161 .hide-for-medium-only, #stacks_in_17161 .hide-for-medium-up, #stacks_in_17161 .hide-for-medium, #stacks_in_17161 .show-for-medium-down, #stacks_in_17161 .hide-for-large-only, #stacks_in_17161 .hide-for-large-up, #stacks_in_17161 .hide-for-large, #stacks_in_17161 .show-for-large-down, #stacks_in_17161 .hide-for-xlarge-only, #stacks_in_17161 .hide-for-xlarge-up, #stacks_in_17161 .hide-for-xxlarge-only, #stacks_in_17161 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_17161 .hide-for-small-only, #stacks_in_17161 .hide-for-small-up, #stacks_in_17161 .hide-for-small, #stacks_in_17161 .hide-for-small-down, #stacks_in_17161 .show-for-medium-only, #stacks_in_17161 .show-for-medium-up, #stacks_in_17161 .show-for-medium, #stacks_in_17161 .hide-for-medium-down, #stacks_in_17161 .show-for-large-only, #stacks_in_17161 .show-for-large-up, #stacks_in_17161 .show-for-large, #stacks_in_17161 .hide-for-large-down, #stacks_in_17161 .show-for-xlarge-only, #stacks_in_17161 .show-for-xlarge-up, #stacks_in_17161 .show-for-xxlarge-only, #stacks_in_17161 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_17161 .visible-for-small-only, #stacks_in_17161 .visible-for-small-up, #stacks_in_17161 .visible-for-small, #stacks_in_17161 .visible-for-small-down, #stacks_in_17161 .hidden-for-medium-only, #stacks_in_17161 .hidden-for-medium-up, #stacks_in_17161 .hidden-for-medium, #stacks_in_17161 .visible-for-medium-down, #stacks_in_17161 .hidden-for-large-only, #stacks_in_17161 .hidden-for-large-up, #stacks_in_17161 .hidden-for-large, #stacks_in_17161 .visible-for-large-down, #stacks_in_17161 .hidden-for-xlarge-only, #stacks_in_17161 .hidden-for-xlarge-up, #stacks_in_17161 .hidden-for-xxlarge-only, #stacks_in_17161 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_17161 .hidden-for-small-only, #stacks_in_17161 .hidden-for-small-up, #stacks_in_17161 .hidden-for-small, #stacks_in_17161 .hidden-for-small-down, #stacks_in_17161 .visible-for-medium-only, #stacks_in_17161 .visible-for-medium-up, #stacks_in_17161 .visible-for-medium, #stacks_in_17161 .hidden-for-medium-down, #stacks_in_17161 .visible-for-large-only, #stacks_in_17161 .visible-for-large-up, #stacks_in_17161 .visible-for-large, #stacks_in_17161 .hidden-for-large-down, #stacks_in_17161 .visible-for-xlarge-only, #stacks_in_17161 .visible-for-xlarge-up, #stacks_in_17161 .visible-for-xxlarge-only, #stacks_in_17161 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_17161 table.show-for-small-only, #stacks_in_17161 table.show-for-small-up, #stacks_in_17161 table.show-for-small, #stacks_in_17161 table.show-for-small-down, #stacks_in_17161 table.hide-for-medium-only, #stacks_in_17161 table.hide-for-medium-up, #stacks_in_17161 table.hide-for-medium, #stacks_in_17161 table.show-for-medium-down, #stacks_in_17161 table.hide-for-large-only, #stacks_in_17161 table.hide-for-large-up, #stacks_in_17161 table.hide-for-large, #stacks_in_17161 table.show-for-large-down, #stacks_in_17161 table.hide-for-xlarge-only, #stacks_in_17161 table.hide-for-xlarge-up, #stacks_in_17161 table.hide-for-xxlarge-only, #stacks_in_17161 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_17161 thead.show-for-small-only, #stacks_in_17161 thead.show-for-small-up, #stacks_in_17161 thead.show-for-small, #stacks_in_17161 thead.show-for-small-down, #stacks_in_17161 thead.hide-for-medium-only, #stacks_in_17161 thead.hide-for-medium-up, #stacks_in_17161 thead.hide-for-medium, #stacks_in_17161 thead.show-for-medium-down, #stacks_in_17161 thead.hide-for-large-only, #stacks_in_17161 thead.hide-for-large-up, #stacks_in_17161 thead.hide-for-large, #stacks_in_17161 thead.show-for-large-down, #stacks_in_17161 thead.hide-for-xlarge-only, #stacks_in_17161 thead.hide-for-xlarge-up, #stacks_in_17161 thead.hide-for-xxlarge-only, #stacks_in_17161 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.show-for-small-only, #stacks_in_17161 tbody.show-for-small-up, #stacks_in_17161 tbody.show-for-small, #stacks_in_17161 tbody.show-for-small-down, #stacks_in_17161 tbody.hide-for-medium-only, #stacks_in_17161 tbody.hide-for-medium-up, #stacks_in_17161 tbody.hide-for-medium, #stacks_in_17161 tbody.show-for-medium-down, #stacks_in_17161 tbody.hide-for-large-only, #stacks_in_17161 tbody.hide-for-large-up, #stacks_in_17161 tbody.hide-for-large, #stacks_in_17161 tbody.show-for-large-down, #stacks_in_17161 tbody.hide-for-xlarge-only, #stacks_in_17161 tbody.hide-for-xlarge-up, #stacks_in_17161 tbody.hide-for-xxlarge-only, #stacks_in_17161 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_17161 tr.show-for-small-only, #stacks_in_17161 tr.show-for-small-up, #stacks_in_17161 tr.show-for-small, #stacks_in_17161 tr.show-for-small-down, #stacks_in_17161 tr.hide-for-medium-only, #stacks_in_17161 tr.hide-for-medium-up, #stacks_in_17161 tr.hide-for-medium, #stacks_in_17161 tr.show-for-medium-down, #stacks_in_17161 tr.hide-for-large-only, #stacks_in_17161 tr.hide-for-large-up, #stacks_in_17161 tr.hide-for-large, #stacks_in_17161 tr.show-for-large-down, #stacks_in_17161 tr.hide-for-xlarge-only, #stacks_in_17161 tr.hide-for-xlarge-up, #stacks_in_17161 tr.hide-for-xxlarge-only, #stacks_in_17161 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_17161 th.show-for-small-only, #stacks_in_17161 td.show-for-small-only, #stacks_in_17161 th.show-for-small-up, #stacks_in_17161 td.show-for-small-up, #stacks_in_17161 th.show-for-small, #stacks_in_17161 td.show-for-small, #stacks_in_17161 th.show-for-small-down, #stacks_in_17161 td.show-for-small-down, #stacks_in_17161 th.hide-for-medium-only, #stacks_in_17161 td.hide-for-medium-only, #stacks_in_17161 th.hide-for-medium-up, #stacks_in_17161 td.hide-for-medium-up, #stacks_in_17161 th.hide-for-medium, #stacks_in_17161 td.hide-for-medium, #stacks_in_17161 th.show-for-medium-down, #stacks_in_17161 td.show-for-medium-down, #stacks_in_17161 th.hide-for-large-only, #stacks_in_17161 td.hide-for-large-only, #stacks_in_17161 th.hide-for-large-up, #stacks_in_17161 td.hide-for-large-up, #stacks_in_17161 th.hide-for-large, #stacks_in_17161 td.hide-for-large, #stacks_in_17161 th.show-for-large-down, #stacks_in_17161 td.show-for-large-down, #stacks_in_17161 th.hide-for-xlarge-only, #stacks_in_17161 td.hide-for-xlarge-only, #stacks_in_17161 th.hide-for-xlarge-up, #stacks_in_17161 td.hide-for-xlarge-up, #stacks_in_17161 th.hide-for-xxlarge-only, #stacks_in_17161 td.hide-for-xxlarge-only, #stacks_in_17161 th.hide-for-xxlarge-up, #stacks_in_17161 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* medium displays */
@media only screen and (min-width: 40.063em) {
  #stacks_in_17161 .hide-for-small-only, #stacks_in_17161 .show-for-small-up, #stacks_in_17161 .hide-for-small, #stacks_in_17161 .hide-for-small-down, #stacks_in_17161 .show-for-medium-only, #stacks_in_17161 .show-for-medium-up, #stacks_in_17161 .show-for-medium, #stacks_in_17161 .show-for-medium-down, #stacks_in_17161 .hide-for-large-only, #stacks_in_17161 .hide-for-large-up, #stacks_in_17161 .hide-for-large, #stacks_in_17161 .show-for-large-down, #stacks_in_17161 .hide-for-xlarge-only, #stacks_in_17161 .hide-for-xlarge-up, #stacks_in_17161 .hide-for-xxlarge-only, #stacks_in_17161 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_17161 .show-for-small-only, #stacks_in_17161 .hide-for-small-up, #stacks_in_17161 .show-for-small, #stacks_in_17161 .show-for-small-down, #stacks_in_17161 .hide-for-medium-only, #stacks_in_17161 .hide-for-medium-up, #stacks_in_17161 .hide-for-medium, #stacks_in_17161 .hide-for-medium-down, #stacks_in_17161 .show-for-large-only, #stacks_in_17161 .show-for-large-up, #stacks_in_17161 .show-for-large, #stacks_in_17161 .hide-for-large-down, #stacks_in_17161 .show-for-xlarge-only, #stacks_in_17161 .show-for-xlarge-up, #stacks_in_17161 .show-for-xxlarge-only, #stacks_in_17161 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_17161 .hidden-for-small-only, #stacks_in_17161 .visible-for-small-up, #stacks_in_17161 .hidden-for-small, #stacks_in_17161 .hidden-for-small-down, #stacks_in_17161 .visible-for-medium-only, #stacks_in_17161 .visible-for-medium-up, #stacks_in_17161 .visible-for-medium, #stacks_in_17161 .visible-for-medium-down, #stacks_in_17161 .hidden-for-large-only, #stacks_in_17161 .hidden-for-large-up, #stacks_in_17161 .hidden-for-large, #stacks_in_17161 .visible-for-large-down, #stacks_in_17161 .hidden-for-xlarge-only, #stacks_in_17161 .hidden-for-xlarge-up, #stacks_in_17161 .hidden-for-xxlarge-only, #stacks_in_17161 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_17161 .visible-for-small-only, #stacks_in_17161 .hidden-for-small-up, #stacks_in_17161 .visible-for-small, #stacks_in_17161 .visible-for-small-down, #stacks_in_17161 .hidden-for-medium-only, #stacks_in_17161 .hidden-for-medium-up, #stacks_in_17161 .hidden-for-medium, #stacks_in_17161 .hidden-for-medium-down, #stacks_in_17161 .visible-for-large-only, #stacks_in_17161 .visible-for-large-up, #stacks_in_17161 .visible-for-large, #stacks_in_17161 .hidden-for-large-down, #stacks_in_17161 .visible-for-xlarge-only, #stacks_in_17161 .visible-for-xlarge-up, #stacks_in_17161 .visible-for-xxlarge-only, #stacks_in_17161 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_17161 table.hide-for-small-only, #stacks_in_17161 table.show-for-small-up, #stacks_in_17161 table.hide-for-small, #stacks_in_17161 table.hide-for-small-down, #stacks_in_17161 table.show-for-medium-only, #stacks_in_17161 table.show-for-medium-up, #stacks_in_17161 table.show-for-medium, #stacks_in_17161 table.show-for-medium-down, #stacks_in_17161 table.hide-for-large-only, #stacks_in_17161 table.hide-for-large-up, #stacks_in_17161 table.hide-for-large, #stacks_in_17161 table.show-for-large-down, #stacks_in_17161 table.hide-for-xlarge-only, #stacks_in_17161 table.hide-for-xlarge-up, #stacks_in_17161 table.hide-for-xxlarge-only, #stacks_in_17161 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_17161 thead.hide-for-small-only, #stacks_in_17161 thead.show-for-small-up, #stacks_in_17161 thead.hide-for-small, #stacks_in_17161 thead.hide-for-small-down, #stacks_in_17161 thead.show-for-medium-only, #stacks_in_17161 thead.show-for-medium-up, #stacks_in_17161 thead.show-for-medium, #stacks_in_17161 thead.show-for-medium-down, #stacks_in_17161 thead.hide-for-large-only, #stacks_in_17161 thead.hide-for-large-up, #stacks_in_17161 thead.hide-for-large, #stacks_in_17161 thead.show-for-large-down, #stacks_in_17161 thead.hide-for-xlarge-only, #stacks_in_17161 thead.hide-for-xlarge-up, #stacks_in_17161 thead.hide-for-xxlarge-only, #stacks_in_17161 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.hide-for-small-only, #stacks_in_17161 tbody.show-for-small-up, #stacks_in_17161 tbody.hide-for-small, #stacks_in_17161 tbody.hide-for-small-down, #stacks_in_17161 tbody.show-for-medium-only, #stacks_in_17161 tbody.show-for-medium-up, #stacks_in_17161 tbody.show-for-medium, #stacks_in_17161 tbody.show-for-medium-down, #stacks_in_17161 tbody.hide-for-large-only, #stacks_in_17161 tbody.hide-for-large-up, #stacks_in_17161 tbody.hide-for-large, #stacks_in_17161 tbody.show-for-large-down, #stacks_in_17161 tbody.hide-for-xlarge-only, #stacks_in_17161 tbody.hide-for-xlarge-up, #stacks_in_17161 tbody.hide-for-xxlarge-only, #stacks_in_17161 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_17161 tr.hide-for-small-only, #stacks_in_17161 tr.show-for-small-up, #stacks_in_17161 tr.hide-for-small, #stacks_in_17161 tr.hide-for-small-down, #stacks_in_17161 tr.show-for-medium-only, #stacks_in_17161 tr.show-for-medium-up, #stacks_in_17161 tr.show-for-medium, #stacks_in_17161 tr.show-for-medium-down, #stacks_in_17161 tr.hide-for-large-only, #stacks_in_17161 tr.hide-for-large-up, #stacks_in_17161 tr.hide-for-large, #stacks_in_17161 tr.show-for-large-down, #stacks_in_17161 tr.hide-for-xlarge-only, #stacks_in_17161 tr.hide-for-xlarge-up, #stacks_in_17161 tr.hide-for-xxlarge-only, #stacks_in_17161 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_17161 th.hide-for-small-only, #stacks_in_17161 td.hide-for-small-only, #stacks_in_17161 th.show-for-small-up, #stacks_in_17161 td.show-for-small-up, #stacks_in_17161 th.hide-for-small, #stacks_in_17161 td.hide-for-small, #stacks_in_17161 th.hide-for-small-down, #stacks_in_17161 td.hide-for-small-down, #stacks_in_17161 th.show-for-medium-only, #stacks_in_17161 td.show-for-medium-only, #stacks_in_17161 th.show-for-medium-up, #stacks_in_17161 td.show-for-medium-up, #stacks_in_17161 th.show-for-medium, #stacks_in_17161 td.show-for-medium, #stacks_in_17161 th.show-for-medium-down, #stacks_in_17161 td.show-for-medium-down, #stacks_in_17161 th.hide-for-large-only, #stacks_in_17161 td.hide-for-large-only, #stacks_in_17161 th.hide-for-large-up, #stacks_in_17161 td.hide-for-large-up, #stacks_in_17161 th.hide-for-large, #stacks_in_17161 td.hide-for-large, #stacks_in_17161 th.show-for-large-down, #stacks_in_17161 td.show-for-large-down, #stacks_in_17161 th.hide-for-xlarge-only, #stacks_in_17161 td.hide-for-xlarge-only, #stacks_in_17161 th.hide-for-xlarge-up, #stacks_in_17161 td.hide-for-xlarge-up, #stacks_in_17161 th.hide-for-xxlarge-only, #stacks_in_17161 td.hide-for-xxlarge-only, #stacks_in_17161 th.hide-for-xxlarge-up, #stacks_in_17161 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* large displays */
@media only screen and (min-width: 64.063em) {
  #stacks_in_17161 .hide-for-small-only, #stacks_in_17161 .show-for-small-up, #stacks_in_17161 .hide-for-small, #stacks_in_17161 .hide-for-small-down, #stacks_in_17161 .hide-for-medium-only, #stacks_in_17161 .show-for-medium-up, #stacks_in_17161 .hide-for-medium, #stacks_in_17161 .hide-for-medium-down, #stacks_in_17161 .show-for-large-only, #stacks_in_17161 .show-for-large-up, #stacks_in_17161 .show-for-large, #stacks_in_17161 .show-for-large-down, #stacks_in_17161 .hide-for-xlarge-only, #stacks_in_17161 .hide-for-xlarge-up, #stacks_in_17161 .hide-for-xxlarge-only, #stacks_in_17161 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_17161 .show-for-small-only, #stacks_in_17161 .hide-for-small-up, #stacks_in_17161 .show-for-small, #stacks_in_17161 .show-for-small-down, #stacks_in_17161 .show-for-medium-only, #stacks_in_17161 .hide-for-medium-up, #stacks_in_17161 .show-for-medium, #stacks_in_17161 .show-for-medium-down, #stacks_in_17161 .hide-for-large-only, #stacks_in_17161 .hide-for-large-up, #stacks_in_17161 .hide-for-large, #stacks_in_17161 .hide-for-large-down, #stacks_in_17161 .show-for-xlarge-only, #stacks_in_17161 .show-for-xlarge-up, #stacks_in_17161 .show-for-xxlarge-only, #stacks_in_17161 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_17161 .hidden-for-small-only, #stacks_in_17161 .visible-for-small-up, #stacks_in_17161 .hidden-for-small, #stacks_in_17161 .hidden-for-small-down, #stacks_in_17161 .hidden-for-medium-only, #stacks_in_17161 .visible-for-medium-up, #stacks_in_17161 .hidden-for-medium, #stacks_in_17161 .hidden-for-medium-down, #stacks_in_17161 .visible-for-large-only, #stacks_in_17161 .visible-for-large-up, #stacks_in_17161 .visible-for-large, #stacks_in_17161 .visible-for-large-down, #stacks_in_17161 .hidden-for-xlarge-only, #stacks_in_17161 .hidden-for-xlarge-up, #stacks_in_17161 .hidden-for-xxlarge-only, #stacks_in_17161 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_17161 .visible-for-small-only, #stacks_in_17161 .hidden-for-small-up, #stacks_in_17161 .visible-for-small, #stacks_in_17161 .visible-for-small-down, #stacks_in_17161 .visible-for-medium-only, #stacks_in_17161 .hidden-for-medium-up, #stacks_in_17161 .visible-for-medium, #stacks_in_17161 .visible-for-medium-down, #stacks_in_17161 .hidden-for-large-only, #stacks_in_17161 .hidden-for-large-up, #stacks_in_17161 .hidden-for-large, #stacks_in_17161 .hidden-for-large-down, #stacks_in_17161 .visible-for-xlarge-only, #stacks_in_17161 .visible-for-xlarge-up, #stacks_in_17161 .visible-for-xxlarge-only, #stacks_in_17161 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_17161 table.hide-for-small-only, #stacks_in_17161 table.show-for-small-up, #stacks_in_17161 table.hide-for-small, #stacks_in_17161 table.hide-for-small-down, #stacks_in_17161 table.hide-for-medium-only, #stacks_in_17161 table.show-for-medium-up, #stacks_in_17161 table.hide-for-medium, #stacks_in_17161 table.hide-for-medium-down, #stacks_in_17161 table.show-for-large-only, #stacks_in_17161 table.show-for-large-up, #stacks_in_17161 table.show-for-large, #stacks_in_17161 table.show-for-large-down, #stacks_in_17161 table.hide-for-xlarge-only, #stacks_in_17161 table.hide-for-xlarge-up, #stacks_in_17161 table.hide-for-xxlarge-only, #stacks_in_17161 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_17161 thead.hide-for-small-only, #stacks_in_17161 thead.show-for-small-up, #stacks_in_17161 thead.hide-for-small, #stacks_in_17161 thead.hide-for-small-down, #stacks_in_17161 thead.hide-for-medium-only, #stacks_in_17161 thead.show-for-medium-up, #stacks_in_17161 thead.hide-for-medium, #stacks_in_17161 thead.hide-for-medium-down, #stacks_in_17161 thead.show-for-large-only, #stacks_in_17161 thead.show-for-large-up, #stacks_in_17161 thead.show-for-large, #stacks_in_17161 thead.show-for-large-down, #stacks_in_17161 thead.hide-for-xlarge-only, #stacks_in_17161 thead.hide-for-xlarge-up, #stacks_in_17161 thead.hide-for-xxlarge-only, #stacks_in_17161 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.hide-for-small-only, #stacks_in_17161 tbody.show-for-small-up, #stacks_in_17161 tbody.hide-for-small, #stacks_in_17161 tbody.hide-for-small-down, #stacks_in_17161 tbody.hide-for-medium-only, #stacks_in_17161 tbody.show-for-medium-up, #stacks_in_17161 tbody.hide-for-medium, #stacks_in_17161 tbody.hide-for-medium-down, #stacks_in_17161 tbody.show-for-large-only, #stacks_in_17161 tbody.show-for-large-up, #stacks_in_17161 tbody.show-for-large, #stacks_in_17161 tbody.show-for-large-down, #stacks_in_17161 tbody.hide-for-xlarge-only, #stacks_in_17161 tbody.hide-for-xlarge-up, #stacks_in_17161 tbody.hide-for-xxlarge-only, #stacks_in_17161 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_17161 tr.hide-for-small-only, #stacks_in_17161 tr.show-for-small-up, #stacks_in_17161 tr.hide-for-small, #stacks_in_17161 tr.hide-for-small-down, #stacks_in_17161 tr.hide-for-medium-only, #stacks_in_17161 tr.show-for-medium-up, #stacks_in_17161 tr.hide-for-medium, #stacks_in_17161 tr.hide-for-medium-down, #stacks_in_17161 tr.show-for-large-only, #stacks_in_17161 tr.show-for-large-up, #stacks_in_17161 tr.show-for-large, #stacks_in_17161 tr.show-for-large-down, #stacks_in_17161 tr.hide-for-xlarge-only, #stacks_in_17161 tr.hide-for-xlarge-up, #stacks_in_17161 tr.hide-for-xxlarge-only, #stacks_in_17161 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_17161 th.hide-for-small-only, #stacks_in_17161 td.hide-for-small-only, #stacks_in_17161 th.show-for-small-up, #stacks_in_17161 td.show-for-small-up, #stacks_in_17161 th.hide-for-small, #stacks_in_17161 td.hide-for-small, #stacks_in_17161 th.hide-for-small-down, #stacks_in_17161 td.hide-for-small-down, #stacks_in_17161 th.hide-for-medium-only, #stacks_in_17161 td.hide-for-medium-only, #stacks_in_17161 th.show-for-medium-up, #stacks_in_17161 td.show-for-medium-up, #stacks_in_17161 th.hide-for-medium, #stacks_in_17161 td.hide-for-medium, #stacks_in_17161 th.hide-for-medium-down, #stacks_in_17161 td.hide-for-medium-down, #stacks_in_17161 th.show-for-large-only, #stacks_in_17161 td.show-for-large-only, #stacks_in_17161 th.show-for-large-up, #stacks_in_17161 td.show-for-large-up, #stacks_in_17161 th.show-for-large, #stacks_in_17161 td.show-for-large, #stacks_in_17161 th.show-for-large-down, #stacks_in_17161 td.show-for-large-down, #stacks_in_17161 th.hide-for-xlarge-only, #stacks_in_17161 td.hide-for-xlarge-only, #stacks_in_17161 th.hide-for-xlarge-up, #stacks_in_17161 td.hide-for-xlarge-up, #stacks_in_17161 th.hide-for-xxlarge-only, #stacks_in_17161 td.hide-for-xxlarge-only, #stacks_in_17161 th.hide-for-xxlarge-up, #stacks_in_17161 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xlarge displays */
@media only screen and (min-width: 90.063em) {
  #stacks_in_17161 .hide-for-small-only, #stacks_in_17161 .show-for-small-up, #stacks_in_17161 .hide-for-small, #stacks_in_17161 .hide-for-small-down, #stacks_in_17161 .hide-for-medium-only, #stacks_in_17161 .show-for-medium-up, #stacks_in_17161 .hide-for-medium, #stacks_in_17161 .hide-for-medium-down, #stacks_in_17161 .hide-for-large-only, #stacks_in_17161 .show-for-large-up, #stacks_in_17161 .hide-for-large, #stacks_in_17161 .hide-for-large-down, #stacks_in_17161 .show-for-xlarge-only, #stacks_in_17161 .show-for-xlarge-up, #stacks_in_17161 .hide-for-xxlarge-only, #stacks_in_17161 .hide-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_17161 .show-for-small-only, #stacks_in_17161 .hide-for-small-up, #stacks_in_17161 .show-for-small, #stacks_in_17161 .show-for-small-down, #stacks_in_17161 .show-for-medium-only, #stacks_in_17161 .hide-for-medium-up, #stacks_in_17161 .show-for-medium, #stacks_in_17161 .show-for-medium-down, #stacks_in_17161 .show-for-large-only, #stacks_in_17161 .hide-for-large-up, #stacks_in_17161 .show-for-large, #stacks_in_17161 .show-for-large-down, #stacks_in_17161 .hide-for-xlarge-only, #stacks_in_17161 .hide-for-xlarge-up, #stacks_in_17161 .show-for-xxlarge-only, #stacks_in_17161 .show-for-xxlarge-up {
    display: none !important; }

  #stacks_in_17161 .hidden-for-small-only, #stacks_in_17161 .visible-for-small-up, #stacks_in_17161 .hidden-for-small, #stacks_in_17161 .hidden-for-small-down, #stacks_in_17161 .hidden-for-medium-only, #stacks_in_17161 .visible-for-medium-up, #stacks_in_17161 .hidden-for-medium, #stacks_in_17161 .hidden-for-medium-down, #stacks_in_17161 .hidden-for-large-only, #stacks_in_17161 .visible-for-large-up, #stacks_in_17161 .hidden-for-large, #stacks_in_17161 .hidden-for-large-down, #stacks_in_17161 .visible-for-xlarge-only, #stacks_in_17161 .visible-for-xlarge-up, #stacks_in_17161 .hidden-for-xxlarge-only, #stacks_in_17161 .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_17161 .visible-for-small-only, #stacks_in_17161 .hidden-for-small-up, #stacks_in_17161 .visible-for-small, #stacks_in_17161 .visible-for-small-down, #stacks_in_17161 .visible-for-medium-only, #stacks_in_17161 .hidden-for-medium-up, #stacks_in_17161 .visible-for-medium, #stacks_in_17161 .visible-for-medium-down, #stacks_in_17161 .visible-for-large-only, #stacks_in_17161 .hidden-for-large-up, #stacks_in_17161 .visible-for-large, #stacks_in_17161 .visible-for-large-down, #stacks_in_17161 .hidden-for-xlarge-only, #stacks_in_17161 .hidden-for-xlarge-up, #stacks_in_17161 .visible-for-xxlarge-only, #stacks_in_17161 .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_17161 table.hide-for-small-only, #stacks_in_17161 table.show-for-small-up, #stacks_in_17161 table.hide-for-small, #stacks_in_17161 table.hide-for-small-down, #stacks_in_17161 table.hide-for-medium-only, #stacks_in_17161 table.show-for-medium-up, #stacks_in_17161 table.hide-for-medium, #stacks_in_17161 table.hide-for-medium-down, #stacks_in_17161 table.hide-for-large-only, #stacks_in_17161 table.show-for-large-up, #stacks_in_17161 table.hide-for-large, #stacks_in_17161 table.hide-for-large-down, #stacks_in_17161 table.show-for-xlarge-only, #stacks_in_17161 table.show-for-xlarge-up, #stacks_in_17161 table.hide-for-xxlarge-only, #stacks_in_17161 table.hide-for-xxlarge-up {
    display: table; }

  #stacks_in_17161 thead.hide-for-small-only, #stacks_in_17161 thead.show-for-small-up, #stacks_in_17161 thead.hide-for-small, #stacks_in_17161 thead.hide-for-small-down, #stacks_in_17161 thead.hide-for-medium-only, #stacks_in_17161 thead.show-for-medium-up, #stacks_in_17161 thead.hide-for-medium, #stacks_in_17161 thead.hide-for-medium-down, #stacks_in_17161 thead.hide-for-large-only, #stacks_in_17161 thead.show-for-large-up, #stacks_in_17161 thead.hide-for-large, #stacks_in_17161 thead.hide-for-large-down, #stacks_in_17161 thead.show-for-xlarge-only, #stacks_in_17161 thead.show-for-xlarge-up, #stacks_in_17161 thead.hide-for-xxlarge-only, #stacks_in_17161 thead.hide-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.hide-for-small-only, #stacks_in_17161 tbody.show-for-small-up, #stacks_in_17161 tbody.hide-for-small, #stacks_in_17161 tbody.hide-for-small-down, #stacks_in_17161 tbody.hide-for-medium-only, #stacks_in_17161 tbody.show-for-medium-up, #stacks_in_17161 tbody.hide-for-medium, #stacks_in_17161 tbody.hide-for-medium-down, #stacks_in_17161 tbody.hide-for-large-only, #stacks_in_17161 tbody.show-for-large-up, #stacks_in_17161 tbody.hide-for-large, #stacks_in_17161 tbody.hide-for-large-down, #stacks_in_17161 tbody.show-for-xlarge-only, #stacks_in_17161 tbody.show-for-xlarge-up, #stacks_in_17161 tbody.hide-for-xxlarge-only, #stacks_in_17161 tbody.hide-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_17161 tr.hide-for-small-only, #stacks_in_17161 tr.show-for-small-up, #stacks_in_17161 tr.hide-for-small, #stacks_in_17161 tr.hide-for-small-down, #stacks_in_17161 tr.hide-for-medium-only, #stacks_in_17161 tr.show-for-medium-up, #stacks_in_17161 tr.hide-for-medium, #stacks_in_17161 tr.hide-for-medium-down, #stacks_in_17161 tr.hide-for-large-only, #stacks_in_17161 tr.show-for-large-up, #stacks_in_17161 tr.hide-for-large, #stacks_in_17161 tr.hide-for-large-down, #stacks_in_17161 tr.show-for-xlarge-only, #stacks_in_17161 tr.show-for-xlarge-up, #stacks_in_17161 tr.hide-for-xxlarge-only, #stacks_in_17161 tr.hide-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_17161 th.hide-for-small-only, #stacks_in_17161 td.hide-for-small-only, #stacks_in_17161 th.show-for-small-up, #stacks_in_17161 td.show-for-small-up, #stacks_in_17161 th.hide-for-small, #stacks_in_17161 td.hide-for-small, #stacks_in_17161 th.hide-for-small-down, #stacks_in_17161 td.hide-for-small-down, #stacks_in_17161 th.hide-for-medium-only, #stacks_in_17161 td.hide-for-medium-only, #stacks_in_17161 th.show-for-medium-up, #stacks_in_17161 td.show-for-medium-up, #stacks_in_17161 th.hide-for-medium, #stacks_in_17161 td.hide-for-medium, #stacks_in_17161 th.hide-for-medium-down, #stacks_in_17161 td.hide-for-medium-down, #stacks_in_17161 th.hide-for-large-only, #stacks_in_17161 td.hide-for-large-only, #stacks_in_17161 th.show-for-large-up, #stacks_in_17161 td.show-for-large-up, #stacks_in_17161 th.hide-for-large, #stacks_in_17161 td.hide-for-large, #stacks_in_17161 th.hide-for-large-down, #stacks_in_17161 td.hide-for-large-down, #stacks_in_17161 th.show-for-xlarge-only, #stacks_in_17161 td.show-for-xlarge-only, #stacks_in_17161 th.show-for-xlarge-up, #stacks_in_17161 td.show-for-xlarge-up, #stacks_in_17161 th.hide-for-xxlarge-only, #stacks_in_17161 td.hide-for-xxlarge-only, #stacks_in_17161 th.hide-for-xxlarge-up, #stacks_in_17161 td.hide-for-xxlarge-up {
    display: table-cell !important; } }
/* xxlarge displays */
@media only screen and (min-width: 120.063em) {
  #stacks_in_17161 .hide-for-small-only, #stacks_in_17161 .show-for-small-up, #stacks_in_17161 .hide-for-small, #stacks_in_17161 .hide-for-small-down, #stacks_in_17161 .hide-for-medium-only, #stacks_in_17161 .show-for-medium-up, #stacks_in_17161 .hide-for-medium, #stacks_in_17161 .hide-for-medium-down, #stacks_in_17161 .hide-for-large-only, #stacks_in_17161 .show-for-large-up, #stacks_in_17161 .hide-for-large, #stacks_in_17161 .hide-for-large-down, #stacks_in_17161 .hide-for-xlarge-only, #stacks_in_17161 .show-for-xlarge-up, #stacks_in_17161 .show-for-xxlarge-only, #stacks_in_17161 .show-for-xxlarge-up {
    display: inherit !important; }

  #stacks_in_17161 .show-for-small-only, #stacks_in_17161 .hide-for-small-up, #stacks_in_17161 .show-for-small, #stacks_in_17161 .show-for-small-down, #stacks_in_17161 .show-for-medium-only, #stacks_in_17161 .hide-for-medium-up, #stacks_in_17161 .show-for-medium, #stacks_in_17161 .show-for-medium-down, #stacks_in_17161 .show-for-large-only, #stacks_in_17161 .hide-for-large-up, #stacks_in_17161 .show-for-large, #stacks_in_17161 .show-for-large-down, #stacks_in_17161 .show-for-xlarge-only, #stacks_in_17161 .hide-for-xlarge-up, #stacks_in_17161 .hide-for-xxlarge-only, #stacks_in_17161 .hide-for-xxlarge-up {
    display: none !important; }

  #stacks_in_17161 .hidden-for-small-only, #stacks_in_17161 .visible-for-small-up, #stacks_in_17161 .hidden-for-small, #stacks_in_17161 .hidden-for-small-down, #stacks_in_17161 .hidden-for-medium-only, #stacks_in_17161 .visible-for-medium-up, #stacks_in_17161 .hidden-for-medium, #stacks_in_17161 .hidden-for-medium-down, #stacks_in_17161 .hidden-for-large-only, #stacks_in_17161 .visible-for-large-up, #stacks_in_17161 .hidden-for-large, #stacks_in_17161 .hidden-for-large-down, #stacks_in_17161 .hidden-for-xlarge-only, #stacks_in_17161 .visible-for-xlarge-up, #stacks_in_17161 .visible-for-xxlarge-only, #stacks_in_17161 .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

  #stacks_in_17161 .visible-for-small-only, #stacks_in_17161 .hidden-for-small-up, #stacks_in_17161 .visible-for-small, #stacks_in_17161 .visible-for-small-down, #stacks_in_17161 .visible-for-medium-only, #stacks_in_17161 .hidden-for-medium-up, #stacks_in_17161 .visible-for-medium, #stacks_in_17161 .visible-for-medium-down, #stacks_in_17161 .visible-for-large-only, #stacks_in_17161 .hidden-for-large-up, #stacks_in_17161 .visible-for-large, #stacks_in_17161 .visible-for-large-down, #stacks_in_17161 .visible-for-xlarge-only, #stacks_in_17161 .hidden-for-xlarge-up, #stacks_in_17161 .hidden-for-xxlarge-only, #stacks_in_17161 .hidden-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }

  #stacks_in_17161 table.hide-for-small-only, #stacks_in_17161 table.show-for-small-up, #stacks_in_17161 table.hide-for-small, #stacks_in_17161 table.hide-for-small-down, #stacks_in_17161 table.hide-for-medium-only, #stacks_in_17161 table.show-for-medium-up, #stacks_in_17161 table.hide-for-medium, #stacks_in_17161 table.hide-for-medium-down, #stacks_in_17161 table.hide-for-large-only, #stacks_in_17161 table.show-for-large-up, #stacks_in_17161 table.hide-for-large, #stacks_in_17161 table.hide-for-large-down, #stacks_in_17161 table.hide-for-xlarge-only, #stacks_in_17161 table.show-for-xlarge-up, #stacks_in_17161 table.show-for-xxlarge-only, #stacks_in_17161 table.show-for-xxlarge-up {
    display: table; }

  #stacks_in_17161 thead.hide-for-small-only, #stacks_in_17161 thead.show-for-small-up, #stacks_in_17161 thead.hide-for-small, #stacks_in_17161 thead.hide-for-small-down, #stacks_in_17161 thead.hide-for-medium-only, #stacks_in_17161 thead.show-for-medium-up, #stacks_in_17161 thead.hide-for-medium, #stacks_in_17161 thead.hide-for-medium-down, #stacks_in_17161 thead.hide-for-large-only, #stacks_in_17161 thead.show-for-large-up, #stacks_in_17161 thead.hide-for-large, #stacks_in_17161 thead.hide-for-large-down, #stacks_in_17161 thead.hide-for-xlarge-only, #stacks_in_17161 thead.show-for-xlarge-up, #stacks_in_17161 thead.show-for-xxlarge-only, #stacks_in_17161 thead.show-for-xxlarge-up {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.hide-for-small-only, #stacks_in_17161 tbody.show-for-small-up, #stacks_in_17161 tbody.hide-for-small, #stacks_in_17161 tbody.hide-for-small-down, #stacks_in_17161 tbody.hide-for-medium-only, #stacks_in_17161 tbody.show-for-medium-up, #stacks_in_17161 tbody.hide-for-medium, #stacks_in_17161 tbody.hide-for-medium-down, #stacks_in_17161 tbody.hide-for-large-only, #stacks_in_17161 tbody.show-for-large-up, #stacks_in_17161 tbody.hide-for-large, #stacks_in_17161 tbody.hide-for-large-down, #stacks_in_17161 tbody.hide-for-xlarge-only, #stacks_in_17161 tbody.show-for-xlarge-up, #stacks_in_17161 tbody.show-for-xxlarge-only, #stacks_in_17161 tbody.show-for-xxlarge-up {
    display: table-row-group !important; }

  #stacks_in_17161 tr.hide-for-small-only, #stacks_in_17161 tr.show-for-small-up, #stacks_in_17161 tr.hide-for-small, #stacks_in_17161 tr.hide-for-small-down, #stacks_in_17161 tr.hide-for-medium-only, #stacks_in_17161 tr.show-for-medium-up, #stacks_in_17161 tr.hide-for-medium, #stacks_in_17161 tr.hide-for-medium-down, #stacks_in_17161 tr.hide-for-large-only, #stacks_in_17161 tr.show-for-large-up, #stacks_in_17161 tr.hide-for-large, #stacks_in_17161 tr.hide-for-large-down, #stacks_in_17161 tr.hide-for-xlarge-only, #stacks_in_17161 tr.show-for-xlarge-up, #stacks_in_17161 tr.show-for-xxlarge-only, #stacks_in_17161 tr.show-for-xxlarge-up {
    display: table-row !important; }

  #stacks_in_17161 th.hide-for-small-only, #stacks_in_17161 td.hide-for-small-only, #stacks_in_17161 th.show-for-small-up, #stacks_in_17161 td.show-for-small-up, #stacks_in_17161 th.hide-for-small, #stacks_in_17161 td.hide-for-small, #stacks_in_17161 th.hide-for-small-down, #stacks_in_17161 td.hide-for-small-down, #stacks_in_17161 th.hide-for-medium-only, #stacks_in_17161 td.hide-for-medium-only, #stacks_in_17161 th.show-for-medium-up, #stacks_in_17161 td.show-for-medium-up, #stacks_in_17161 th.hide-for-medium, #stacks_in_17161 td.hide-for-medium, #stacks_in_17161 th.hide-for-medium-down, #stacks_in_17161 td.hide-for-medium-down, #stacks_in_17161 th.hide-for-large-only, #stacks_in_17161 td.hide-for-large-only, #stacks_in_17161 th.show-for-large-up, #stacks_in_17161 td.show-for-large-up, #stacks_in_17161 th.hide-for-large, #stacks_in_17161 td.hide-for-large, #stacks_in_17161 th.hide-for-large-down, #stacks_in_17161 td.hide-for-large-down, #stacks_in_17161 th.hide-for-xlarge-only, #stacks_in_17161 td.hide-for-xlarge-only, #stacks_in_17161 th.show-for-xlarge-up, #stacks_in_17161 td.show-for-xlarge-up, #stacks_in_17161 th.show-for-xxlarge-only, #stacks_in_17161 td.show-for-xxlarge-only, #stacks_in_17161 th.show-for-xxlarge-up, #stacks_in_17161 td.show-for-xxlarge-up {
    display: table-cell !important; } }
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_17161 table.hide-for-landscape, #stacks_in_17161 table.show-for-portrait {
  display: table; }

#stacks_in_17161 thead.hide-for-landscape, #stacks_in_17161 thead.show-for-portrait {
  display: table-header-group !important; }

#stacks_in_17161 tbody.hide-for-landscape, #stacks_in_17161 tbody.show-for-portrait {
  display: table-row-group !important; }

#stacks_in_17161 tr.hide-for-landscape, #stacks_in_17161 tr.show-for-portrait {
  display: table-row !important; }

#stacks_in_17161 td.hide-for-landscape, #stacks_in_17161 td.show-for-portrait,
#stacks_in_17161 th.hide-for-landscape,
#stacks_in_17161 th.show-for-portrait {
  display: table-cell !important; }

@media only screen and (orientation: landscape) {
  #stacks_in_17161 .show-for-landscape,
  #stacks_in_17161 .hide-for-portrait {
    display: inherit !important; }

  #stacks_in_17161 .hide-for-landscape,
  #stacks_in_17161 .show-for-portrait {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_17161 table.show-for-landscape, #stacks_in_17161 table.hide-for-portrait {
    display: table; }

  #stacks_in_17161 thead.show-for-landscape, #stacks_in_17161 thead.hide-for-portrait {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.show-for-landscape, #stacks_in_17161 tbody.hide-for-portrait {
    display: table-row-group !important; }

  #stacks_in_17161 tr.show-for-landscape, #stacks_in_17161 tr.hide-for-portrait {
    display: table-row !important; }

  #stacks_in_17161 td.show-for-landscape, #stacks_in_17161 td.hide-for-portrait,
  #stacks_in_17161 th.show-for-landscape,
  #stacks_in_17161 th.hide-for-portrait {
    display: table-cell !important; } }
@media only screen and (orientation: portrait) {
  #stacks_in_17161 .show-for-portrait,
  #stacks_in_17161 .hide-for-landscape {
    display: inherit !important; }

  #stacks_in_17161 .hide-for-portrait,
  #stacks_in_17161 .show-for-landscape {
    display: none !important; }

  /* Specific visibility for tables */
  #stacks_in_17161 table.show-for-portrait, #stacks_in_17161 table.hide-for-landscape {
    display: table; }

  #stacks_in_17161 thead.show-for-portrait, #stacks_in_17161 thead.hide-for-landscape {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.show-for-portrait, #stacks_in_17161 tbody.hide-for-landscape {
    display: table-row-group !important; }

  #stacks_in_17161 tr.show-for-portrait, #stacks_in_17161 tr.hide-for-landscape {
    display: table-row !important; }

  #stacks_in_17161 td.show-for-portrait, #stacks_in_17161 td.hide-for-landscape,
  #stacks_in_17161 th.show-for-portrait,
  #stacks_in_17161 th.hide-for-landscape {
    display: table-cell !important; } }
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important; }

.hide-for-touch {
  display: inherit !important; }

.touch #stacks_in_17161 .show-for-touch {
  display: inherit !important; }

.touch #stacks_in_17161 .hide-for-touch {
  display: none !important; }

/* Specific visibility for tables */
#stacks_in_17161 table.hide-for-touch {
  display: table; }

.touch #stacks_in_17161 table.show-for-touch {
  display: table; }

#stacks_in_17161 thead.hide-for-touch {
  display: table-header-group !important; }

.touch #stacks_in_17161 thead.show-for-touch {
  display: table-header-group !important; }

#stacks_in_17161 tbody.hide-for-touch {
  display: table-row-group !important; }

.touch #stacks_in_17161 tbody.show-for-touch {
  display: table-row-group !important; }

#stacks_in_17161 tr.hide-for-touch {
  display: table-row !important; }

.touch #stacks_in_17161 tr.show-for-touch {
  display: table-row !important; }

#stacks_in_17161 td.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_17161 td.show-for-touch {
  display: table-cell !important; }

#stacks_in_17161 th.hide-for-touch {
  display: table-cell !important; }

.touch #stacks_in_17161 th.show-for-touch {
  display: table-cell !important; }

/* Print visibility */
@media print {
  #stacks_in_17161 .show-for-print {
    display: block; }

  #stacks_in_17161 .hide-for-print {
    display: none; }

  #stacks_in_17161 table.show-for-print {
    display: table; }

  #stacks_in_17161 thead.show-for-print {
    display: table-header-group !important; }

  #stacks_in_17161 tbody.show-for-print {
    display: table-row-group !important; }

  #stacks_in_17161 tr.show-for-print {
    display: table-row !important; }

  #stacks_in_17161 td.show-for-print {
    display: table-cell !important; }

  #stacks_in_17161 th.show-for-print {
    display: table-cell !important; } }
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17163 article,
#stacks_in_17163 aside,
#stacks_in_17163 details,
#stacks_in_17163 figcaption,
#stacks_in_17163 figure,
#stacks_in_17163 footer,
#stacks_in_17163 header,
#stacks_in_17163 hgroup,
#stacks_in_17163 main,
#stacks_in_17163 nav,
#stacks_in_17163 section,
#stacks_in_17163 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17163 audio,
#stacks_in_17163 canvas,
#stacks_in_17163 progress,
#stacks_in_17163 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17163 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17163 [hidden],
#stacks_in_17163 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17163 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17163 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17163 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17163 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17163 code,
#stacks_in_17163 kbd,
#stacks_in_17163 pre,
#stacks_in_17163 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17163 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17163 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17163 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17163 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17163 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17163 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17163 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17163 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17163 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17163 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17163 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17163 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17163 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17163 .left {
  float: left !important; }

#stacks_in_17163 .right {
  float: right !important; }

#stacks_in_17163 .clearfix:before,
#stacks_in_17163 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17163 .clearfix:after {
  clear: both; }

#stacks_in_17163 .hide {
  display: none; }

#stacks_in_17163 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17163 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17163 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17163 select {
  width: 100%; }

#stacks_in_17163 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17163 .row:before,
#stacks_in_17163 .row:after {
  content: " ";
  display: table; }

#stacks_in_17163 .row:after {
  clear: both; }

#stacks_in_17163 .row.collapse > .column,
#stacks_in_17163 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17163 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17163 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17163 .row .row:before,
#stacks_in_17163 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17163 .row .row:after {
  clear: both; }

#stacks_in_17163 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17163 .row .row.collapse:before,
#stacks_in_17163 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17163 .row .row.collapse:after {
  clear: both; }

#stacks_in_17163 .column,
#stacks_in_17163 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17163 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17163 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17163 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17163 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17163 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17163 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17163 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17163 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17163 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17163 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17163 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17163 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17163 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17163 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17163 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17163 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17163 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17163 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17163 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17163 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17163 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17163 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17163 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17163 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17163 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17163 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17163 .column,
  #stacks_in_17163 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17163 .small-1 {
    width: 8.33333%; }

  #stacks_in_17163 .small-2 {
    width: 16.66667%; }

  #stacks_in_17163 .small-3 {
    width: 25%; }

  #stacks_in_17163 .small-4 {
    width: 33.33333%; }

  #stacks_in_17163 .small-5 {
    width: 41.66667%; }

  #stacks_in_17163 .small-6 {
    width: 50%; }

  #stacks_in_17163 .small-7 {
    width: 58.33333%; }

  #stacks_in_17163 .small-8 {
    width: 66.66667%; }

  #stacks_in_17163 .small-9 {
    width: 75%; }

  #stacks_in_17163 .small-10 {
    width: 83.33333%; }

  #stacks_in_17163 .small-11 {
    width: 91.66667%; }

  #stacks_in_17163 .small-12 {
    width: 100%; }

  #stacks_in_17163 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17163 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17163 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17163 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17163 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17163 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17163 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17163 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17163 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17163 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17163 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17163 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17163 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17163 .column.small-centered,
  #stacks_in_17163 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17163 .column.small-uncentered,
  #stacks_in_17163 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17163 .column.small-centered:last-child,
  #stacks_in_17163 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17163 .column.small-uncentered:last-child,
  #stacks_in_17163 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17163 .column.small-uncentered.opposite,
  #stacks_in_17163 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17163 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17163 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17163 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17163 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17163 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17163 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17163 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17163 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17163 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17163 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17163 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17163 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17163 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17163 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17163 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17163 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17163 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17163 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17163 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17163 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17163 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17163 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17163 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17163 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17163 .column,
  #stacks_in_17163 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17163 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17163 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17163 .medium-3 {
    width: 25%; }

  #stacks_in_17163 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17163 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17163 .medium-6 {
    width: 50%; }

  #stacks_in_17163 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17163 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17163 .medium-9 {
    width: 75%; }

  #stacks_in_17163 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17163 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17163 .medium-12 {
    width: 100%; }

  #stacks_in_17163 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17163 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17163 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17163 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17163 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17163 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17163 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17163 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17163 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17163 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17163 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17163 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17163 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17163 .column.medium-centered,
  #stacks_in_17163 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17163 .column.medium-uncentered,
  #stacks_in_17163 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17163 .column.medium-centered:last-child,
  #stacks_in_17163 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17163 .column.medium-uncentered:last-child,
  #stacks_in_17163 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17163 .column.medium-uncentered.opposite,
  #stacks_in_17163 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17163 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17163 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17163 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17163 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17163 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17163 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17163 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17163 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17163 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17163 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17163 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17163 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17163 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17163 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17163 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17163 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17163 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17163 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17163 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17163 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17163 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17163 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17163 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17163 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17163 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17163 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17163 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17163 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17163 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17163 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17163 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17163 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17163 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17163 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17163 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17163 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17163 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17163 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17163 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17163 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17163 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17163 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17163 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17163 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17163 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17163 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17163 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17163 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17163 .column,
  #stacks_in_17163 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17163 .large-1 {
    width: 8.33333%; }

  #stacks_in_17163 .large-2 {
    width: 16.66667%; }

  #stacks_in_17163 .large-3 {
    width: 25%; }

  #stacks_in_17163 .large-4 {
    width: 33.33333%; }

  #stacks_in_17163 .large-5 {
    width: 41.66667%; }

  #stacks_in_17163 .large-6 {
    width: 50%; }

  #stacks_in_17163 .large-7 {
    width: 58.33333%; }

  #stacks_in_17163 .large-8 {
    width: 66.66667%; }

  #stacks_in_17163 .large-9 {
    width: 75%; }

  #stacks_in_17163 .large-10 {
    width: 83.33333%; }

  #stacks_in_17163 .large-11 {
    width: 91.66667%; }

  #stacks_in_17163 .large-12 {
    width: 100%; }

  #stacks_in_17163 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17163 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17163 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17163 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17163 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17163 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17163 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17163 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17163 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17163 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17163 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17163 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17163 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17163 .column.large-centered,
  #stacks_in_17163 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17163 .column.large-uncentered,
  #stacks_in_17163 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17163 .column.large-centered:last-child,
  #stacks_in_17163 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17163 .column.large-uncentered:last-child,
  #stacks_in_17163 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17163 .column.large-uncentered.opposite,
  #stacks_in_17163 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17163 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17163 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17163 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17163 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17163 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17163 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17163 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17163 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17163 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17163 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17163 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17163 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17163 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17163 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17163 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17163 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17163 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17163 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17163 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17163 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17163 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17163 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17163 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17163 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17163 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17163 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17163 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17163 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17163 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17163 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17163 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17163 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17163 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17163 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17163 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17163 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17163 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17163 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17163 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17163 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17163 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18482Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18482Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18482Calligrapher h6, .stacks_in_18482Calligrapher h5, .stacks_in_18482Calligrapher h4, .stacks_in_18482Calligrapher h3, .stacks_in_18482Calligrapher h2, .stacks_in_18482Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18482Calligrapher, .stacks_in_18482Calligrapher h1, .stacks_in_18482Calligrapher h2, .stacks_in_18482Calligrapher h3, .stacks_in_18482Calligrapher h4, .stacks_in_18482Calligrapher h5, .stacks_in_18482Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18482targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18482Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18482Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18482Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18482Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18482 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18486 a:before, .link_effect1stacks_in_18486 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18486 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18486 a:hover:before, .link_effect1stacks_in_18486 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18486 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18486 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18486 .link_effect2stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18486 .link_effect2stacks_in_18486 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18486 .link_effect3stacks_in_18486 {
  	text-decoration: none;
}

#stacks_in_18486 .link_effect3stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18486 .link_effect3stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect3stacks_in_18486 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18486 .link_effect4stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect4stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect4stacks_in_18486 a::before,
#stacks_in_18486 .link_effect%stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect4stacks_in_18486 {
}

#stacks_in_18486 .link_effect4stacks_in_18486 a {
	font-weight:normal;;
}

#stacks_in_18486 .link_effect4stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18486 .link_effect4stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect4stacks_in_18486 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18486 .link_effect5stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect5stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect5stacks_in_18486 a::before,
#stacks_in_18486 .link_effect5stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect5stacks_in_18486 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18486 .link_effect5stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18486 .link_effect5stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect5stacks_in_18486 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18486 .link_effect6stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect6stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect6stacks_in_18486 a::before,
#stacks_in_18486 .link_effect6stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect6stacks_in_18486 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18486 .link_effect6stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18486 .link_effect6stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect6stacks_in_18486 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18486 .link_effect7stacks_in_18486 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect7stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect7stacks_in_18486 a::before,
#stacks_in_18486 .link_effect7stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect7stacks_in_18486 {
	position: relative;
}

#stacks_in_18486 .link_effect7stacks_in_18486 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18486 .link_effect7stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18486 .link_effect7stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect7stacks_in_18486 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18486 .link_effect8stacks_in_18486 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect8stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect8stacks_in_18486 a::before,
#stacks_in_18486 .link_effect8stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18486 .link_effect8stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18486 .link_effect8stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect8stacks_in_18486 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18486 .link_effect8stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18486 .link_effect8stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect8stacks_in_18486 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18486 .link_effect9stacks_in_18486 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect9stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect9stacks_in_18486 a::before,
#stacks_in_18486 .link_effect9stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect9stacks_in_18486 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18486 .link_effect9stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect9stacks_in_18486 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18486 .link_effect9stacks_in_18486 a::before,
#stacks_in_18486 .link_effect9stacks_in_18486 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18486 .link_effect9stacks_in_18486 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18486 .link_effect9stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect9stacks_in_18486 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18486 .link_effect9stacks_in_18486 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18486 .link_effect10stacks_in_18486 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect10stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect10stacks_in_18486 a::before,
#stacks_in_18486 .link_effect10stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect10stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18486 .link_effect10stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect10stacks_in_18486 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18486 .link_effect10stacks_in_18486 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18486 .link_effect10stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect10stacks_in_18486 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18486 .link_effect11stacks_in_18486 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18486 .link_effect11stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect11stacks_in_18486 a::before,
#stacks_in_18486 .link_effect11stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect11stacks_in_18486 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18486 .link_effect11stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect11stacks_in_18486 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18486 .link_effect11stacks_in_18486 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18486 .link_effect11stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect11stacks_in_18486 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18486 .link_effect12stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect12stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect12stacks_in_18486 a::before,
#stacks_in_18486 .link_effect12stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect12stacks_in_18486 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18486 .link_effect12stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect12stacks_in_18486 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18486 .link_effect12stacks_in_18486 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18486 .link_effect12stacks_in_18486 a,
#stacks_in_18486 .link_effect12stacks_in_18486 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18486 .link_effect12stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect12stacks_in_18486 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18486 .link_effect13stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect13stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect13stacks_in_18486 a::before,
#stacks_in_18486 .link_effect13stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect13stacks_in_18486 {
}

#stacks_in_18486 .link_effect13stacks_in_18486 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18486 .link_effect13stacks_in_18486 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18486 .link_effect13stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect13stacks_in_18486 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18486 .link_effect14stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect14stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect14stacks_in_18486 a::before,
#stacks_in_18486 .link_effect14stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect14stacks_in_18486 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18486 .link_effect14stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect14stacks_in_18486 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18486 .link_effect14stacks_in_18486 a::before,
#stacks_in_18486 .link_effect14stacks_in_18486 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18486 .link_effect14stacks_in_18486 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18486 .link_effect14stacks_in_18486 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18486 .link_effect14stacks_in_18486 a:hover::after,
#stacks_in_18486 .link_effect14stacks_in_18486 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18486 .link_effect15stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect15stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect15stacks_in_18486 a::before,
#stacks_in_18486 .link_effect15stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect15stacks_in_18486 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18486 .link_effect15stacks_in_18486 a::before,
#stacks_in_18486 .link_effect15stacks_in_18486 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18486 .link_effect15stacks_in_18486 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18486 .link_effect15stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect15stacks_in_18486 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18486 .link_effect15stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect15stacks_in_18486 a:focus::before,
#stacks_in_18486 .link_effect15stacks_in_18486 a:hover::after,
#stacks_in_18486 .link_effect15stacks_in_18486 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18486 .link_effect15stacks_in_18486 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18486 .link_effect15stacks_in_18486 a:hover::after,
#stacks_in_18486 .link_effect15stacks_in_18486 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18486 .link_effect16stacks_in_18486 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a::before,
#stacks_in_18486 .link_effect16stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a:hover {
	color: #d04c3f;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a::before,
#stacks_in_18486 .link_effect16stacks_in_18486 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18486 .link_effect16stacks_in_18486 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18486 .link_effect16stacks_in_18486 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18486 .link_effect16stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect16stacks_in_18486 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18486 .link_effect17stacks_in_18486 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18486 .link_effect17stacks_in_18486 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18486 .link_effect17stacks_in_18486 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18486 .link_effect18stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect18stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect18stacks_in_18486 a::before,
#stacks_in_18486 .link_effect18stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18486 .link_effect18stacks_in_18486 {
}

#stacks_in_18486 .link_effect18stacks_in_18486 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18486 .link_effect18stacks_in_18486 a::before,
#stacks_in_18486 .link_effect18stacks_in_18486 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18486 .link_effect18stacks_in_18486 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18486 .link_effect18stacks_in_18486 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18486 .link_effect18stacks_in_18486 a:hover,
#stacks_in_18486 .link_effect18stacks_in_18486 a:focus {
	color: #fff;
}

#stacks_in_18486 .link_effect18stacks_in_18486 a:hover::before,
#stacks_in_18486 .link_effect18stacks_in_18486 a:focus::before,
#stacks_in_18486 .link_effect18stacks_in_18486 a:hover::after,
#stacks_in_18486 .link_effect18stacks_in_18486 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18486 .link_effect19stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect19stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect19stacks_in_18486 a::before,
#stacks_in_18486 .link_effect19stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18486 a {
}

.link_effect19stacks_in_18486 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18486 a:hover::after,
.link_effect19stacks_in_18486 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18486 .link_effect20stacks_in_18486 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18486 .link_effect20stacks_in_18486 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18486 .link_effect20stacks_in_18486 a::before,
#stacks_in_18486 .link_effect20stacks_in_18486 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18486 a {
}

.link_effect20stacks_in_18486 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18486 a:hover::after,
.link_effect20stacks_in_18486 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18488 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18483 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18483 .borderbuttonthing, #stacks_in_18483 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18483 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18483 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18483 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18290Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18290Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18290Calligrapher h6, .stacks_in_18290Calligrapher h5, .stacks_in_18290Calligrapher h4, .stacks_in_18290Calligrapher h3, .stacks_in_18290Calligrapher h2, .stacks_in_18290Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18290Calligrapher, .stacks_in_18290Calligrapher h1, .stacks_in_18290Calligrapher h2, .stacks_in_18290Calligrapher h3, .stacks_in_18290Calligrapher h4, .stacks_in_18290Calligrapher h5, .stacks_in_18290Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18290targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18290Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18290Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18290Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18290Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18290 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18292 a:before, .link_effect1stacks_in_18292 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18292 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18292 a:hover:before, .link_effect1stacks_in_18292 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18292 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18292 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18292 .link_effect2stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18292 .link_effect2stacks_in_18292 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18292 .link_effect3stacks_in_18292 {
  	text-decoration: none;
}

#stacks_in_18292 .link_effect3stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18292 .link_effect3stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect3stacks_in_18292 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18292 .link_effect4stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect4stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect4stacks_in_18292 a::before,
#stacks_in_18292 .link_effect%stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect4stacks_in_18292 {
}

#stacks_in_18292 .link_effect4stacks_in_18292 a {
	font-weight:normal;;
}

#stacks_in_18292 .link_effect4stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18292 .link_effect4stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect4stacks_in_18292 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18292 .link_effect5stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect5stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect5stacks_in_18292 a::before,
#stacks_in_18292 .link_effect5stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect5stacks_in_18292 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18292 .link_effect5stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18292 .link_effect5stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect5stacks_in_18292 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18292 .link_effect6stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect6stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect6stacks_in_18292 a::before,
#stacks_in_18292 .link_effect6stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect6stacks_in_18292 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18292 .link_effect6stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18292 .link_effect6stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect6stacks_in_18292 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18292 .link_effect7stacks_in_18292 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect7stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect7stacks_in_18292 a::before,
#stacks_in_18292 .link_effect7stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect7stacks_in_18292 {
	position: relative;
}

#stacks_in_18292 .link_effect7stacks_in_18292 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18292 .link_effect7stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18292 .link_effect7stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect7stacks_in_18292 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18292 .link_effect8stacks_in_18292 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect8stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect8stacks_in_18292 a::before,
#stacks_in_18292 .link_effect8stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18292 .link_effect8stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18292 .link_effect8stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect8stacks_in_18292 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18292 .link_effect8stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18292 .link_effect8stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect8stacks_in_18292 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18292 .link_effect9stacks_in_18292 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect9stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect9stacks_in_18292 a::before,
#stacks_in_18292 .link_effect9stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect9stacks_in_18292 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18292 .link_effect9stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect9stacks_in_18292 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18292 .link_effect9stacks_in_18292 a::before,
#stacks_in_18292 .link_effect9stacks_in_18292 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18292 .link_effect9stacks_in_18292 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18292 .link_effect9stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect9stacks_in_18292 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18292 .link_effect9stacks_in_18292 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18292 .link_effect10stacks_in_18292 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect10stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect10stacks_in_18292 a::before,
#stacks_in_18292 .link_effect10stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect10stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18292 .link_effect10stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect10stacks_in_18292 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18292 .link_effect10stacks_in_18292 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18292 .link_effect10stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect10stacks_in_18292 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18292 .link_effect11stacks_in_18292 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18292 .link_effect11stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect11stacks_in_18292 a::before,
#stacks_in_18292 .link_effect11stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect11stacks_in_18292 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18292 .link_effect11stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect11stacks_in_18292 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18292 .link_effect11stacks_in_18292 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18292 .link_effect11stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect11stacks_in_18292 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18292 .link_effect12stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect12stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect12stacks_in_18292 a::before,
#stacks_in_18292 .link_effect12stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect12stacks_in_18292 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18292 .link_effect12stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect12stacks_in_18292 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18292 .link_effect12stacks_in_18292 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18292 .link_effect12stacks_in_18292 a,
#stacks_in_18292 .link_effect12stacks_in_18292 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18292 .link_effect12stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect12stacks_in_18292 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18292 .link_effect13stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect13stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect13stacks_in_18292 a::before,
#stacks_in_18292 .link_effect13stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect13stacks_in_18292 {
}

#stacks_in_18292 .link_effect13stacks_in_18292 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18292 .link_effect13stacks_in_18292 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18292 .link_effect13stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect13stacks_in_18292 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18292 .link_effect14stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect14stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect14stacks_in_18292 a::before,
#stacks_in_18292 .link_effect14stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect14stacks_in_18292 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18292 .link_effect14stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect14stacks_in_18292 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18292 .link_effect14stacks_in_18292 a::before,
#stacks_in_18292 .link_effect14stacks_in_18292 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18292 .link_effect14stacks_in_18292 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18292 .link_effect14stacks_in_18292 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18292 .link_effect14stacks_in_18292 a:hover::after,
#stacks_in_18292 .link_effect14stacks_in_18292 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18292 .link_effect15stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect15stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect15stacks_in_18292 a::before,
#stacks_in_18292 .link_effect15stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect15stacks_in_18292 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18292 .link_effect15stacks_in_18292 a::before,
#stacks_in_18292 .link_effect15stacks_in_18292 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18292 .link_effect15stacks_in_18292 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18292 .link_effect15stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect15stacks_in_18292 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18292 .link_effect15stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect15stacks_in_18292 a:focus::before,
#stacks_in_18292 .link_effect15stacks_in_18292 a:hover::after,
#stacks_in_18292 .link_effect15stacks_in_18292 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18292 .link_effect15stacks_in_18292 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18292 .link_effect15stacks_in_18292 a:hover::after,
#stacks_in_18292 .link_effect15stacks_in_18292 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18292 .link_effect16stacks_in_18292 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a::before,
#stacks_in_18292 .link_effect16stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a:hover {
	color: #d04c3f;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a::before,
#stacks_in_18292 .link_effect16stacks_in_18292 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18292 .link_effect16stacks_in_18292 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18292 .link_effect16stacks_in_18292 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18292 .link_effect16stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect16stacks_in_18292 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18292 .link_effect17stacks_in_18292 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18292 .link_effect17stacks_in_18292 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18292 .link_effect17stacks_in_18292 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18292 .link_effect18stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect18stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect18stacks_in_18292 a::before,
#stacks_in_18292 .link_effect18stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18292 .link_effect18stacks_in_18292 {
}

#stacks_in_18292 .link_effect18stacks_in_18292 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18292 .link_effect18stacks_in_18292 a::before,
#stacks_in_18292 .link_effect18stacks_in_18292 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18292 .link_effect18stacks_in_18292 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18292 .link_effect18stacks_in_18292 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18292 .link_effect18stacks_in_18292 a:hover,
#stacks_in_18292 .link_effect18stacks_in_18292 a:focus {
	color: #fff;
}

#stacks_in_18292 .link_effect18stacks_in_18292 a:hover::before,
#stacks_in_18292 .link_effect18stacks_in_18292 a:focus::before,
#stacks_in_18292 .link_effect18stacks_in_18292 a:hover::after,
#stacks_in_18292 .link_effect18stacks_in_18292 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18292 .link_effect19stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect19stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect19stacks_in_18292 a::before,
#stacks_in_18292 .link_effect19stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18292 a {
}

.link_effect19stacks_in_18292 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18292 a:hover::after,
.link_effect19stacks_in_18292 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18292 .link_effect20stacks_in_18292 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18292 .link_effect20stacks_in_18292 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18292 .link_effect20stacks_in_18292 a::before,
#stacks_in_18292 .link_effect20stacks_in_18292 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18292 a {
}

.link_effect20stacks_in_18292 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18292 a:hover::after,
.link_effect20stacks_in_18292 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18294 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18297 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18297 .borderbuttonthing, #stacks_in_18297 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18297 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18297 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18297 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18172Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18172Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18172Calligrapher h6, .stacks_in_18172Calligrapher h5, .stacks_in_18172Calligrapher h4, .stacks_in_18172Calligrapher h3, .stacks_in_18172Calligrapher h2, .stacks_in_18172Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18172Calligrapher, .stacks_in_18172Calligrapher h1, .stacks_in_18172Calligrapher h2, .stacks_in_18172Calligrapher h3, .stacks_in_18172Calligrapher h4, .stacks_in_18172Calligrapher h5, .stacks_in_18172Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18172targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18172Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18172Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18172Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18172Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18172 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18174 a:before, .link_effect1stacks_in_18174 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18174 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18174 a:hover:before, .link_effect1stacks_in_18174 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18174 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18174 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18174 .link_effect2stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18174 .link_effect2stacks_in_18174 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18174 .link_effect3stacks_in_18174 {
  	text-decoration: none;
}

#stacks_in_18174 .link_effect3stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18174 .link_effect3stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect3stacks_in_18174 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18174 .link_effect4stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect4stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect4stacks_in_18174 a::before,
#stacks_in_18174 .link_effect%stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect4stacks_in_18174 {
}

#stacks_in_18174 .link_effect4stacks_in_18174 a {
	font-weight:normal;;
}

#stacks_in_18174 .link_effect4stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18174 .link_effect4stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect4stacks_in_18174 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18174 .link_effect5stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect5stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect5stacks_in_18174 a::before,
#stacks_in_18174 .link_effect5stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect5stacks_in_18174 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18174 .link_effect5stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18174 .link_effect5stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect5stacks_in_18174 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18174 .link_effect6stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect6stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect6stacks_in_18174 a::before,
#stacks_in_18174 .link_effect6stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect6stacks_in_18174 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18174 .link_effect6stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18174 .link_effect6stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect6stacks_in_18174 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18174 .link_effect7stacks_in_18174 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect7stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect7stacks_in_18174 a::before,
#stacks_in_18174 .link_effect7stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect7stacks_in_18174 {
	position: relative;
}

#stacks_in_18174 .link_effect7stacks_in_18174 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18174 .link_effect7stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18174 .link_effect7stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect7stacks_in_18174 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18174 .link_effect8stacks_in_18174 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect8stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect8stacks_in_18174 a::before,
#stacks_in_18174 .link_effect8stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18174 .link_effect8stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18174 .link_effect8stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect8stacks_in_18174 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18174 .link_effect8stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18174 .link_effect8stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect8stacks_in_18174 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18174 .link_effect9stacks_in_18174 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect9stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect9stacks_in_18174 a::before,
#stacks_in_18174 .link_effect9stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect9stacks_in_18174 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18174 .link_effect9stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect9stacks_in_18174 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18174 .link_effect9stacks_in_18174 a::before,
#stacks_in_18174 .link_effect9stacks_in_18174 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18174 .link_effect9stacks_in_18174 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18174 .link_effect9stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect9stacks_in_18174 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18174 .link_effect9stacks_in_18174 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18174 .link_effect10stacks_in_18174 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect10stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect10stacks_in_18174 a::before,
#stacks_in_18174 .link_effect10stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect10stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18174 .link_effect10stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect10stacks_in_18174 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18174 .link_effect10stacks_in_18174 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18174 .link_effect10stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect10stacks_in_18174 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18174 .link_effect11stacks_in_18174 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18174 .link_effect11stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect11stacks_in_18174 a::before,
#stacks_in_18174 .link_effect11stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect11stacks_in_18174 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18174 .link_effect11stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect11stacks_in_18174 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18174 .link_effect11stacks_in_18174 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18174 .link_effect11stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect11stacks_in_18174 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18174 .link_effect12stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect12stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect12stacks_in_18174 a::before,
#stacks_in_18174 .link_effect12stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect12stacks_in_18174 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18174 .link_effect12stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect12stacks_in_18174 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18174 .link_effect12stacks_in_18174 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18174 .link_effect12stacks_in_18174 a,
#stacks_in_18174 .link_effect12stacks_in_18174 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18174 .link_effect12stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect12stacks_in_18174 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18174 .link_effect13stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect13stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect13stacks_in_18174 a::before,
#stacks_in_18174 .link_effect13stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect13stacks_in_18174 {
}

#stacks_in_18174 .link_effect13stacks_in_18174 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18174 .link_effect13stacks_in_18174 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18174 .link_effect13stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect13stacks_in_18174 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18174 .link_effect14stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect14stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect14stacks_in_18174 a::before,
#stacks_in_18174 .link_effect14stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect14stacks_in_18174 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18174 .link_effect14stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect14stacks_in_18174 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18174 .link_effect14stacks_in_18174 a::before,
#stacks_in_18174 .link_effect14stacks_in_18174 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18174 .link_effect14stacks_in_18174 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18174 .link_effect14stacks_in_18174 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18174 .link_effect14stacks_in_18174 a:hover::after,
#stacks_in_18174 .link_effect14stacks_in_18174 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18174 .link_effect15stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect15stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect15stacks_in_18174 a::before,
#stacks_in_18174 .link_effect15stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect15stacks_in_18174 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18174 .link_effect15stacks_in_18174 a::before,
#stacks_in_18174 .link_effect15stacks_in_18174 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18174 .link_effect15stacks_in_18174 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18174 .link_effect15stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect15stacks_in_18174 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18174 .link_effect15stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect15stacks_in_18174 a:focus::before,
#stacks_in_18174 .link_effect15stacks_in_18174 a:hover::after,
#stacks_in_18174 .link_effect15stacks_in_18174 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18174 .link_effect15stacks_in_18174 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18174 .link_effect15stacks_in_18174 a:hover::after,
#stacks_in_18174 .link_effect15stacks_in_18174 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18174 .link_effect16stacks_in_18174 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a::before,
#stacks_in_18174 .link_effect16stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a:hover {
	color: #d04c3f;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a::before,
#stacks_in_18174 .link_effect16stacks_in_18174 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18174 .link_effect16stacks_in_18174 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18174 .link_effect16stacks_in_18174 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18174 .link_effect16stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect16stacks_in_18174 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18174 .link_effect17stacks_in_18174 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18174 .link_effect17stacks_in_18174 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18174 .link_effect17stacks_in_18174 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18174 .link_effect18stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect18stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect18stacks_in_18174 a::before,
#stacks_in_18174 .link_effect18stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18174 .link_effect18stacks_in_18174 {
}

#stacks_in_18174 .link_effect18stacks_in_18174 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18174 .link_effect18stacks_in_18174 a::before,
#stacks_in_18174 .link_effect18stacks_in_18174 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18174 .link_effect18stacks_in_18174 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18174 .link_effect18stacks_in_18174 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18174 .link_effect18stacks_in_18174 a:hover,
#stacks_in_18174 .link_effect18stacks_in_18174 a:focus {
	color: #fff;
}

#stacks_in_18174 .link_effect18stacks_in_18174 a:hover::before,
#stacks_in_18174 .link_effect18stacks_in_18174 a:focus::before,
#stacks_in_18174 .link_effect18stacks_in_18174 a:hover::after,
#stacks_in_18174 .link_effect18stacks_in_18174 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18174 .link_effect19stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect19stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect19stacks_in_18174 a::before,
#stacks_in_18174 .link_effect19stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18174 a {
}

.link_effect19stacks_in_18174 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18174 a:hover::after,
.link_effect19stacks_in_18174 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18174 .link_effect20stacks_in_18174 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18174 .link_effect20stacks_in_18174 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18174 .link_effect20stacks_in_18174 a::before,
#stacks_in_18174 .link_effect20stacks_in_18174 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18174 a {
}

.link_effect20stacks_in_18174 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18174 a:hover::after,
.link_effect20stacks_in_18174 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18176 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18298 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18298 .borderbuttonthing, #stacks_in_18298 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18298 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18298 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18298 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18181Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18181Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18181Calligrapher h6, .stacks_in_18181Calligrapher h5, .stacks_in_18181Calligrapher h4, .stacks_in_18181Calligrapher h3, .stacks_in_18181Calligrapher h2, .stacks_in_18181Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18181Calligrapher, .stacks_in_18181Calligrapher h1, .stacks_in_18181Calligrapher h2, .stacks_in_18181Calligrapher h3, .stacks_in_18181Calligrapher h4, .stacks_in_18181Calligrapher h5, .stacks_in_18181Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18181targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18181Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18181Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18181Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18181Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18181 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18183 a:before, .link_effect1stacks_in_18183 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18183 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18183 a:hover:before, .link_effect1stacks_in_18183 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18183 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18183 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18183 .link_effect2stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18183 .link_effect2stacks_in_18183 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18183 .link_effect3stacks_in_18183 {
  	text-decoration: none;
}

#stacks_in_18183 .link_effect3stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18183 .link_effect3stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect3stacks_in_18183 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18183 .link_effect4stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect4stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect4stacks_in_18183 a::before,
#stacks_in_18183 .link_effect%stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect4stacks_in_18183 {
}

#stacks_in_18183 .link_effect4stacks_in_18183 a {
	font-weight:normal;;
}

#stacks_in_18183 .link_effect4stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18183 .link_effect4stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect4stacks_in_18183 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18183 .link_effect5stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect5stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect5stacks_in_18183 a::before,
#stacks_in_18183 .link_effect5stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect5stacks_in_18183 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18183 .link_effect5stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18183 .link_effect5stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect5stacks_in_18183 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18183 .link_effect6stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect6stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect6stacks_in_18183 a::before,
#stacks_in_18183 .link_effect6stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect6stacks_in_18183 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18183 .link_effect6stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18183 .link_effect6stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect6stacks_in_18183 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18183 .link_effect7stacks_in_18183 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect7stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect7stacks_in_18183 a::before,
#stacks_in_18183 .link_effect7stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect7stacks_in_18183 {
	position: relative;
}

#stacks_in_18183 .link_effect7stacks_in_18183 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18183 .link_effect7stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18183 .link_effect7stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect7stacks_in_18183 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18183 .link_effect8stacks_in_18183 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect8stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect8stacks_in_18183 a::before,
#stacks_in_18183 .link_effect8stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18183 .link_effect8stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18183 .link_effect8stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect8stacks_in_18183 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18183 .link_effect8stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18183 .link_effect8stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect8stacks_in_18183 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18183 .link_effect9stacks_in_18183 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect9stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect9stacks_in_18183 a::before,
#stacks_in_18183 .link_effect9stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect9stacks_in_18183 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18183 .link_effect9stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect9stacks_in_18183 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18183 .link_effect9stacks_in_18183 a::before,
#stacks_in_18183 .link_effect9stacks_in_18183 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18183 .link_effect9stacks_in_18183 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18183 .link_effect9stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect9stacks_in_18183 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18183 .link_effect9stacks_in_18183 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18183 .link_effect10stacks_in_18183 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect10stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect10stacks_in_18183 a::before,
#stacks_in_18183 .link_effect10stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect10stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18183 .link_effect10stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect10stacks_in_18183 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18183 .link_effect10stacks_in_18183 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18183 .link_effect10stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect10stacks_in_18183 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18183 .link_effect11stacks_in_18183 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18183 .link_effect11stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect11stacks_in_18183 a::before,
#stacks_in_18183 .link_effect11stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect11stacks_in_18183 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18183 .link_effect11stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect11stacks_in_18183 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18183 .link_effect11stacks_in_18183 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18183 .link_effect11stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect11stacks_in_18183 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18183 .link_effect12stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect12stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect12stacks_in_18183 a::before,
#stacks_in_18183 .link_effect12stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect12stacks_in_18183 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18183 .link_effect12stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect12stacks_in_18183 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18183 .link_effect12stacks_in_18183 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18183 .link_effect12stacks_in_18183 a,
#stacks_in_18183 .link_effect12stacks_in_18183 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18183 .link_effect12stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect12stacks_in_18183 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18183 .link_effect13stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect13stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect13stacks_in_18183 a::before,
#stacks_in_18183 .link_effect13stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect13stacks_in_18183 {
}

#stacks_in_18183 .link_effect13stacks_in_18183 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18183 .link_effect13stacks_in_18183 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18183 .link_effect13stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect13stacks_in_18183 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18183 .link_effect14stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect14stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect14stacks_in_18183 a::before,
#stacks_in_18183 .link_effect14stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect14stacks_in_18183 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18183 .link_effect14stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect14stacks_in_18183 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18183 .link_effect14stacks_in_18183 a::before,
#stacks_in_18183 .link_effect14stacks_in_18183 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18183 .link_effect14stacks_in_18183 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18183 .link_effect14stacks_in_18183 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18183 .link_effect14stacks_in_18183 a:hover::after,
#stacks_in_18183 .link_effect14stacks_in_18183 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18183 .link_effect15stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect15stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect15stacks_in_18183 a::before,
#stacks_in_18183 .link_effect15stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect15stacks_in_18183 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18183 .link_effect15stacks_in_18183 a::before,
#stacks_in_18183 .link_effect15stacks_in_18183 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18183 .link_effect15stacks_in_18183 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18183 .link_effect15stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect15stacks_in_18183 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18183 .link_effect15stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect15stacks_in_18183 a:focus::before,
#stacks_in_18183 .link_effect15stacks_in_18183 a:hover::after,
#stacks_in_18183 .link_effect15stacks_in_18183 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18183 .link_effect15stacks_in_18183 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18183 .link_effect15stacks_in_18183 a:hover::after,
#stacks_in_18183 .link_effect15stacks_in_18183 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18183 .link_effect16stacks_in_18183 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a::before,
#stacks_in_18183 .link_effect16stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a:hover {
	color: #d04c3f;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a::before,
#stacks_in_18183 .link_effect16stacks_in_18183 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18183 .link_effect16stacks_in_18183 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18183 .link_effect16stacks_in_18183 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18183 .link_effect16stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect16stacks_in_18183 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18183 .link_effect17stacks_in_18183 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18183 .link_effect17stacks_in_18183 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18183 .link_effect17stacks_in_18183 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18183 .link_effect18stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect18stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect18stacks_in_18183 a::before,
#stacks_in_18183 .link_effect18stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18183 .link_effect18stacks_in_18183 {
}

#stacks_in_18183 .link_effect18stacks_in_18183 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18183 .link_effect18stacks_in_18183 a::before,
#stacks_in_18183 .link_effect18stacks_in_18183 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18183 .link_effect18stacks_in_18183 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18183 .link_effect18stacks_in_18183 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18183 .link_effect18stacks_in_18183 a:hover,
#stacks_in_18183 .link_effect18stacks_in_18183 a:focus {
	color: #fff;
}

#stacks_in_18183 .link_effect18stacks_in_18183 a:hover::before,
#stacks_in_18183 .link_effect18stacks_in_18183 a:focus::before,
#stacks_in_18183 .link_effect18stacks_in_18183 a:hover::after,
#stacks_in_18183 .link_effect18stacks_in_18183 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18183 .link_effect19stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect19stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect19stacks_in_18183 a::before,
#stacks_in_18183 .link_effect19stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18183 a {
}

.link_effect19stacks_in_18183 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18183 a:hover::after,
.link_effect19stacks_in_18183 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18183 .link_effect20stacks_in_18183 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18183 .link_effect20stacks_in_18183 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18183 .link_effect20stacks_in_18183 a::before,
#stacks_in_18183 .link_effect20stacks_in_18183 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18183 a {
}

.link_effect20stacks_in_18183 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18183 a:hover::after,
.link_effect20stacks_in_18183 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18185 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18301 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18301 .borderbuttonthing, #stacks_in_18301 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18301 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18301 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18301 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17165Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17165Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17165Calligrapher h6, .stacks_in_17165Calligrapher h5, .stacks_in_17165Calligrapher h4, .stacks_in_17165Calligrapher h3, .stacks_in_17165Calligrapher h2, .stacks_in_17165Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17165Calligrapher, .stacks_in_17165Calligrapher h1, .stacks_in_17165Calligrapher h2, .stacks_in_17165Calligrapher h3, .stacks_in_17165Calligrapher h4, .stacks_in_17165Calligrapher h5, .stacks_in_17165Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17165targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17165Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17165Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17165Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17165Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17165 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17169 a:before, .link_effect1stacks_in_17169 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17169 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17169 a:hover:before, .link_effect1stacks_in_17169 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17169 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17169 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17169 .link_effect2stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17169 .link_effect2stacks_in_17169 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17169 .link_effect3stacks_in_17169 {
  	text-decoration: none;
}

#stacks_in_17169 .link_effect3stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17169 .link_effect3stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect3stacks_in_17169 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17169 .link_effect4stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect4stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect4stacks_in_17169 a::before,
#stacks_in_17169 .link_effect%stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect4stacks_in_17169 {
}

#stacks_in_17169 .link_effect4stacks_in_17169 a {
	font-weight:normal;;
}

#stacks_in_17169 .link_effect4stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17169 .link_effect4stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect4stacks_in_17169 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17169 .link_effect5stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect5stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect5stacks_in_17169 a::before,
#stacks_in_17169 .link_effect5stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect5stacks_in_17169 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17169 .link_effect5stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17169 .link_effect5stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect5stacks_in_17169 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17169 .link_effect6stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect6stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect6stacks_in_17169 a::before,
#stacks_in_17169 .link_effect6stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect6stacks_in_17169 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17169 .link_effect6stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17169 .link_effect6stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect6stacks_in_17169 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17169 .link_effect7stacks_in_17169 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect7stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect7stacks_in_17169 a::before,
#stacks_in_17169 .link_effect7stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect7stacks_in_17169 {
	position: relative;
}

#stacks_in_17169 .link_effect7stacks_in_17169 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17169 .link_effect7stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17169 .link_effect7stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect7stacks_in_17169 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17169 .link_effect8stacks_in_17169 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect8stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect8stacks_in_17169 a::before,
#stacks_in_17169 .link_effect8stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17169 .link_effect8stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17169 .link_effect8stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect8stacks_in_17169 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17169 .link_effect8stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17169 .link_effect8stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect8stacks_in_17169 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17169 .link_effect9stacks_in_17169 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect9stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect9stacks_in_17169 a::before,
#stacks_in_17169 .link_effect9stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect9stacks_in_17169 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17169 .link_effect9stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect9stacks_in_17169 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17169 .link_effect9stacks_in_17169 a::before,
#stacks_in_17169 .link_effect9stacks_in_17169 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17169 .link_effect9stacks_in_17169 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17169 .link_effect9stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect9stacks_in_17169 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17169 .link_effect9stacks_in_17169 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17169 .link_effect10stacks_in_17169 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect10stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect10stacks_in_17169 a::before,
#stacks_in_17169 .link_effect10stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect10stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17169 .link_effect10stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect10stacks_in_17169 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17169 .link_effect10stacks_in_17169 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17169 .link_effect10stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect10stacks_in_17169 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17169 .link_effect11stacks_in_17169 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17169 .link_effect11stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect11stacks_in_17169 a::before,
#stacks_in_17169 .link_effect11stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect11stacks_in_17169 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17169 .link_effect11stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect11stacks_in_17169 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17169 .link_effect11stacks_in_17169 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17169 .link_effect11stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect11stacks_in_17169 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17169 .link_effect12stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect12stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect12stacks_in_17169 a::before,
#stacks_in_17169 .link_effect12stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect12stacks_in_17169 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17169 .link_effect12stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect12stacks_in_17169 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17169 .link_effect12stacks_in_17169 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17169 .link_effect12stacks_in_17169 a,
#stacks_in_17169 .link_effect12stacks_in_17169 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17169 .link_effect12stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect12stacks_in_17169 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17169 .link_effect13stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect13stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect13stacks_in_17169 a::before,
#stacks_in_17169 .link_effect13stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect13stacks_in_17169 {
}

#stacks_in_17169 .link_effect13stacks_in_17169 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17169 .link_effect13stacks_in_17169 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17169 .link_effect13stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect13stacks_in_17169 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17169 .link_effect14stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect14stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect14stacks_in_17169 a::before,
#stacks_in_17169 .link_effect14stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect14stacks_in_17169 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17169 .link_effect14stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect14stacks_in_17169 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17169 .link_effect14stacks_in_17169 a::before,
#stacks_in_17169 .link_effect14stacks_in_17169 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17169 .link_effect14stacks_in_17169 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17169 .link_effect14stacks_in_17169 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17169 .link_effect14stacks_in_17169 a:hover::after,
#stacks_in_17169 .link_effect14stacks_in_17169 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17169 .link_effect15stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect15stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect15stacks_in_17169 a::before,
#stacks_in_17169 .link_effect15stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect15stacks_in_17169 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17169 .link_effect15stacks_in_17169 a::before,
#stacks_in_17169 .link_effect15stacks_in_17169 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17169 .link_effect15stacks_in_17169 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17169 .link_effect15stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect15stacks_in_17169 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17169 .link_effect15stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect15stacks_in_17169 a:focus::before,
#stacks_in_17169 .link_effect15stacks_in_17169 a:hover::after,
#stacks_in_17169 .link_effect15stacks_in_17169 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17169 .link_effect15stacks_in_17169 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17169 .link_effect15stacks_in_17169 a:hover::after,
#stacks_in_17169 .link_effect15stacks_in_17169 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17169 .link_effect16stacks_in_17169 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a::before,
#stacks_in_17169 .link_effect16stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a:hover {
	color: #d04c3f;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a::before,
#stacks_in_17169 .link_effect16stacks_in_17169 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17169 .link_effect16stacks_in_17169 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17169 .link_effect16stacks_in_17169 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17169 .link_effect16stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect16stacks_in_17169 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17169 .link_effect17stacks_in_17169 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17169 .link_effect17stacks_in_17169 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17169 .link_effect17stacks_in_17169 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17169 .link_effect18stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect18stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect18stacks_in_17169 a::before,
#stacks_in_17169 .link_effect18stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17169 .link_effect18stacks_in_17169 {
}

#stacks_in_17169 .link_effect18stacks_in_17169 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17169 .link_effect18stacks_in_17169 a::before,
#stacks_in_17169 .link_effect18stacks_in_17169 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17169 .link_effect18stacks_in_17169 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17169 .link_effect18stacks_in_17169 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17169 .link_effect18stacks_in_17169 a:hover,
#stacks_in_17169 .link_effect18stacks_in_17169 a:focus {
	color: #fff;
}

#stacks_in_17169 .link_effect18stacks_in_17169 a:hover::before,
#stacks_in_17169 .link_effect18stacks_in_17169 a:focus::before,
#stacks_in_17169 .link_effect18stacks_in_17169 a:hover::after,
#stacks_in_17169 .link_effect18stacks_in_17169 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17169 .link_effect19stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect19stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect19stacks_in_17169 a::before,
#stacks_in_17169 .link_effect19stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17169 a {
}

.link_effect19stacks_in_17169 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17169 a:hover::after,
.link_effect19stacks_in_17169 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17169 .link_effect20stacks_in_17169 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17169 .link_effect20stacks_in_17169 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17169 .link_effect20stacks_in_17169 a::before,
#stacks_in_17169 .link_effect20stacks_in_17169 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17169 a {
}

.link_effect20stacks_in_17169 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17169 a:hover::after,
.link_effect20stacks_in_17169 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17171 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17374 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17374 .borderbuttonthing, #stacks_in_17374 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17374 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17374 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17374 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_18053Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_18053Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_18053Calligrapher h6, .stacks_in_18053Calligrapher h5, .stacks_in_18053Calligrapher h4, .stacks_in_18053Calligrapher h3, .stacks_in_18053Calligrapher h2, .stacks_in_18053Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_18053Calligrapher, .stacks_in_18053Calligrapher h1, .stacks_in_18053Calligrapher h2, .stacks_in_18053Calligrapher h3, .stacks_in_18053Calligrapher h4, .stacks_in_18053Calligrapher h5, .stacks_in_18053Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_18053targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_18053Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_18053Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_18053Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_18053Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_18053 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_18056 a:before, .link_effect1stacks_in_18056 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_18056 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_18056 a:hover:before, .link_effect1stacks_in_18056 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_18056 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_18056 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_18056 .link_effect2stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_18056 .link_effect2stacks_in_18056 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_18056 .link_effect3stacks_in_18056 {
  	text-decoration: none;
}

#stacks_in_18056 .link_effect3stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_18056 .link_effect3stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect3stacks_in_18056 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_18056 .link_effect4stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect4stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect4stacks_in_18056 a::before,
#stacks_in_18056 .link_effect%stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect4stacks_in_18056 {
}

#stacks_in_18056 .link_effect4stacks_in_18056 a {
	font-weight:normal;;
}

#stacks_in_18056 .link_effect4stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18056 .link_effect4stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect4stacks_in_18056 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_18056 .link_effect5stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect5stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect5stacks_in_18056 a::before,
#stacks_in_18056 .link_effect5stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect5stacks_in_18056 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_18056 .link_effect5stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_18056 .link_effect5stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect5stacks_in_18056 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_18056 .link_effect6stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect6stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect6stacks_in_18056 a::before,
#stacks_in_18056 .link_effect6stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect6stacks_in_18056 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18056 .link_effect6stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_18056 .link_effect6stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect6stacks_in_18056 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_18056 .link_effect7stacks_in_18056 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect7stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect7stacks_in_18056 a::before,
#stacks_in_18056 .link_effect7stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect7stacks_in_18056 {
	position: relative;
}

#stacks_in_18056 .link_effect7stacks_in_18056 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_18056 .link_effect7stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_18056 .link_effect7stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect7stacks_in_18056 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_18056 .link_effect8stacks_in_18056 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect8stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect8stacks_in_18056 a::before,
#stacks_in_18056 .link_effect8stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_18056 .link_effect8stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_18056 .link_effect8stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect8stacks_in_18056 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18056 .link_effect8stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_18056 .link_effect8stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect8stacks_in_18056 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_18056 .link_effect9stacks_in_18056 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect9stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect9stacks_in_18056 a::before,
#stacks_in_18056 .link_effect9stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect9stacks_in_18056 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_18056 .link_effect9stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect9stacks_in_18056 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18056 .link_effect9stacks_in_18056 a::before,
#stacks_in_18056 .link_effect9stacks_in_18056 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_18056 .link_effect9stacks_in_18056 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_18056 .link_effect9stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect9stacks_in_18056 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_18056 .link_effect9stacks_in_18056 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_18056 .link_effect10stacks_in_18056 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect10stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect10stacks_in_18056 a::before,
#stacks_in_18056 .link_effect10stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect10stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_18056 .link_effect10stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect10stacks_in_18056 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18056 .link_effect10stacks_in_18056 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_18056 .link_effect10stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect10stacks_in_18056 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_18056 .link_effect11stacks_in_18056 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_18056 .link_effect11stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect11stacks_in_18056 a::before,
#stacks_in_18056 .link_effect11stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect11stacks_in_18056 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_18056 .link_effect11stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect11stacks_in_18056 a:focus {
	color: #DA4453 !important;
}

#stacks_in_18056 .link_effect11stacks_in_18056 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_18056 .link_effect11stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect11stacks_in_18056 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_18056 .link_effect12stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect12stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect12stacks_in_18056 a::before,
#stacks_in_18056 .link_effect12stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect12stacks_in_18056 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18056 .link_effect12stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect12stacks_in_18056 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_18056 .link_effect12stacks_in_18056 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_18056 .link_effect12stacks_in_18056 a,
#stacks_in_18056 .link_effect12stacks_in_18056 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_18056 .link_effect12stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect12stacks_in_18056 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_18056 .link_effect13stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect13stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect13stacks_in_18056 a::before,
#stacks_in_18056 .link_effect13stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect13stacks_in_18056 {
}

#stacks_in_18056 .link_effect13stacks_in_18056 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_18056 .link_effect13stacks_in_18056 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_18056 .link_effect13stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect13stacks_in_18056 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_18056 .link_effect14stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect14stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect14stacks_in_18056 a::before,
#stacks_in_18056 .link_effect14stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect14stacks_in_18056 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18056 .link_effect14stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect14stacks_in_18056 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_18056 .link_effect14stacks_in_18056 a::before,
#stacks_in_18056 .link_effect14stacks_in_18056 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_18056 .link_effect14stacks_in_18056 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_18056 .link_effect14stacks_in_18056 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_18056 .link_effect14stacks_in_18056 a:hover::after,
#stacks_in_18056 .link_effect14stacks_in_18056 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_18056 .link_effect15stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect15stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect15stacks_in_18056 a::before,
#stacks_in_18056 .link_effect15stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect15stacks_in_18056 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_18056 .link_effect15stacks_in_18056 a::before,
#stacks_in_18056 .link_effect15stacks_in_18056 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_18056 .link_effect15stacks_in_18056 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_18056 .link_effect15stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect15stacks_in_18056 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_18056 .link_effect15stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect15stacks_in_18056 a:focus::before,
#stacks_in_18056 .link_effect15stacks_in_18056 a:hover::after,
#stacks_in_18056 .link_effect15stacks_in_18056 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_18056 .link_effect15stacks_in_18056 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_18056 .link_effect15stacks_in_18056 a:hover::after,
#stacks_in_18056 .link_effect15stacks_in_18056 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_18056 .link_effect16stacks_in_18056 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a::before,
#stacks_in_18056 .link_effect16stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a:hover {
	color: #d04c3f;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a::before,
#stacks_in_18056 .link_effect16stacks_in_18056 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_18056 .link_effect16stacks_in_18056 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_18056 .link_effect16stacks_in_18056 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_18056 .link_effect16stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect16stacks_in_18056 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_18056 .link_effect17stacks_in_18056 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_18056 .link_effect17stacks_in_18056 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_18056 .link_effect17stacks_in_18056 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_18056 .link_effect18stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect18stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect18stacks_in_18056 a::before,
#stacks_in_18056 .link_effect18stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_18056 .link_effect18stacks_in_18056 {
}

#stacks_in_18056 .link_effect18stacks_in_18056 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_18056 .link_effect18stacks_in_18056 a::before,
#stacks_in_18056 .link_effect18stacks_in_18056 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18056 .link_effect18stacks_in_18056 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_18056 .link_effect18stacks_in_18056 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_18056 .link_effect18stacks_in_18056 a:hover,
#stacks_in_18056 .link_effect18stacks_in_18056 a:focus {
	color: #fff;
}

#stacks_in_18056 .link_effect18stacks_in_18056 a:hover::before,
#stacks_in_18056 .link_effect18stacks_in_18056 a:focus::before,
#stacks_in_18056 .link_effect18stacks_in_18056 a:hover::after,
#stacks_in_18056 .link_effect18stacks_in_18056 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_18056 .link_effect19stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect19stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect19stacks_in_18056 a::before,
#stacks_in_18056 .link_effect19stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_18056 a {
}

.link_effect19stacks_in_18056 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_18056 a:hover::after,
.link_effect19stacks_in_18056 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_18056 .link_effect20stacks_in_18056 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_18056 .link_effect20stacks_in_18056 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_18056 .link_effect20stacks_in_18056 a::before,
#stacks_in_18056 .link_effect20stacks_in_18056 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_18056 a {
}

.link_effect20stacks_in_18056 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_18056 a:hover::after,
.link_effect20stacks_in_18056 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_18057 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_18061 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_18061 .borderbuttonthing, #stacks_in_18061 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_18061 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_18061 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_18061 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17890Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17890Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17890Calligrapher h6, .stacks_in_17890Calligrapher h5, .stacks_in_17890Calligrapher h4, .stacks_in_17890Calligrapher h3, .stacks_in_17890Calligrapher h2, .stacks_in_17890Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17890Calligrapher, .stacks_in_17890Calligrapher h1, .stacks_in_17890Calligrapher h2, .stacks_in_17890Calligrapher h3, .stacks_in_17890Calligrapher h4, .stacks_in_17890Calligrapher h5, .stacks_in_17890Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17890targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17890Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17890Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17890Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17890Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17890 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17893 a:before, .link_effect1stacks_in_17893 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17893 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17893 a:hover:before, .link_effect1stacks_in_17893 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17893 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17893 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17893 .link_effect2stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17893 .link_effect2stacks_in_17893 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17893 .link_effect3stacks_in_17893 {
  	text-decoration: none;
}

#stacks_in_17893 .link_effect3stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17893 .link_effect3stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect3stacks_in_17893 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17893 .link_effect4stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect4stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect4stacks_in_17893 a::before,
#stacks_in_17893 .link_effect%stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect4stacks_in_17893 {
}

#stacks_in_17893 .link_effect4stacks_in_17893 a {
	font-weight:normal;;
}

#stacks_in_17893 .link_effect4stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17893 .link_effect4stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect4stacks_in_17893 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17893 .link_effect5stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect5stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect5stacks_in_17893 a::before,
#stacks_in_17893 .link_effect5stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect5stacks_in_17893 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17893 .link_effect5stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17893 .link_effect5stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect5stacks_in_17893 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17893 .link_effect6stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect6stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect6stacks_in_17893 a::before,
#stacks_in_17893 .link_effect6stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect6stacks_in_17893 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17893 .link_effect6stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17893 .link_effect6stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect6stacks_in_17893 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17893 .link_effect7stacks_in_17893 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect7stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect7stacks_in_17893 a::before,
#stacks_in_17893 .link_effect7stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect7stacks_in_17893 {
	position: relative;
}

#stacks_in_17893 .link_effect7stacks_in_17893 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17893 .link_effect7stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17893 .link_effect7stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect7stacks_in_17893 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17893 .link_effect8stacks_in_17893 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect8stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect8stacks_in_17893 a::before,
#stacks_in_17893 .link_effect8stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17893 .link_effect8stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17893 .link_effect8stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect8stacks_in_17893 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17893 .link_effect8stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17893 .link_effect8stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect8stacks_in_17893 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17893 .link_effect9stacks_in_17893 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect9stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect9stacks_in_17893 a::before,
#stacks_in_17893 .link_effect9stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect9stacks_in_17893 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17893 .link_effect9stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect9stacks_in_17893 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17893 .link_effect9stacks_in_17893 a::before,
#stacks_in_17893 .link_effect9stacks_in_17893 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17893 .link_effect9stacks_in_17893 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17893 .link_effect9stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect9stacks_in_17893 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17893 .link_effect9stacks_in_17893 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17893 .link_effect10stacks_in_17893 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect10stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect10stacks_in_17893 a::before,
#stacks_in_17893 .link_effect10stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect10stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17893 .link_effect10stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect10stacks_in_17893 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17893 .link_effect10stacks_in_17893 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17893 .link_effect10stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect10stacks_in_17893 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17893 .link_effect11stacks_in_17893 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17893 .link_effect11stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect11stacks_in_17893 a::before,
#stacks_in_17893 .link_effect11stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect11stacks_in_17893 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17893 .link_effect11stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect11stacks_in_17893 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17893 .link_effect11stacks_in_17893 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17893 .link_effect11stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect11stacks_in_17893 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17893 .link_effect12stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect12stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect12stacks_in_17893 a::before,
#stacks_in_17893 .link_effect12stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect12stacks_in_17893 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17893 .link_effect12stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect12stacks_in_17893 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17893 .link_effect12stacks_in_17893 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17893 .link_effect12stacks_in_17893 a,
#stacks_in_17893 .link_effect12stacks_in_17893 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17893 .link_effect12stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect12stacks_in_17893 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17893 .link_effect13stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect13stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect13stacks_in_17893 a::before,
#stacks_in_17893 .link_effect13stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect13stacks_in_17893 {
}

#stacks_in_17893 .link_effect13stacks_in_17893 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17893 .link_effect13stacks_in_17893 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17893 .link_effect13stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect13stacks_in_17893 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17893 .link_effect14stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect14stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect14stacks_in_17893 a::before,
#stacks_in_17893 .link_effect14stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect14stacks_in_17893 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17893 .link_effect14stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect14stacks_in_17893 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17893 .link_effect14stacks_in_17893 a::before,
#stacks_in_17893 .link_effect14stacks_in_17893 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17893 .link_effect14stacks_in_17893 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17893 .link_effect14stacks_in_17893 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17893 .link_effect14stacks_in_17893 a:hover::after,
#stacks_in_17893 .link_effect14stacks_in_17893 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17893 .link_effect15stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect15stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect15stacks_in_17893 a::before,
#stacks_in_17893 .link_effect15stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect15stacks_in_17893 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17893 .link_effect15stacks_in_17893 a::before,
#stacks_in_17893 .link_effect15stacks_in_17893 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17893 .link_effect15stacks_in_17893 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17893 .link_effect15stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect15stacks_in_17893 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17893 .link_effect15stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect15stacks_in_17893 a:focus::before,
#stacks_in_17893 .link_effect15stacks_in_17893 a:hover::after,
#stacks_in_17893 .link_effect15stacks_in_17893 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17893 .link_effect15stacks_in_17893 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17893 .link_effect15stacks_in_17893 a:hover::after,
#stacks_in_17893 .link_effect15stacks_in_17893 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17893 .link_effect16stacks_in_17893 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a::before,
#stacks_in_17893 .link_effect16stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a:hover {
	color: #d04c3f;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a::before,
#stacks_in_17893 .link_effect16stacks_in_17893 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17893 .link_effect16stacks_in_17893 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17893 .link_effect16stacks_in_17893 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17893 .link_effect16stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect16stacks_in_17893 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17893 .link_effect17stacks_in_17893 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17893 .link_effect17stacks_in_17893 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17893 .link_effect17stacks_in_17893 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17893 .link_effect18stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect18stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect18stacks_in_17893 a::before,
#stacks_in_17893 .link_effect18stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17893 .link_effect18stacks_in_17893 {
}

#stacks_in_17893 .link_effect18stacks_in_17893 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17893 .link_effect18stacks_in_17893 a::before,
#stacks_in_17893 .link_effect18stacks_in_17893 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17893 .link_effect18stacks_in_17893 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17893 .link_effect18stacks_in_17893 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17893 .link_effect18stacks_in_17893 a:hover,
#stacks_in_17893 .link_effect18stacks_in_17893 a:focus {
	color: #fff;
}

#stacks_in_17893 .link_effect18stacks_in_17893 a:hover::before,
#stacks_in_17893 .link_effect18stacks_in_17893 a:focus::before,
#stacks_in_17893 .link_effect18stacks_in_17893 a:hover::after,
#stacks_in_17893 .link_effect18stacks_in_17893 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17893 .link_effect19stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect19stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect19stacks_in_17893 a::before,
#stacks_in_17893 .link_effect19stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17893 a {
}

.link_effect19stacks_in_17893 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17893 a:hover::after,
.link_effect19stacks_in_17893 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17893 .link_effect20stacks_in_17893 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17893 .link_effect20stacks_in_17893 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17893 .link_effect20stacks_in_17893 a::before,
#stacks_in_17893 .link_effect20stacks_in_17893 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17893 a {
}

.link_effect20stacks_in_17893 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17893 a:hover::after,
.link_effect20stacks_in_17893 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17894 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17897 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17897 .borderbuttonthing, #stacks_in_17897 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17897 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17897 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17897 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17881Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17881Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17881Calligrapher h6, .stacks_in_17881Calligrapher h5, .stacks_in_17881Calligrapher h4, .stacks_in_17881Calligrapher h3, .stacks_in_17881Calligrapher h2, .stacks_in_17881Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17881Calligrapher, .stacks_in_17881Calligrapher h1, .stacks_in_17881Calligrapher h2, .stacks_in_17881Calligrapher h3, .stacks_in_17881Calligrapher h4, .stacks_in_17881Calligrapher h5, .stacks_in_17881Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17881targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17881Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17881Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17881Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17881Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17881 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17884 a:before, .link_effect1stacks_in_17884 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17884 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17884 a:hover:before, .link_effect1stacks_in_17884 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17884 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17884 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17884 .link_effect2stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17884 .link_effect2stacks_in_17884 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17884 .link_effect3stacks_in_17884 {
  	text-decoration: none;
}

#stacks_in_17884 .link_effect3stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17884 .link_effect3stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect3stacks_in_17884 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17884 .link_effect4stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect4stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect4stacks_in_17884 a::before,
#stacks_in_17884 .link_effect%stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect4stacks_in_17884 {
}

#stacks_in_17884 .link_effect4stacks_in_17884 a {
	font-weight:normal;;
}

#stacks_in_17884 .link_effect4stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17884 .link_effect4stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect4stacks_in_17884 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17884 .link_effect5stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect5stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect5stacks_in_17884 a::before,
#stacks_in_17884 .link_effect5stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect5stacks_in_17884 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17884 .link_effect5stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17884 .link_effect5stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect5stacks_in_17884 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17884 .link_effect6stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect6stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect6stacks_in_17884 a::before,
#stacks_in_17884 .link_effect6stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect6stacks_in_17884 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17884 .link_effect6stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17884 .link_effect6stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect6stacks_in_17884 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17884 .link_effect7stacks_in_17884 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect7stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect7stacks_in_17884 a::before,
#stacks_in_17884 .link_effect7stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect7stacks_in_17884 {
	position: relative;
}

#stacks_in_17884 .link_effect7stacks_in_17884 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17884 .link_effect7stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17884 .link_effect7stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect7stacks_in_17884 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17884 .link_effect8stacks_in_17884 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect8stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect8stacks_in_17884 a::before,
#stacks_in_17884 .link_effect8stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17884 .link_effect8stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17884 .link_effect8stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect8stacks_in_17884 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17884 .link_effect8stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17884 .link_effect8stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect8stacks_in_17884 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17884 .link_effect9stacks_in_17884 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect9stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect9stacks_in_17884 a::before,
#stacks_in_17884 .link_effect9stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect9stacks_in_17884 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17884 .link_effect9stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect9stacks_in_17884 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17884 .link_effect9stacks_in_17884 a::before,
#stacks_in_17884 .link_effect9stacks_in_17884 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17884 .link_effect9stacks_in_17884 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17884 .link_effect9stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect9stacks_in_17884 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17884 .link_effect9stacks_in_17884 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17884 .link_effect10stacks_in_17884 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect10stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect10stacks_in_17884 a::before,
#stacks_in_17884 .link_effect10stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect10stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17884 .link_effect10stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect10stacks_in_17884 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17884 .link_effect10stacks_in_17884 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17884 .link_effect10stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect10stacks_in_17884 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17884 .link_effect11stacks_in_17884 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17884 .link_effect11stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect11stacks_in_17884 a::before,
#stacks_in_17884 .link_effect11stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect11stacks_in_17884 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17884 .link_effect11stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect11stacks_in_17884 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17884 .link_effect11stacks_in_17884 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17884 .link_effect11stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect11stacks_in_17884 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17884 .link_effect12stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect12stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect12stacks_in_17884 a::before,
#stacks_in_17884 .link_effect12stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect12stacks_in_17884 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17884 .link_effect12stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect12stacks_in_17884 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17884 .link_effect12stacks_in_17884 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17884 .link_effect12stacks_in_17884 a,
#stacks_in_17884 .link_effect12stacks_in_17884 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17884 .link_effect12stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect12stacks_in_17884 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17884 .link_effect13stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect13stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect13stacks_in_17884 a::before,
#stacks_in_17884 .link_effect13stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect13stacks_in_17884 {
}

#stacks_in_17884 .link_effect13stacks_in_17884 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17884 .link_effect13stacks_in_17884 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17884 .link_effect13stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect13stacks_in_17884 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17884 .link_effect14stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect14stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect14stacks_in_17884 a::before,
#stacks_in_17884 .link_effect14stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect14stacks_in_17884 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17884 .link_effect14stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect14stacks_in_17884 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17884 .link_effect14stacks_in_17884 a::before,
#stacks_in_17884 .link_effect14stacks_in_17884 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17884 .link_effect14stacks_in_17884 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17884 .link_effect14stacks_in_17884 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17884 .link_effect14stacks_in_17884 a:hover::after,
#stacks_in_17884 .link_effect14stacks_in_17884 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17884 .link_effect15stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect15stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect15stacks_in_17884 a::before,
#stacks_in_17884 .link_effect15stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect15stacks_in_17884 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17884 .link_effect15stacks_in_17884 a::before,
#stacks_in_17884 .link_effect15stacks_in_17884 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17884 .link_effect15stacks_in_17884 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17884 .link_effect15stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect15stacks_in_17884 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17884 .link_effect15stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect15stacks_in_17884 a:focus::before,
#stacks_in_17884 .link_effect15stacks_in_17884 a:hover::after,
#stacks_in_17884 .link_effect15stacks_in_17884 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17884 .link_effect15stacks_in_17884 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17884 .link_effect15stacks_in_17884 a:hover::after,
#stacks_in_17884 .link_effect15stacks_in_17884 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17884 .link_effect16stacks_in_17884 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a::before,
#stacks_in_17884 .link_effect16stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a:hover {
	color: #d04c3f;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a::before,
#stacks_in_17884 .link_effect16stacks_in_17884 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17884 .link_effect16stacks_in_17884 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17884 .link_effect16stacks_in_17884 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17884 .link_effect16stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect16stacks_in_17884 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17884 .link_effect17stacks_in_17884 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17884 .link_effect17stacks_in_17884 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17884 .link_effect17stacks_in_17884 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17884 .link_effect18stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect18stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect18stacks_in_17884 a::before,
#stacks_in_17884 .link_effect18stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17884 .link_effect18stacks_in_17884 {
}

#stacks_in_17884 .link_effect18stacks_in_17884 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17884 .link_effect18stacks_in_17884 a::before,
#stacks_in_17884 .link_effect18stacks_in_17884 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17884 .link_effect18stacks_in_17884 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17884 .link_effect18stacks_in_17884 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17884 .link_effect18stacks_in_17884 a:hover,
#stacks_in_17884 .link_effect18stacks_in_17884 a:focus {
	color: #fff;
}

#stacks_in_17884 .link_effect18stacks_in_17884 a:hover::before,
#stacks_in_17884 .link_effect18stacks_in_17884 a:focus::before,
#stacks_in_17884 .link_effect18stacks_in_17884 a:hover::after,
#stacks_in_17884 .link_effect18stacks_in_17884 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17884 .link_effect19stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect19stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect19stacks_in_17884 a::before,
#stacks_in_17884 .link_effect19stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17884 a {
}

.link_effect19stacks_in_17884 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17884 a:hover::after,
.link_effect19stacks_in_17884 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17884 .link_effect20stacks_in_17884 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17884 .link_effect20stacks_in_17884 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17884 .link_effect20stacks_in_17884 a::before,
#stacks_in_17884 .link_effect20stacks_in_17884 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17884 a {
}

.link_effect20stacks_in_17884 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17884 a:hover::after,
.link_effect20stacks_in_17884 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17885 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17888 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17888 .borderbuttonthing, #stacks_in_17888 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17888 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17888 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17888 {
	margin: 20px 0px 40px 0px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17570 a:before, .link_effect1stacks_in_17570 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17570 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17570 a:hover:before, .link_effect1stacks_in_17570 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17570 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17570 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17570 .link_effect2stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17570 .link_effect2stacks_in_17570 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17570 .link_effect3stacks_in_17570 {
  	text-decoration: none;
}

#stacks_in_17570 .link_effect3stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17570 .link_effect3stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect3stacks_in_17570 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17570 .link_effect4stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect4stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect4stacks_in_17570 a::before,
#stacks_in_17570 .link_effect%stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect4stacks_in_17570 {
}

#stacks_in_17570 .link_effect4stacks_in_17570 a {
	font-weight:normal;;
}

#stacks_in_17570 .link_effect4stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17570 .link_effect4stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect4stacks_in_17570 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17570 .link_effect5stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect5stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect5stacks_in_17570 a::before,
#stacks_in_17570 .link_effect5stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect5stacks_in_17570 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17570 .link_effect5stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17570 .link_effect5stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect5stacks_in_17570 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17570 .link_effect6stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect6stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect6stacks_in_17570 a::before,
#stacks_in_17570 .link_effect6stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect6stacks_in_17570 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17570 .link_effect6stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17570 .link_effect6stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect6stacks_in_17570 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17570 .link_effect7stacks_in_17570 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect7stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect7stacks_in_17570 a::before,
#stacks_in_17570 .link_effect7stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect7stacks_in_17570 {
	position: relative;
}

#stacks_in_17570 .link_effect7stacks_in_17570 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17570 .link_effect7stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17570 .link_effect7stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect7stacks_in_17570 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17570 .link_effect8stacks_in_17570 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect8stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect8stacks_in_17570 a::before,
#stacks_in_17570 .link_effect8stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17570 .link_effect8stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17570 .link_effect8stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect8stacks_in_17570 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17570 .link_effect8stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17570 .link_effect8stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect8stacks_in_17570 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17570 .link_effect9stacks_in_17570 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect9stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect9stacks_in_17570 a::before,
#stacks_in_17570 .link_effect9stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect9stacks_in_17570 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17570 .link_effect9stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect9stacks_in_17570 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17570 .link_effect9stacks_in_17570 a::before,
#stacks_in_17570 .link_effect9stacks_in_17570 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17570 .link_effect9stacks_in_17570 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17570 .link_effect9stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect9stacks_in_17570 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17570 .link_effect9stacks_in_17570 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17570 .link_effect10stacks_in_17570 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect10stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect10stacks_in_17570 a::before,
#stacks_in_17570 .link_effect10stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect10stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17570 .link_effect10stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect10stacks_in_17570 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17570 .link_effect10stacks_in_17570 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17570 .link_effect10stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect10stacks_in_17570 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17570 .link_effect11stacks_in_17570 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17570 .link_effect11stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect11stacks_in_17570 a::before,
#stacks_in_17570 .link_effect11stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect11stacks_in_17570 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17570 .link_effect11stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect11stacks_in_17570 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17570 .link_effect11stacks_in_17570 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17570 .link_effect11stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect11stacks_in_17570 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17570 .link_effect12stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect12stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect12stacks_in_17570 a::before,
#stacks_in_17570 .link_effect12stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect12stacks_in_17570 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17570 .link_effect12stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect12stacks_in_17570 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17570 .link_effect12stacks_in_17570 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17570 .link_effect12stacks_in_17570 a,
#stacks_in_17570 .link_effect12stacks_in_17570 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17570 .link_effect12stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect12stacks_in_17570 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17570 .link_effect13stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect13stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect13stacks_in_17570 a::before,
#stacks_in_17570 .link_effect13stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect13stacks_in_17570 {
}

#stacks_in_17570 .link_effect13stacks_in_17570 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17570 .link_effect13stacks_in_17570 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17570 .link_effect13stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect13stacks_in_17570 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17570 .link_effect14stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect14stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect14stacks_in_17570 a::before,
#stacks_in_17570 .link_effect14stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect14stacks_in_17570 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17570 .link_effect14stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect14stacks_in_17570 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17570 .link_effect14stacks_in_17570 a::before,
#stacks_in_17570 .link_effect14stacks_in_17570 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17570 .link_effect14stacks_in_17570 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17570 .link_effect14stacks_in_17570 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17570 .link_effect14stacks_in_17570 a:hover::after,
#stacks_in_17570 .link_effect14stacks_in_17570 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17570 .link_effect15stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect15stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect15stacks_in_17570 a::before,
#stacks_in_17570 .link_effect15stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect15stacks_in_17570 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17570 .link_effect15stacks_in_17570 a::before,
#stacks_in_17570 .link_effect15stacks_in_17570 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17570 .link_effect15stacks_in_17570 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17570 .link_effect15stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect15stacks_in_17570 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17570 .link_effect15stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect15stacks_in_17570 a:focus::before,
#stacks_in_17570 .link_effect15stacks_in_17570 a:hover::after,
#stacks_in_17570 .link_effect15stacks_in_17570 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17570 .link_effect15stacks_in_17570 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17570 .link_effect15stacks_in_17570 a:hover::after,
#stacks_in_17570 .link_effect15stacks_in_17570 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17570 .link_effect16stacks_in_17570 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a::before,
#stacks_in_17570 .link_effect16stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a:hover {
	color: #d04c3f;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a::before,
#stacks_in_17570 .link_effect16stacks_in_17570 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17570 .link_effect16stacks_in_17570 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17570 .link_effect16stacks_in_17570 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17570 .link_effect16stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect16stacks_in_17570 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17570 .link_effect17stacks_in_17570 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17570 .link_effect17stacks_in_17570 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17570 .link_effect17stacks_in_17570 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17570 .link_effect18stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect18stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect18stacks_in_17570 a::before,
#stacks_in_17570 .link_effect18stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17570 .link_effect18stacks_in_17570 {
}

#stacks_in_17570 .link_effect18stacks_in_17570 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17570 .link_effect18stacks_in_17570 a::before,
#stacks_in_17570 .link_effect18stacks_in_17570 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17570 .link_effect18stacks_in_17570 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17570 .link_effect18stacks_in_17570 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17570 .link_effect18stacks_in_17570 a:hover,
#stacks_in_17570 .link_effect18stacks_in_17570 a:focus {
	color: #fff;
}

#stacks_in_17570 .link_effect18stacks_in_17570 a:hover::before,
#stacks_in_17570 .link_effect18stacks_in_17570 a:focus::before,
#stacks_in_17570 .link_effect18stacks_in_17570 a:hover::after,
#stacks_in_17570 .link_effect18stacks_in_17570 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17570 .link_effect19stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect19stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect19stacks_in_17570 a::before,
#stacks_in_17570 .link_effect19stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17570 a {
}

.link_effect19stacks_in_17570 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17570 a:hover::after,
.link_effect19stacks_in_17570 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17570 .link_effect20stacks_in_17570 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17570 .link_effect20stacks_in_17570 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17570 .link_effect20stacks_in_17570 a::before,
#stacks_in_17570 .link_effect20stacks_in_17570 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17570 a {
}

.link_effect20stacks_in_17570 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17570 a:hover::after,
.link_effect20stacks_in_17570 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































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

#stacks_in_17571 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17569 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17569 .borderbuttonthing, #stacks_in_17569 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17569 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17569 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17569 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17364Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17364Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17364Calligrapher h6, .stacks_in_17364Calligrapher h5, .stacks_in_17364Calligrapher h4, .stacks_in_17364Calligrapher h3, .stacks_in_17364Calligrapher h2, .stacks_in_17364Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17364Calligrapher, .stacks_in_17364Calligrapher h1, .stacks_in_17364Calligrapher h2, .stacks_in_17364Calligrapher h3, .stacks_in_17364Calligrapher h4, .stacks_in_17364Calligrapher h5, .stacks_in_17364Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17364targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17364Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17364Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17364Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17364Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17364 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17367 a:before, .link_effect1stacks_in_17367 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17367 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17367 a:hover:before, .link_effect1stacks_in_17367 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17367 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17367 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17367 .link_effect2stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17367 .link_effect2stacks_in_17367 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17367 .link_effect3stacks_in_17367 {
  	text-decoration: none;
}

#stacks_in_17367 .link_effect3stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17367 .link_effect3stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect3stacks_in_17367 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17367 .link_effect4stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect4stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect4stacks_in_17367 a::before,
#stacks_in_17367 .link_effect%stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect4stacks_in_17367 {
}

#stacks_in_17367 .link_effect4stacks_in_17367 a {
	font-weight:normal;;
}

#stacks_in_17367 .link_effect4stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17367 .link_effect4stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect4stacks_in_17367 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17367 .link_effect5stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect5stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect5stacks_in_17367 a::before,
#stacks_in_17367 .link_effect5stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect5stacks_in_17367 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17367 .link_effect5stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17367 .link_effect5stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect5stacks_in_17367 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17367 .link_effect6stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect6stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect6stacks_in_17367 a::before,
#stacks_in_17367 .link_effect6stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect6stacks_in_17367 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17367 .link_effect6stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17367 .link_effect6stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect6stacks_in_17367 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17367 .link_effect7stacks_in_17367 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect7stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect7stacks_in_17367 a::before,
#stacks_in_17367 .link_effect7stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect7stacks_in_17367 {
	position: relative;
}

#stacks_in_17367 .link_effect7stacks_in_17367 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17367 .link_effect7stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17367 .link_effect7stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect7stacks_in_17367 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17367 .link_effect8stacks_in_17367 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect8stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect8stacks_in_17367 a::before,
#stacks_in_17367 .link_effect8stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17367 .link_effect8stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17367 .link_effect8stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect8stacks_in_17367 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17367 .link_effect8stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17367 .link_effect8stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect8stacks_in_17367 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17367 .link_effect9stacks_in_17367 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect9stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect9stacks_in_17367 a::before,
#stacks_in_17367 .link_effect9stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect9stacks_in_17367 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17367 .link_effect9stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect9stacks_in_17367 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17367 .link_effect9stacks_in_17367 a::before,
#stacks_in_17367 .link_effect9stacks_in_17367 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17367 .link_effect9stacks_in_17367 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17367 .link_effect9stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect9stacks_in_17367 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17367 .link_effect9stacks_in_17367 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17367 .link_effect10stacks_in_17367 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect10stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect10stacks_in_17367 a::before,
#stacks_in_17367 .link_effect10stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect10stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17367 .link_effect10stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect10stacks_in_17367 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17367 .link_effect10stacks_in_17367 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17367 .link_effect10stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect10stacks_in_17367 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17367 .link_effect11stacks_in_17367 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17367 .link_effect11stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect11stacks_in_17367 a::before,
#stacks_in_17367 .link_effect11stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect11stacks_in_17367 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17367 .link_effect11stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect11stacks_in_17367 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17367 .link_effect11stacks_in_17367 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17367 .link_effect11stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect11stacks_in_17367 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17367 .link_effect12stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect12stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect12stacks_in_17367 a::before,
#stacks_in_17367 .link_effect12stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect12stacks_in_17367 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17367 .link_effect12stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect12stacks_in_17367 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17367 .link_effect12stacks_in_17367 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17367 .link_effect12stacks_in_17367 a,
#stacks_in_17367 .link_effect12stacks_in_17367 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17367 .link_effect12stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect12stacks_in_17367 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17367 .link_effect13stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect13stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect13stacks_in_17367 a::before,
#stacks_in_17367 .link_effect13stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect13stacks_in_17367 {
}

#stacks_in_17367 .link_effect13stacks_in_17367 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17367 .link_effect13stacks_in_17367 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17367 .link_effect13stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect13stacks_in_17367 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17367 .link_effect14stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect14stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect14stacks_in_17367 a::before,
#stacks_in_17367 .link_effect14stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect14stacks_in_17367 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17367 .link_effect14stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect14stacks_in_17367 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17367 .link_effect14stacks_in_17367 a::before,
#stacks_in_17367 .link_effect14stacks_in_17367 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17367 .link_effect14stacks_in_17367 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17367 .link_effect14stacks_in_17367 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17367 .link_effect14stacks_in_17367 a:hover::after,
#stacks_in_17367 .link_effect14stacks_in_17367 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17367 .link_effect15stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect15stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect15stacks_in_17367 a::before,
#stacks_in_17367 .link_effect15stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect15stacks_in_17367 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17367 .link_effect15stacks_in_17367 a::before,
#stacks_in_17367 .link_effect15stacks_in_17367 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17367 .link_effect15stacks_in_17367 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17367 .link_effect15stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect15stacks_in_17367 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17367 .link_effect15stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect15stacks_in_17367 a:focus::before,
#stacks_in_17367 .link_effect15stacks_in_17367 a:hover::after,
#stacks_in_17367 .link_effect15stacks_in_17367 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17367 .link_effect15stacks_in_17367 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17367 .link_effect15stacks_in_17367 a:hover::after,
#stacks_in_17367 .link_effect15stacks_in_17367 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17367 .link_effect16stacks_in_17367 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a::before,
#stacks_in_17367 .link_effect16stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a:hover {
	color: #d04c3f;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a::before,
#stacks_in_17367 .link_effect16stacks_in_17367 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17367 .link_effect16stacks_in_17367 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17367 .link_effect16stacks_in_17367 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17367 .link_effect16stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect16stacks_in_17367 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17367 .link_effect17stacks_in_17367 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17367 .link_effect17stacks_in_17367 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17367 .link_effect17stacks_in_17367 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17367 .link_effect18stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect18stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect18stacks_in_17367 a::before,
#stacks_in_17367 .link_effect18stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17367 .link_effect18stacks_in_17367 {
}

#stacks_in_17367 .link_effect18stacks_in_17367 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17367 .link_effect18stacks_in_17367 a::before,
#stacks_in_17367 .link_effect18stacks_in_17367 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17367 .link_effect18stacks_in_17367 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17367 .link_effect18stacks_in_17367 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17367 .link_effect18stacks_in_17367 a:hover,
#stacks_in_17367 .link_effect18stacks_in_17367 a:focus {
	color: #fff;
}

#stacks_in_17367 .link_effect18stacks_in_17367 a:hover::before,
#stacks_in_17367 .link_effect18stacks_in_17367 a:focus::before,
#stacks_in_17367 .link_effect18stacks_in_17367 a:hover::after,
#stacks_in_17367 .link_effect18stacks_in_17367 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17367 .link_effect19stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect19stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect19stacks_in_17367 a::before,
#stacks_in_17367 .link_effect19stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17367 a {
}

.link_effect19stacks_in_17367 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17367 a:hover::after,
.link_effect19stacks_in_17367 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17367 .link_effect20stacks_in_17367 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17367 .link_effect20stacks_in_17367 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17367 .link_effect20stacks_in_17367 a::before,
#stacks_in_17367 .link_effect20stacks_in_17367 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17367 a {
}

.link_effect20stacks_in_17367 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17367 a:hover::after,
.link_effect20stacks_in_17367 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17368 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17173 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17173 .borderbuttonthing, #stacks_in_17173 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17173 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17173 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17173 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17175Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17175Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17175Calligrapher h6, .stacks_in_17175Calligrapher h5, .stacks_in_17175Calligrapher h4, .stacks_in_17175Calligrapher h3, .stacks_in_17175Calligrapher h2, .stacks_in_17175Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17175Calligrapher, .stacks_in_17175Calligrapher h1, .stacks_in_17175Calligrapher h2, .stacks_in_17175Calligrapher h3, .stacks_in_17175Calligrapher h4, .stacks_in_17175Calligrapher h5, .stacks_in_17175Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17175targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17175Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17175Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17175Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17175Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17175 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17179 a:before, .link_effect1stacks_in_17179 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17179 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17179 a:hover:before, .link_effect1stacks_in_17179 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17179 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17179 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17179 .link_effect2stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17179 .link_effect2stacks_in_17179 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17179 .link_effect3stacks_in_17179 {
  	text-decoration: none;
}

#stacks_in_17179 .link_effect3stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17179 .link_effect3stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect3stacks_in_17179 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17179 .link_effect4stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect4stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect4stacks_in_17179 a::before,
#stacks_in_17179 .link_effect%stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect4stacks_in_17179 {
}

#stacks_in_17179 .link_effect4stacks_in_17179 a {
	font-weight:normal;;
}

#stacks_in_17179 .link_effect4stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17179 .link_effect4stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect4stacks_in_17179 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17179 .link_effect5stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect5stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect5stacks_in_17179 a::before,
#stacks_in_17179 .link_effect5stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect5stacks_in_17179 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17179 .link_effect5stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17179 .link_effect5stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect5stacks_in_17179 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17179 .link_effect6stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect6stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect6stacks_in_17179 a::before,
#stacks_in_17179 .link_effect6stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect6stacks_in_17179 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17179 .link_effect6stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17179 .link_effect6stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect6stacks_in_17179 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17179 .link_effect7stacks_in_17179 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect7stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect7stacks_in_17179 a::before,
#stacks_in_17179 .link_effect7stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect7stacks_in_17179 {
	position: relative;
}

#stacks_in_17179 .link_effect7stacks_in_17179 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17179 .link_effect7stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17179 .link_effect7stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect7stacks_in_17179 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17179 .link_effect8stacks_in_17179 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect8stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect8stacks_in_17179 a::before,
#stacks_in_17179 .link_effect8stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17179 .link_effect8stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17179 .link_effect8stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect8stacks_in_17179 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17179 .link_effect8stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17179 .link_effect8stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect8stacks_in_17179 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17179 .link_effect9stacks_in_17179 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect9stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect9stacks_in_17179 a::before,
#stacks_in_17179 .link_effect9stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect9stacks_in_17179 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17179 .link_effect9stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect9stacks_in_17179 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17179 .link_effect9stacks_in_17179 a::before,
#stacks_in_17179 .link_effect9stacks_in_17179 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17179 .link_effect9stacks_in_17179 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17179 .link_effect9stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect9stacks_in_17179 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17179 .link_effect9stacks_in_17179 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17179 .link_effect10stacks_in_17179 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect10stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect10stacks_in_17179 a::before,
#stacks_in_17179 .link_effect10stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect10stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17179 .link_effect10stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect10stacks_in_17179 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17179 .link_effect10stacks_in_17179 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17179 .link_effect10stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect10stacks_in_17179 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17179 .link_effect11stacks_in_17179 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17179 .link_effect11stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect11stacks_in_17179 a::before,
#stacks_in_17179 .link_effect11stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect11stacks_in_17179 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17179 .link_effect11stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect11stacks_in_17179 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17179 .link_effect11stacks_in_17179 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17179 .link_effect11stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect11stacks_in_17179 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17179 .link_effect12stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect12stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect12stacks_in_17179 a::before,
#stacks_in_17179 .link_effect12stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect12stacks_in_17179 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17179 .link_effect12stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect12stacks_in_17179 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17179 .link_effect12stacks_in_17179 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17179 .link_effect12stacks_in_17179 a,
#stacks_in_17179 .link_effect12stacks_in_17179 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17179 .link_effect12stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect12stacks_in_17179 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17179 .link_effect13stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect13stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect13stacks_in_17179 a::before,
#stacks_in_17179 .link_effect13stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect13stacks_in_17179 {
}

#stacks_in_17179 .link_effect13stacks_in_17179 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17179 .link_effect13stacks_in_17179 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17179 .link_effect13stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect13stacks_in_17179 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17179 .link_effect14stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect14stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect14stacks_in_17179 a::before,
#stacks_in_17179 .link_effect14stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect14stacks_in_17179 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17179 .link_effect14stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect14stacks_in_17179 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17179 .link_effect14stacks_in_17179 a::before,
#stacks_in_17179 .link_effect14stacks_in_17179 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17179 .link_effect14stacks_in_17179 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17179 .link_effect14stacks_in_17179 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17179 .link_effect14stacks_in_17179 a:hover::after,
#stacks_in_17179 .link_effect14stacks_in_17179 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17179 .link_effect15stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect15stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect15stacks_in_17179 a::before,
#stacks_in_17179 .link_effect15stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect15stacks_in_17179 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17179 .link_effect15stacks_in_17179 a::before,
#stacks_in_17179 .link_effect15stacks_in_17179 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17179 .link_effect15stacks_in_17179 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17179 .link_effect15stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect15stacks_in_17179 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17179 .link_effect15stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect15stacks_in_17179 a:focus::before,
#stacks_in_17179 .link_effect15stacks_in_17179 a:hover::after,
#stacks_in_17179 .link_effect15stacks_in_17179 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17179 .link_effect15stacks_in_17179 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17179 .link_effect15stacks_in_17179 a:hover::after,
#stacks_in_17179 .link_effect15stacks_in_17179 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17179 .link_effect16stacks_in_17179 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a::before,
#stacks_in_17179 .link_effect16stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a:hover {
	color: #d04c3f;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a::before,
#stacks_in_17179 .link_effect16stacks_in_17179 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17179 .link_effect16stacks_in_17179 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17179 .link_effect16stacks_in_17179 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17179 .link_effect16stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect16stacks_in_17179 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17179 .link_effect17stacks_in_17179 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17179 .link_effect17stacks_in_17179 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17179 .link_effect17stacks_in_17179 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17179 .link_effect18stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect18stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect18stacks_in_17179 a::before,
#stacks_in_17179 .link_effect18stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17179 .link_effect18stacks_in_17179 {
}

#stacks_in_17179 .link_effect18stacks_in_17179 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17179 .link_effect18stacks_in_17179 a::before,
#stacks_in_17179 .link_effect18stacks_in_17179 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17179 .link_effect18stacks_in_17179 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17179 .link_effect18stacks_in_17179 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17179 .link_effect18stacks_in_17179 a:hover,
#stacks_in_17179 .link_effect18stacks_in_17179 a:focus {
	color: #fff;
}

#stacks_in_17179 .link_effect18stacks_in_17179 a:hover::before,
#stacks_in_17179 .link_effect18stacks_in_17179 a:focus::before,
#stacks_in_17179 .link_effect18stacks_in_17179 a:hover::after,
#stacks_in_17179 .link_effect18stacks_in_17179 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17179 .link_effect19stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect19stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect19stacks_in_17179 a::before,
#stacks_in_17179 .link_effect19stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17179 a {
}

.link_effect19stacks_in_17179 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17179 a:hover::after,
.link_effect19stacks_in_17179 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17179 .link_effect20stacks_in_17179 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17179 .link_effect20stacks_in_17179 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17179 .link_effect20stacks_in_17179 a::before,
#stacks_in_17179 .link_effect20stacks_in_17179 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17179 a {
}

.link_effect20stacks_in_17179 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17179 a:hover::after,
.link_effect20stacks_in_17179 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17181 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17183 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17183 .borderbuttonthing, #stacks_in_17183 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17183 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17183 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17183 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17185Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17185Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17185Calligrapher h6, .stacks_in_17185Calligrapher h5, .stacks_in_17185Calligrapher h4, .stacks_in_17185Calligrapher h3, .stacks_in_17185Calligrapher h2, .stacks_in_17185Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17185Calligrapher, .stacks_in_17185Calligrapher h1, .stacks_in_17185Calligrapher h2, .stacks_in_17185Calligrapher h3, .stacks_in_17185Calligrapher h4, .stacks_in_17185Calligrapher h5, .stacks_in_17185Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17185targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17185Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17185Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17185Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17185Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17185 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17189 a:before, .link_effect1stacks_in_17189 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17189 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17189 a:hover:before, .link_effect1stacks_in_17189 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17189 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17189 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17189 .link_effect2stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17189 .link_effect2stacks_in_17189 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17189 .link_effect3stacks_in_17189 {
  	text-decoration: none;
}

#stacks_in_17189 .link_effect3stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17189 .link_effect3stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect3stacks_in_17189 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17189 .link_effect4stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect4stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect4stacks_in_17189 a::before,
#stacks_in_17189 .link_effect%stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect4stacks_in_17189 {
}

#stacks_in_17189 .link_effect4stacks_in_17189 a {
	font-weight:normal;;
}

#stacks_in_17189 .link_effect4stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17189 .link_effect4stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect4stacks_in_17189 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17189 .link_effect5stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect5stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect5stacks_in_17189 a::before,
#stacks_in_17189 .link_effect5stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect5stacks_in_17189 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17189 .link_effect5stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17189 .link_effect5stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect5stacks_in_17189 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17189 .link_effect6stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect6stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect6stacks_in_17189 a::before,
#stacks_in_17189 .link_effect6stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect6stacks_in_17189 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17189 .link_effect6stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17189 .link_effect6stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect6stacks_in_17189 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17189 .link_effect7stacks_in_17189 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect7stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect7stacks_in_17189 a::before,
#stacks_in_17189 .link_effect7stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect7stacks_in_17189 {
	position: relative;
}

#stacks_in_17189 .link_effect7stacks_in_17189 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17189 .link_effect7stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17189 .link_effect7stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect7stacks_in_17189 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17189 .link_effect8stacks_in_17189 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect8stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect8stacks_in_17189 a::before,
#stacks_in_17189 .link_effect8stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17189 .link_effect8stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17189 .link_effect8stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect8stacks_in_17189 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17189 .link_effect8stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17189 .link_effect8stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect8stacks_in_17189 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17189 .link_effect9stacks_in_17189 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect9stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect9stacks_in_17189 a::before,
#stacks_in_17189 .link_effect9stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect9stacks_in_17189 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17189 .link_effect9stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect9stacks_in_17189 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17189 .link_effect9stacks_in_17189 a::before,
#stacks_in_17189 .link_effect9stacks_in_17189 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17189 .link_effect9stacks_in_17189 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17189 .link_effect9stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect9stacks_in_17189 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17189 .link_effect9stacks_in_17189 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17189 .link_effect10stacks_in_17189 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect10stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect10stacks_in_17189 a::before,
#stacks_in_17189 .link_effect10stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect10stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17189 .link_effect10stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect10stacks_in_17189 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17189 .link_effect10stacks_in_17189 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17189 .link_effect10stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect10stacks_in_17189 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17189 .link_effect11stacks_in_17189 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17189 .link_effect11stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect11stacks_in_17189 a::before,
#stacks_in_17189 .link_effect11stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect11stacks_in_17189 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17189 .link_effect11stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect11stacks_in_17189 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17189 .link_effect11stacks_in_17189 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17189 .link_effect11stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect11stacks_in_17189 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17189 .link_effect12stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect12stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect12stacks_in_17189 a::before,
#stacks_in_17189 .link_effect12stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect12stacks_in_17189 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17189 .link_effect12stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect12stacks_in_17189 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17189 .link_effect12stacks_in_17189 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17189 .link_effect12stacks_in_17189 a,
#stacks_in_17189 .link_effect12stacks_in_17189 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17189 .link_effect12stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect12stacks_in_17189 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17189 .link_effect13stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect13stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect13stacks_in_17189 a::before,
#stacks_in_17189 .link_effect13stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect13stacks_in_17189 {
}

#stacks_in_17189 .link_effect13stacks_in_17189 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17189 .link_effect13stacks_in_17189 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17189 .link_effect13stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect13stacks_in_17189 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17189 .link_effect14stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect14stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect14stacks_in_17189 a::before,
#stacks_in_17189 .link_effect14stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect14stacks_in_17189 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17189 .link_effect14stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect14stacks_in_17189 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17189 .link_effect14stacks_in_17189 a::before,
#stacks_in_17189 .link_effect14stacks_in_17189 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17189 .link_effect14stacks_in_17189 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17189 .link_effect14stacks_in_17189 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17189 .link_effect14stacks_in_17189 a:hover::after,
#stacks_in_17189 .link_effect14stacks_in_17189 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17189 .link_effect15stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect15stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect15stacks_in_17189 a::before,
#stacks_in_17189 .link_effect15stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect15stacks_in_17189 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17189 .link_effect15stacks_in_17189 a::before,
#stacks_in_17189 .link_effect15stacks_in_17189 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17189 .link_effect15stacks_in_17189 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17189 .link_effect15stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect15stacks_in_17189 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17189 .link_effect15stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect15stacks_in_17189 a:focus::before,
#stacks_in_17189 .link_effect15stacks_in_17189 a:hover::after,
#stacks_in_17189 .link_effect15stacks_in_17189 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17189 .link_effect15stacks_in_17189 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17189 .link_effect15stacks_in_17189 a:hover::after,
#stacks_in_17189 .link_effect15stacks_in_17189 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17189 .link_effect16stacks_in_17189 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a::before,
#stacks_in_17189 .link_effect16stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a:hover {
	color: #d04c3f;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a::before,
#stacks_in_17189 .link_effect16stacks_in_17189 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17189 .link_effect16stacks_in_17189 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17189 .link_effect16stacks_in_17189 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17189 .link_effect16stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect16stacks_in_17189 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17189 .link_effect17stacks_in_17189 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17189 .link_effect17stacks_in_17189 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17189 .link_effect17stacks_in_17189 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17189 .link_effect18stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect18stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect18stacks_in_17189 a::before,
#stacks_in_17189 .link_effect18stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17189 .link_effect18stacks_in_17189 {
}

#stacks_in_17189 .link_effect18stacks_in_17189 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17189 .link_effect18stacks_in_17189 a::before,
#stacks_in_17189 .link_effect18stacks_in_17189 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17189 .link_effect18stacks_in_17189 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17189 .link_effect18stacks_in_17189 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17189 .link_effect18stacks_in_17189 a:hover,
#stacks_in_17189 .link_effect18stacks_in_17189 a:focus {
	color: #fff;
}

#stacks_in_17189 .link_effect18stacks_in_17189 a:hover::before,
#stacks_in_17189 .link_effect18stacks_in_17189 a:focus::before,
#stacks_in_17189 .link_effect18stacks_in_17189 a:hover::after,
#stacks_in_17189 .link_effect18stacks_in_17189 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17189 .link_effect19stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect19stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect19stacks_in_17189 a::before,
#stacks_in_17189 .link_effect19stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17189 a {
}

.link_effect19stacks_in_17189 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17189 a:hover::after,
.link_effect19stacks_in_17189 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17189 .link_effect20stacks_in_17189 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17189 .link_effect20stacks_in_17189 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17189 .link_effect20stacks_in_17189 a::before,
#stacks_in_17189 .link_effect20stacks_in_17189 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17189 a {
}

.link_effect20stacks_in_17189 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17189 a:hover::after,
.link_effect20stacks_in_17189 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17191 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17193 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17193 .borderbuttonthing, #stacks_in_17193 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17193 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17193 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17193 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17195Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17195Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17195Calligrapher h6, .stacks_in_17195Calligrapher h5, .stacks_in_17195Calligrapher h4, .stacks_in_17195Calligrapher h3, .stacks_in_17195Calligrapher h2, .stacks_in_17195Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17195Calligrapher, .stacks_in_17195Calligrapher h1, .stacks_in_17195Calligrapher h2, .stacks_in_17195Calligrapher h3, .stacks_in_17195Calligrapher h4, .stacks_in_17195Calligrapher h5, .stacks_in_17195Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17195targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17195Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17195Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17195Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17195Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17195 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17199 a:before, .link_effect1stacks_in_17199 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17199 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17199 a:hover:before, .link_effect1stacks_in_17199 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17199 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17199 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17199 .link_effect2stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17199 .link_effect2stacks_in_17199 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17199 .link_effect3stacks_in_17199 {
  	text-decoration: none;
}

#stacks_in_17199 .link_effect3stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17199 .link_effect3stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect3stacks_in_17199 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17199 .link_effect4stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect4stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect4stacks_in_17199 a::before,
#stacks_in_17199 .link_effect%stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect4stacks_in_17199 {
}

#stacks_in_17199 .link_effect4stacks_in_17199 a {
	font-weight:normal;;
}

#stacks_in_17199 .link_effect4stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17199 .link_effect4stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect4stacks_in_17199 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17199 .link_effect5stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect5stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect5stacks_in_17199 a::before,
#stacks_in_17199 .link_effect5stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect5stacks_in_17199 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17199 .link_effect5stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17199 .link_effect5stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect5stacks_in_17199 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17199 .link_effect6stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect6stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect6stacks_in_17199 a::before,
#stacks_in_17199 .link_effect6stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect6stacks_in_17199 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17199 .link_effect6stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17199 .link_effect6stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect6stacks_in_17199 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17199 .link_effect7stacks_in_17199 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect7stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect7stacks_in_17199 a::before,
#stacks_in_17199 .link_effect7stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect7stacks_in_17199 {
	position: relative;
}

#stacks_in_17199 .link_effect7stacks_in_17199 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17199 .link_effect7stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17199 .link_effect7stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect7stacks_in_17199 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17199 .link_effect8stacks_in_17199 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect8stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect8stacks_in_17199 a::before,
#stacks_in_17199 .link_effect8stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17199 .link_effect8stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17199 .link_effect8stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect8stacks_in_17199 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17199 .link_effect8stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17199 .link_effect8stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect8stacks_in_17199 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17199 .link_effect9stacks_in_17199 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect9stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect9stacks_in_17199 a::before,
#stacks_in_17199 .link_effect9stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect9stacks_in_17199 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17199 .link_effect9stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect9stacks_in_17199 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17199 .link_effect9stacks_in_17199 a::before,
#stacks_in_17199 .link_effect9stacks_in_17199 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17199 .link_effect9stacks_in_17199 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17199 .link_effect9stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect9stacks_in_17199 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17199 .link_effect9stacks_in_17199 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17199 .link_effect10stacks_in_17199 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect10stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect10stacks_in_17199 a::before,
#stacks_in_17199 .link_effect10stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect10stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17199 .link_effect10stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect10stacks_in_17199 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17199 .link_effect10stacks_in_17199 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17199 .link_effect10stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect10stacks_in_17199 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17199 .link_effect11stacks_in_17199 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17199 .link_effect11stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect11stacks_in_17199 a::before,
#stacks_in_17199 .link_effect11stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect11stacks_in_17199 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17199 .link_effect11stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect11stacks_in_17199 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17199 .link_effect11stacks_in_17199 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17199 .link_effect11stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect11stacks_in_17199 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17199 .link_effect12stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect12stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect12stacks_in_17199 a::before,
#stacks_in_17199 .link_effect12stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect12stacks_in_17199 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17199 .link_effect12stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect12stacks_in_17199 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17199 .link_effect12stacks_in_17199 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17199 .link_effect12stacks_in_17199 a,
#stacks_in_17199 .link_effect12stacks_in_17199 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17199 .link_effect12stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect12stacks_in_17199 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17199 .link_effect13stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect13stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect13stacks_in_17199 a::before,
#stacks_in_17199 .link_effect13stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect13stacks_in_17199 {
}

#stacks_in_17199 .link_effect13stacks_in_17199 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17199 .link_effect13stacks_in_17199 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17199 .link_effect13stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect13stacks_in_17199 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17199 .link_effect14stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect14stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect14stacks_in_17199 a::before,
#stacks_in_17199 .link_effect14stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect14stacks_in_17199 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17199 .link_effect14stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect14stacks_in_17199 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17199 .link_effect14stacks_in_17199 a::before,
#stacks_in_17199 .link_effect14stacks_in_17199 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17199 .link_effect14stacks_in_17199 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17199 .link_effect14stacks_in_17199 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17199 .link_effect14stacks_in_17199 a:hover::after,
#stacks_in_17199 .link_effect14stacks_in_17199 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17199 .link_effect15stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect15stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect15stacks_in_17199 a::before,
#stacks_in_17199 .link_effect15stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect15stacks_in_17199 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17199 .link_effect15stacks_in_17199 a::before,
#stacks_in_17199 .link_effect15stacks_in_17199 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17199 .link_effect15stacks_in_17199 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17199 .link_effect15stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect15stacks_in_17199 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17199 .link_effect15stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect15stacks_in_17199 a:focus::before,
#stacks_in_17199 .link_effect15stacks_in_17199 a:hover::after,
#stacks_in_17199 .link_effect15stacks_in_17199 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17199 .link_effect15stacks_in_17199 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17199 .link_effect15stacks_in_17199 a:hover::after,
#stacks_in_17199 .link_effect15stacks_in_17199 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17199 .link_effect16stacks_in_17199 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a::before,
#stacks_in_17199 .link_effect16stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a:hover {
	color: #d04c3f;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a::before,
#stacks_in_17199 .link_effect16stacks_in_17199 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17199 .link_effect16stacks_in_17199 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17199 .link_effect16stacks_in_17199 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17199 .link_effect16stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect16stacks_in_17199 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17199 .link_effect17stacks_in_17199 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17199 .link_effect17stacks_in_17199 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17199 .link_effect17stacks_in_17199 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17199 .link_effect18stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect18stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect18stacks_in_17199 a::before,
#stacks_in_17199 .link_effect18stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17199 .link_effect18stacks_in_17199 {
}

#stacks_in_17199 .link_effect18stacks_in_17199 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17199 .link_effect18stacks_in_17199 a::before,
#stacks_in_17199 .link_effect18stacks_in_17199 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17199 .link_effect18stacks_in_17199 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17199 .link_effect18stacks_in_17199 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17199 .link_effect18stacks_in_17199 a:hover,
#stacks_in_17199 .link_effect18stacks_in_17199 a:focus {
	color: #fff;
}

#stacks_in_17199 .link_effect18stacks_in_17199 a:hover::before,
#stacks_in_17199 .link_effect18stacks_in_17199 a:focus::before,
#stacks_in_17199 .link_effect18stacks_in_17199 a:hover::after,
#stacks_in_17199 .link_effect18stacks_in_17199 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17199 .link_effect19stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect19stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect19stacks_in_17199 a::before,
#stacks_in_17199 .link_effect19stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17199 a {
}

.link_effect19stacks_in_17199 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17199 a:hover::after,
.link_effect19stacks_in_17199 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17199 .link_effect20stacks_in_17199 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17199 .link_effect20stacks_in_17199 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17199 .link_effect20stacks_in_17199 a::before,
#stacks_in_17199 .link_effect20stacks_in_17199 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17199 a {
}

.link_effect20stacks_in_17199 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17199 a:hover::after,
.link_effect20stacks_in_17199 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17201 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17203 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17203 .borderbuttonthing, #stacks_in_17203 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17203 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17203 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17203 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17207Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17207Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17207Calligrapher h6, .stacks_in_17207Calligrapher h5, .stacks_in_17207Calligrapher h4, .stacks_in_17207Calligrapher h3, .stacks_in_17207Calligrapher h2, .stacks_in_17207Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17207Calligrapher, .stacks_in_17207Calligrapher h1, .stacks_in_17207Calligrapher h2, .stacks_in_17207Calligrapher h3, .stacks_in_17207Calligrapher h4, .stacks_in_17207Calligrapher h5, .stacks_in_17207Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17207targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17207Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17207Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17207Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17207Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17207 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17209 a:before, .link_effect1stacks_in_17209 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17209 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17209 a:hover:before, .link_effect1stacks_in_17209 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17209 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17209 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17209 .link_effect2stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17209 .link_effect2stacks_in_17209 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17209 .link_effect3stacks_in_17209 {
  	text-decoration: none;
}

#stacks_in_17209 .link_effect3stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17209 .link_effect3stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect3stacks_in_17209 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17209 .link_effect4stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect4stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect4stacks_in_17209 a::before,
#stacks_in_17209 .link_effect%stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect4stacks_in_17209 {
}

#stacks_in_17209 .link_effect4stacks_in_17209 a {
	font-weight:normal;;
}

#stacks_in_17209 .link_effect4stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17209 .link_effect4stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect4stacks_in_17209 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17209 .link_effect5stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect5stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect5stacks_in_17209 a::before,
#stacks_in_17209 .link_effect5stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect5stacks_in_17209 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17209 .link_effect5stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17209 .link_effect5stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect5stacks_in_17209 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17209 .link_effect6stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect6stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect6stacks_in_17209 a::before,
#stacks_in_17209 .link_effect6stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect6stacks_in_17209 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17209 .link_effect6stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17209 .link_effect6stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect6stacks_in_17209 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17209 .link_effect7stacks_in_17209 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect7stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect7stacks_in_17209 a::before,
#stacks_in_17209 .link_effect7stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect7stacks_in_17209 {
	position: relative;
}

#stacks_in_17209 .link_effect7stacks_in_17209 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17209 .link_effect7stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17209 .link_effect7stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect7stacks_in_17209 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17209 .link_effect8stacks_in_17209 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect8stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect8stacks_in_17209 a::before,
#stacks_in_17209 .link_effect8stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17209 .link_effect8stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17209 .link_effect8stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect8stacks_in_17209 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17209 .link_effect8stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17209 .link_effect8stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect8stacks_in_17209 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17209 .link_effect9stacks_in_17209 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect9stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect9stacks_in_17209 a::before,
#stacks_in_17209 .link_effect9stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect9stacks_in_17209 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17209 .link_effect9stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect9stacks_in_17209 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17209 .link_effect9stacks_in_17209 a::before,
#stacks_in_17209 .link_effect9stacks_in_17209 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17209 .link_effect9stacks_in_17209 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17209 .link_effect9stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect9stacks_in_17209 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17209 .link_effect9stacks_in_17209 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17209 .link_effect10stacks_in_17209 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect10stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect10stacks_in_17209 a::before,
#stacks_in_17209 .link_effect10stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect10stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17209 .link_effect10stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect10stacks_in_17209 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17209 .link_effect10stacks_in_17209 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17209 .link_effect10stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect10stacks_in_17209 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17209 .link_effect11stacks_in_17209 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17209 .link_effect11stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect11stacks_in_17209 a::before,
#stacks_in_17209 .link_effect11stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect11stacks_in_17209 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17209 .link_effect11stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect11stacks_in_17209 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17209 .link_effect11stacks_in_17209 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17209 .link_effect11stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect11stacks_in_17209 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17209 .link_effect12stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect12stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect12stacks_in_17209 a::before,
#stacks_in_17209 .link_effect12stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect12stacks_in_17209 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17209 .link_effect12stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect12stacks_in_17209 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17209 .link_effect12stacks_in_17209 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17209 .link_effect12stacks_in_17209 a,
#stacks_in_17209 .link_effect12stacks_in_17209 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17209 .link_effect12stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect12stacks_in_17209 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17209 .link_effect13stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect13stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect13stacks_in_17209 a::before,
#stacks_in_17209 .link_effect13stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect13stacks_in_17209 {
}

#stacks_in_17209 .link_effect13stacks_in_17209 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17209 .link_effect13stacks_in_17209 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17209 .link_effect13stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect13stacks_in_17209 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17209 .link_effect14stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect14stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect14stacks_in_17209 a::before,
#stacks_in_17209 .link_effect14stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect14stacks_in_17209 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17209 .link_effect14stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect14stacks_in_17209 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17209 .link_effect14stacks_in_17209 a::before,
#stacks_in_17209 .link_effect14stacks_in_17209 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17209 .link_effect14stacks_in_17209 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17209 .link_effect14stacks_in_17209 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17209 .link_effect14stacks_in_17209 a:hover::after,
#stacks_in_17209 .link_effect14stacks_in_17209 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17209 .link_effect15stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect15stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect15stacks_in_17209 a::before,
#stacks_in_17209 .link_effect15stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect15stacks_in_17209 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17209 .link_effect15stacks_in_17209 a::before,
#stacks_in_17209 .link_effect15stacks_in_17209 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17209 .link_effect15stacks_in_17209 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17209 .link_effect15stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect15stacks_in_17209 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17209 .link_effect15stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect15stacks_in_17209 a:focus::before,
#stacks_in_17209 .link_effect15stacks_in_17209 a:hover::after,
#stacks_in_17209 .link_effect15stacks_in_17209 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17209 .link_effect15stacks_in_17209 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17209 .link_effect15stacks_in_17209 a:hover::after,
#stacks_in_17209 .link_effect15stacks_in_17209 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17209 .link_effect16stacks_in_17209 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a::before,
#stacks_in_17209 .link_effect16stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a:hover {
	color: #d04c3f;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a::before,
#stacks_in_17209 .link_effect16stacks_in_17209 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17209 .link_effect16stacks_in_17209 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17209 .link_effect16stacks_in_17209 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17209 .link_effect16stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect16stacks_in_17209 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17209 .link_effect17stacks_in_17209 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17209 .link_effect17stacks_in_17209 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17209 .link_effect17stacks_in_17209 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17209 .link_effect18stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect18stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect18stacks_in_17209 a::before,
#stacks_in_17209 .link_effect18stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17209 .link_effect18stacks_in_17209 {
}

#stacks_in_17209 .link_effect18stacks_in_17209 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17209 .link_effect18stacks_in_17209 a::before,
#stacks_in_17209 .link_effect18stacks_in_17209 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17209 .link_effect18stacks_in_17209 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17209 .link_effect18stacks_in_17209 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17209 .link_effect18stacks_in_17209 a:hover,
#stacks_in_17209 .link_effect18stacks_in_17209 a:focus {
	color: #fff;
}

#stacks_in_17209 .link_effect18stacks_in_17209 a:hover::before,
#stacks_in_17209 .link_effect18stacks_in_17209 a:focus::before,
#stacks_in_17209 .link_effect18stacks_in_17209 a:hover::after,
#stacks_in_17209 .link_effect18stacks_in_17209 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17209 .link_effect19stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect19stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect19stacks_in_17209 a::before,
#stacks_in_17209 .link_effect19stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17209 a {
}

.link_effect19stacks_in_17209 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17209 a:hover::after,
.link_effect19stacks_in_17209 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17209 .link_effect20stacks_in_17209 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17209 .link_effect20stacks_in_17209 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17209 .link_effect20stacks_in_17209 a::before,
#stacks_in_17209 .link_effect20stacks_in_17209 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17209 a {
}

.link_effect20stacks_in_17209 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17209 a:hover::after,
.link_effect20stacks_in_17209 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17211 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17213 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17213 .borderbuttonthing, #stacks_in_17213 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17213 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17213 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17213 {
	margin: 20px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17218Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17218Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17218Calligrapher h6, .stacks_in_17218Calligrapher h5, .stacks_in_17218Calligrapher h4, .stacks_in_17218Calligrapher h3, .stacks_in_17218Calligrapher h2, .stacks_in_17218Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17218Calligrapher, .stacks_in_17218Calligrapher h1, .stacks_in_17218Calligrapher h2, .stacks_in_17218Calligrapher h3, .stacks_in_17218Calligrapher h4, .stacks_in_17218Calligrapher h5, .stacks_in_17218Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17218targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17218Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17218Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17218Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17218Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17218 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17220 a:before, .link_effect1stacks_in_17220 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17220 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17220 a:hover:before, .link_effect1stacks_in_17220 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17220 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17220 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17220 .link_effect2stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17220 .link_effect2stacks_in_17220 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17220 .link_effect3stacks_in_17220 {
  	text-decoration: none;
}

#stacks_in_17220 .link_effect3stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17220 .link_effect3stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect3stacks_in_17220 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17220 .link_effect4stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect4stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect4stacks_in_17220 a::before,
#stacks_in_17220 .link_effect%stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect4stacks_in_17220 {
}

#stacks_in_17220 .link_effect4stacks_in_17220 a {
	font-weight:normal;;
}

#stacks_in_17220 .link_effect4stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17220 .link_effect4stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect4stacks_in_17220 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17220 .link_effect5stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect5stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect5stacks_in_17220 a::before,
#stacks_in_17220 .link_effect5stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect5stacks_in_17220 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17220 .link_effect5stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17220 .link_effect5stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect5stacks_in_17220 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17220 .link_effect6stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect6stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect6stacks_in_17220 a::before,
#stacks_in_17220 .link_effect6stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect6stacks_in_17220 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17220 .link_effect6stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17220 .link_effect6stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect6stacks_in_17220 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17220 .link_effect7stacks_in_17220 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect7stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect7stacks_in_17220 a::before,
#stacks_in_17220 .link_effect7stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect7stacks_in_17220 {
	position: relative;
}

#stacks_in_17220 .link_effect7stacks_in_17220 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17220 .link_effect7stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17220 .link_effect7stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect7stacks_in_17220 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17220 .link_effect8stacks_in_17220 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect8stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect8stacks_in_17220 a::before,
#stacks_in_17220 .link_effect8stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17220 .link_effect8stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17220 .link_effect8stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect8stacks_in_17220 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17220 .link_effect8stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17220 .link_effect8stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect8stacks_in_17220 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17220 .link_effect9stacks_in_17220 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect9stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect9stacks_in_17220 a::before,
#stacks_in_17220 .link_effect9stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect9stacks_in_17220 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17220 .link_effect9stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect9stacks_in_17220 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17220 .link_effect9stacks_in_17220 a::before,
#stacks_in_17220 .link_effect9stacks_in_17220 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17220 .link_effect9stacks_in_17220 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17220 .link_effect9stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect9stacks_in_17220 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17220 .link_effect9stacks_in_17220 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17220 .link_effect10stacks_in_17220 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect10stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect10stacks_in_17220 a::before,
#stacks_in_17220 .link_effect10stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect10stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17220 .link_effect10stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect10stacks_in_17220 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17220 .link_effect10stacks_in_17220 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17220 .link_effect10stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect10stacks_in_17220 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17220 .link_effect11stacks_in_17220 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17220 .link_effect11stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect11stacks_in_17220 a::before,
#stacks_in_17220 .link_effect11stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect11stacks_in_17220 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17220 .link_effect11stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect11stacks_in_17220 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17220 .link_effect11stacks_in_17220 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17220 .link_effect11stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect11stacks_in_17220 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17220 .link_effect12stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect12stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect12stacks_in_17220 a::before,
#stacks_in_17220 .link_effect12stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect12stacks_in_17220 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17220 .link_effect12stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect12stacks_in_17220 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17220 .link_effect12stacks_in_17220 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17220 .link_effect12stacks_in_17220 a,
#stacks_in_17220 .link_effect12stacks_in_17220 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17220 .link_effect12stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect12stacks_in_17220 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17220 .link_effect13stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect13stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect13stacks_in_17220 a::before,
#stacks_in_17220 .link_effect13stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect13stacks_in_17220 {
}

#stacks_in_17220 .link_effect13stacks_in_17220 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17220 .link_effect13stacks_in_17220 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17220 .link_effect13stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect13stacks_in_17220 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17220 .link_effect14stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect14stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect14stacks_in_17220 a::before,
#stacks_in_17220 .link_effect14stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect14stacks_in_17220 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17220 .link_effect14stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect14stacks_in_17220 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17220 .link_effect14stacks_in_17220 a::before,
#stacks_in_17220 .link_effect14stacks_in_17220 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17220 .link_effect14stacks_in_17220 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17220 .link_effect14stacks_in_17220 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17220 .link_effect14stacks_in_17220 a:hover::after,
#stacks_in_17220 .link_effect14stacks_in_17220 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17220 .link_effect15stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect15stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect15stacks_in_17220 a::before,
#stacks_in_17220 .link_effect15stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect15stacks_in_17220 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17220 .link_effect15stacks_in_17220 a::before,
#stacks_in_17220 .link_effect15stacks_in_17220 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17220 .link_effect15stacks_in_17220 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17220 .link_effect15stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect15stacks_in_17220 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17220 .link_effect15stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect15stacks_in_17220 a:focus::before,
#stacks_in_17220 .link_effect15stacks_in_17220 a:hover::after,
#stacks_in_17220 .link_effect15stacks_in_17220 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17220 .link_effect15stacks_in_17220 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17220 .link_effect15stacks_in_17220 a:hover::after,
#stacks_in_17220 .link_effect15stacks_in_17220 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17220 .link_effect16stacks_in_17220 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a::before,
#stacks_in_17220 .link_effect16stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a:hover {
	color: #d04c3f;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a::before,
#stacks_in_17220 .link_effect16stacks_in_17220 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17220 .link_effect16stacks_in_17220 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17220 .link_effect16stacks_in_17220 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17220 .link_effect16stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect16stacks_in_17220 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17220 .link_effect17stacks_in_17220 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17220 .link_effect17stacks_in_17220 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17220 .link_effect17stacks_in_17220 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17220 .link_effect18stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect18stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect18stacks_in_17220 a::before,
#stacks_in_17220 .link_effect18stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17220 .link_effect18stacks_in_17220 {
}

#stacks_in_17220 .link_effect18stacks_in_17220 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17220 .link_effect18stacks_in_17220 a::before,
#stacks_in_17220 .link_effect18stacks_in_17220 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17220 .link_effect18stacks_in_17220 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17220 .link_effect18stacks_in_17220 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17220 .link_effect18stacks_in_17220 a:hover,
#stacks_in_17220 .link_effect18stacks_in_17220 a:focus {
	color: #fff;
}

#stacks_in_17220 .link_effect18stacks_in_17220 a:hover::before,
#stacks_in_17220 .link_effect18stacks_in_17220 a:focus::before,
#stacks_in_17220 .link_effect18stacks_in_17220 a:hover::after,
#stacks_in_17220 .link_effect18stacks_in_17220 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17220 .link_effect19stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect19stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect19stacks_in_17220 a::before,
#stacks_in_17220 .link_effect19stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17220 a {
}

.link_effect19stacks_in_17220 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17220 a:hover::after,
.link_effect19stacks_in_17220 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17220 .link_effect20stacks_in_17220 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17220 .link_effect20stacks_in_17220 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17220 .link_effect20stacks_in_17220 a::before,
#stacks_in_17220 .link_effect20stacks_in_17220 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17220 a {
}

.link_effect20stacks_in_17220 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17220 a:hover::after,
.link_effect20stacks_in_17220 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17222 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17224 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17224 .borderbuttonthing, #stacks_in_17224 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17224 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17224 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17224 {
	margin: 20px 0px 40px 0px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_17228 article,
#stacks_in_17228 aside,
#stacks_in_17228 details,
#stacks_in_17228 figcaption,
#stacks_in_17228 figure,
#stacks_in_17228 footer,
#stacks_in_17228 header,
#stacks_in_17228 hgroup,
#stacks_in_17228 main,
#stacks_in_17228 nav,
#stacks_in_17228 section,
#stacks_in_17228 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_17228 audio,
#stacks_in_17228 canvas,
#stacks_in_17228 progress,
#stacks_in_17228 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_17228 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_17228 [hidden],
#stacks_in_17228 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_17228 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_17228 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_17228 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_17228 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_17228 code,
#stacks_in_17228 kbd,
#stacks_in_17228 pre,
#stacks_in_17228 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_17228 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_17228 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_17228 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_17228 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_17228 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_17228 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_17228 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_17228 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_17228 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_17228 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_17228 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_17228 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_17228 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_17228 .left {
  float: left !important; }

#stacks_in_17228 .right {
  float: right !important; }

#stacks_in_17228 .clearfix:before,
#stacks_in_17228 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_17228 .clearfix:after {
  clear: both; }

#stacks_in_17228 .hide {
  display: none; }

#stacks_in_17228 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_17228 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_17228 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_17228 select {
  width: 100%; }

#stacks_in_17228 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_17228 .row:before,
#stacks_in_17228 .row:after {
  content: " ";
  display: table; }

#stacks_in_17228 .row:after {
  clear: both; }

#stacks_in_17228 .row.collapse > .column,
#stacks_in_17228 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_17228 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_17228 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_17228 .row .row:before,
#stacks_in_17228 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_17228 .row .row:after {
  clear: both; }

#stacks_in_17228 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_17228 .row .row.collapse:before,
#stacks_in_17228 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_17228 .row .row.collapse:after {
  clear: both; }

#stacks_in_17228 .column,
#stacks_in_17228 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_17228 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_17228 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_17228 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17228 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17228 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17228 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17228 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17228 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17228 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17228 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17228 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17228 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17228 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17228 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17228 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17228 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17228 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17228 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17228 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17228 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17228 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17228 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17228 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17228 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17228 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17228 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17228 .column,
  #stacks_in_17228 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17228 .small-1 {
    width: 8.33333%; }

  #stacks_in_17228 .small-2 {
    width: 16.66667%; }

  #stacks_in_17228 .small-3 {
    width: 25%; }

  #stacks_in_17228 .small-4 {
    width: 33.33333%; }

  #stacks_in_17228 .small-5 {
    width: 41.66667%; }

  #stacks_in_17228 .small-6 {
    width: 50%; }

  #stacks_in_17228 .small-7 {
    width: 58.33333%; }

  #stacks_in_17228 .small-8 {
    width: 66.66667%; }

  #stacks_in_17228 .small-9 {
    width: 75%; }

  #stacks_in_17228 .small-10 {
    width: 83.33333%; }

  #stacks_in_17228 .small-11 {
    width: 91.66667%; }

  #stacks_in_17228 .small-12 {
    width: 100%; }

  #stacks_in_17228 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17228 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17228 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17228 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17228 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17228 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17228 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17228 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17228 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17228 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17228 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17228 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17228 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17228 .column.small-centered,
  #stacks_in_17228 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17228 .column.small-uncentered,
  #stacks_in_17228 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17228 .column.small-centered:last-child,
  #stacks_in_17228 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_17228 .column.small-uncentered:last-child,
  #stacks_in_17228 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_17228 .column.small-uncentered.opposite,
  #stacks_in_17228 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_17228 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17228 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17228 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17228 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17228 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17228 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17228 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17228 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17228 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17228 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17228 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17228 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17228 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17228 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17228 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17228 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17228 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17228 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17228 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17228 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17228 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17228 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17228 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17228 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17228 .column,
  #stacks_in_17228 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17228 .medium-1 {
    width: 8.33333%; }

  #stacks_in_17228 .medium-2 {
    width: 16.66667%; }

  #stacks_in_17228 .medium-3 {
    width: 25%; }

  #stacks_in_17228 .medium-4 {
    width: 33.33333%; }

  #stacks_in_17228 .medium-5 {
    width: 41.66667%; }

  #stacks_in_17228 .medium-6 {
    width: 50%; }

  #stacks_in_17228 .medium-7 {
    width: 58.33333%; }

  #stacks_in_17228 .medium-8 {
    width: 66.66667%; }

  #stacks_in_17228 .medium-9 {
    width: 75%; }

  #stacks_in_17228 .medium-10 {
    width: 83.33333%; }

  #stacks_in_17228 .medium-11 {
    width: 91.66667%; }

  #stacks_in_17228 .medium-12 {
    width: 100%; }

  #stacks_in_17228 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17228 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17228 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17228 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17228 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17228 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17228 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17228 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17228 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17228 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17228 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17228 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17228 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17228 .column.medium-centered,
  #stacks_in_17228 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17228 .column.medium-uncentered,
  #stacks_in_17228 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17228 .column.medium-centered:last-child,
  #stacks_in_17228 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_17228 .column.medium-uncentered:last-child,
  #stacks_in_17228 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_17228 .column.medium-uncentered.opposite,
  #stacks_in_17228 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_17228 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17228 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17228 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17228 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17228 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17228 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17228 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17228 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17228 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17228 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17228 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17228 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17228 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17228 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17228 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17228 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17228 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17228 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17228 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17228 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17228 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17228 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17228 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17228 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_17228 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17228 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17228 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17228 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17228 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17228 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17228 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17228 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17228 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17228 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17228 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17228 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17228 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17228 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17228 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17228 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17228 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17228 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17228 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17228 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17228 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17228 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17228 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17228 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_17228 .column,
  #stacks_in_17228 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_17228 .large-1 {
    width: 8.33333%; }

  #stacks_in_17228 .large-2 {
    width: 16.66667%; }

  #stacks_in_17228 .large-3 {
    width: 25%; }

  #stacks_in_17228 .large-4 {
    width: 33.33333%; }

  #stacks_in_17228 .large-5 {
    width: 41.66667%; }

  #stacks_in_17228 .large-6 {
    width: 50%; }

  #stacks_in_17228 .large-7 {
    width: 58.33333%; }

  #stacks_in_17228 .large-8 {
    width: 66.66667%; }

  #stacks_in_17228 .large-9 {
    width: 75%; }

  #stacks_in_17228 .large-10 {
    width: 83.33333%; }

  #stacks_in_17228 .large-11 {
    width: 91.66667%; }

  #stacks_in_17228 .large-12 {
    width: 100%; }

  #stacks_in_17228 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_17228 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_17228 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_17228 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_17228 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_17228 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_17228 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_17228 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_17228 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_17228 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_17228 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_17228 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_17228 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_17228 .column.large-centered,
  #stacks_in_17228 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_17228 .column.large-uncentered,
  #stacks_in_17228 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_17228 .column.large-centered:last-child,
  #stacks_in_17228 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_17228 .column.large-uncentered:last-child,
  #stacks_in_17228 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_17228 .column.large-uncentered.opposite,
  #stacks_in_17228 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_17228 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_17228 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_17228 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_17228 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_17228 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_17228 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_17228 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_17228 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_17228 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_17228 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_17228 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_17228 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_17228 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_17228 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_17228 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_17228 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_17228 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_17228 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_17228 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_17228 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_17228 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_17228 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_17228 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_17228 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_17228 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_17228 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_17228 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_17228 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_17228 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_17228 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_17228 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_17228 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17228 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17228 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_17228 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17228 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17228 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_17228 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_17228 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_17228 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_17228 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17232Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17232Calligrapher h6, .stacks_in_17232Calligrapher h5, .stacks_in_17232Calligrapher h4, .stacks_in_17232Calligrapher h3, .stacks_in_17232Calligrapher h2, .stacks_in_17232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17232Calligrapher, .stacks_in_17232Calligrapher h1, .stacks_in_17232Calligrapher h2, .stacks_in_17232Calligrapher h3, .stacks_in_17232Calligrapher h4, .stacks_in_17232Calligrapher h5, .stacks_in_17232Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17232Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17232 {
	margin:  15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17234 a:before, .link_effect1stacks_in_17234 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17234 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17234 a:hover:before, .link_effect1stacks_in_17234 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17234 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17234 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17234 .link_effect2stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17234 .link_effect2stacks_in_17234 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17234 .link_effect3stacks_in_17234 {
  	text-decoration: none;
}

#stacks_in_17234 .link_effect3stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17234 .link_effect3stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect3stacks_in_17234 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17234 .link_effect4stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect4stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect4stacks_in_17234 a::before,
#stacks_in_17234 .link_effect%stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect4stacks_in_17234 {
}

#stacks_in_17234 .link_effect4stacks_in_17234 a {
	font-weight:normal;;
}

#stacks_in_17234 .link_effect4stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17234 .link_effect4stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect4stacks_in_17234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17234 .link_effect5stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect5stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect5stacks_in_17234 a::before,
#stacks_in_17234 .link_effect5stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect5stacks_in_17234 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17234 .link_effect5stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17234 .link_effect5stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect5stacks_in_17234 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17234 .link_effect6stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect6stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect6stacks_in_17234 a::before,
#stacks_in_17234 .link_effect6stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect6stacks_in_17234 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17234 .link_effect6stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17234 .link_effect6stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect6stacks_in_17234 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17234 .link_effect7stacks_in_17234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect7stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect7stacks_in_17234 a::before,
#stacks_in_17234 .link_effect7stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect7stacks_in_17234 {
	position: relative;
}

#stacks_in_17234 .link_effect7stacks_in_17234 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17234 .link_effect7stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17234 .link_effect7stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect7stacks_in_17234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17234 .link_effect8stacks_in_17234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect8stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect8stacks_in_17234 a::before,
#stacks_in_17234 .link_effect8stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17234 .link_effect8stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17234 .link_effect8stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect8stacks_in_17234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17234 .link_effect8stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17234 .link_effect8stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect8stacks_in_17234 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17234 .link_effect9stacks_in_17234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect9stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect9stacks_in_17234 a::before,
#stacks_in_17234 .link_effect9stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect9stacks_in_17234 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17234 .link_effect9stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect9stacks_in_17234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17234 .link_effect9stacks_in_17234 a::before,
#stacks_in_17234 .link_effect9stacks_in_17234 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17234 .link_effect9stacks_in_17234 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17234 .link_effect9stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect9stacks_in_17234 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17234 .link_effect9stacks_in_17234 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17234 .link_effect10stacks_in_17234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect10stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect10stacks_in_17234 a::before,
#stacks_in_17234 .link_effect10stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect10stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17234 .link_effect10stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect10stacks_in_17234 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17234 .link_effect10stacks_in_17234 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17234 .link_effect10stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect10stacks_in_17234 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17234 .link_effect11stacks_in_17234 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17234 .link_effect11stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect11stacks_in_17234 a::before,
#stacks_in_17234 .link_effect11stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect11stacks_in_17234 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17234 .link_effect11stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect11stacks_in_17234 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17234 .link_effect11stacks_in_17234 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17234 .link_effect11stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect11stacks_in_17234 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17234 .link_effect12stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect12stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect12stacks_in_17234 a::before,
#stacks_in_17234 .link_effect12stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect12stacks_in_17234 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17234 .link_effect12stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect12stacks_in_17234 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17234 .link_effect12stacks_in_17234 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17234 .link_effect12stacks_in_17234 a,
#stacks_in_17234 .link_effect12stacks_in_17234 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17234 .link_effect12stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect12stacks_in_17234 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17234 .link_effect13stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect13stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect13stacks_in_17234 a::before,
#stacks_in_17234 .link_effect13stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect13stacks_in_17234 {
}

#stacks_in_17234 .link_effect13stacks_in_17234 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17234 .link_effect13stacks_in_17234 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17234 .link_effect13stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect13stacks_in_17234 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17234 .link_effect14stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect14stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect14stacks_in_17234 a::before,
#stacks_in_17234 .link_effect14stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect14stacks_in_17234 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17234 .link_effect14stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect14stacks_in_17234 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17234 .link_effect14stacks_in_17234 a::before,
#stacks_in_17234 .link_effect14stacks_in_17234 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17234 .link_effect14stacks_in_17234 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17234 .link_effect14stacks_in_17234 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17234 .link_effect14stacks_in_17234 a:hover::after,
#stacks_in_17234 .link_effect14stacks_in_17234 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17234 .link_effect15stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect15stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect15stacks_in_17234 a::before,
#stacks_in_17234 .link_effect15stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect15stacks_in_17234 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17234 .link_effect15stacks_in_17234 a::before,
#stacks_in_17234 .link_effect15stacks_in_17234 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17234 .link_effect15stacks_in_17234 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17234 .link_effect15stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect15stacks_in_17234 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17234 .link_effect15stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect15stacks_in_17234 a:focus::before,
#stacks_in_17234 .link_effect15stacks_in_17234 a:hover::after,
#stacks_in_17234 .link_effect15stacks_in_17234 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17234 .link_effect15stacks_in_17234 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17234 .link_effect15stacks_in_17234 a:hover::after,
#stacks_in_17234 .link_effect15stacks_in_17234 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17234 .link_effect16stacks_in_17234 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a::before,
#stacks_in_17234 .link_effect16stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a:hover {
	color: #d04c3f;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a::before,
#stacks_in_17234 .link_effect16stacks_in_17234 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17234 .link_effect16stacks_in_17234 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17234 .link_effect16stacks_in_17234 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17234 .link_effect16stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect16stacks_in_17234 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17234 .link_effect17stacks_in_17234 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17234 .link_effect17stacks_in_17234 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17234 .link_effect17stacks_in_17234 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17234 .link_effect18stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect18stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect18stacks_in_17234 a::before,
#stacks_in_17234 .link_effect18stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17234 .link_effect18stacks_in_17234 {
}

#stacks_in_17234 .link_effect18stacks_in_17234 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17234 .link_effect18stacks_in_17234 a::before,
#stacks_in_17234 .link_effect18stacks_in_17234 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17234 .link_effect18stacks_in_17234 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17234 .link_effect18stacks_in_17234 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17234 .link_effect18stacks_in_17234 a:hover,
#stacks_in_17234 .link_effect18stacks_in_17234 a:focus {
	color: #fff;
}

#stacks_in_17234 .link_effect18stacks_in_17234 a:hover::before,
#stacks_in_17234 .link_effect18stacks_in_17234 a:focus::before,
#stacks_in_17234 .link_effect18stacks_in_17234 a:hover::after,
#stacks_in_17234 .link_effect18stacks_in_17234 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17234 .link_effect19stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect19stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect19stacks_in_17234 a::before,
#stacks_in_17234 .link_effect19stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17234 a {
}

.link_effect19stacks_in_17234 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17234 a:hover::after,
.link_effect19stacks_in_17234 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17234 .link_effect20stacks_in_17234 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17234 .link_effect20stacks_in_17234 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17234 .link_effect20stacks_in_17234 a::before,
#stacks_in_17234 .link_effect20stacks_in_17234 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17234 a {
}

.link_effect20stacks_in_17234 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17234 a:hover::after,
.link_effect20stacks_in_17234 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17236 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17238 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17238 .borderbuttonthing, #stacks_in_17238 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17238 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17238 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17238 {
	margin: 30px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_17243Calligrapher{			font-size: 151% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !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_17243Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_17243Calligrapher h6, .stacks_in_17243Calligrapher h5, .stacks_in_17243Calligrapher h4, .stacks_in_17243Calligrapher h3, .stacks_in_17243Calligrapher h2, .stacks_in_17243Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_17243Calligrapher, .stacks_in_17243Calligrapher h1, .stacks_in_17243Calligrapher h2, .stacks_in_17243Calligrapher h3, .stacks_in_17243Calligrapher h4, .stacks_in_17243Calligrapher h5, .stacks_in_17243Calligrapher h6{	font-family: Garamond, serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_17243targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_17243Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_17243Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_17243Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_17243Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_17243 {
	margin:  14px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_17245 a:before, .link_effect1stacks_in_17245 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #000000 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_17245 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_17245 a:hover:before, .link_effect1stacks_in_17245 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_17245 a   {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_17245 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_17245 .link_effect2stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_17245 .link_effect2stacks_in_17245 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_17245 .link_effect3stacks_in_17245 {
  	text-decoration: none;
}

#stacks_in_17245 .link_effect3stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_17245 .link_effect3stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect3stacks_in_17245 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_17245 .link_effect4stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect4stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect4stacks_in_17245 a::before,
#stacks_in_17245 .link_effect%stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect4stacks_in_17245 {
}

#stacks_in_17245 .link_effect4stacks_in_17245 a {
	font-weight:normal;;
}

#stacks_in_17245 .link_effect4stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17245 .link_effect4stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect4stacks_in_17245 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_17245 .link_effect5stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect5stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect5stacks_in_17245 a::before,
#stacks_in_17245 .link_effect5stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect5stacks_in_17245 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_17245 .link_effect5stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_17245 .link_effect5stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect5stacks_in_17245 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_17245 .link_effect6stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect6stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect6stacks_in_17245 a::before,
#stacks_in_17245 .link_effect6stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect6stacks_in_17245 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17245 .link_effect6stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_17245 .link_effect6stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect6stacks_in_17245 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_17245 .link_effect7stacks_in_17245 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect7stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect7stacks_in_17245 a::before,
#stacks_in_17245 .link_effect7stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect7stacks_in_17245 {
	position: relative;
}

#stacks_in_17245 .link_effect7stacks_in_17245 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_17245 .link_effect7stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_17245 .link_effect7stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect7stacks_in_17245 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_17245 .link_effect8stacks_in_17245 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect8stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect8stacks_in_17245 a::before,
#stacks_in_17245 .link_effect8stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_17245 .link_effect8stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_17245 .link_effect8stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect8stacks_in_17245 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17245 .link_effect8stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_17245 .link_effect8stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect8stacks_in_17245 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_17245 .link_effect9stacks_in_17245 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect9stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect9stacks_in_17245 a::before,
#stacks_in_17245 .link_effect9stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect9stacks_in_17245 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_17245 .link_effect9stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect9stacks_in_17245 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17245 .link_effect9stacks_in_17245 a::before,
#stacks_in_17245 .link_effect9stacks_in_17245 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_17245 .link_effect9stacks_in_17245 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_17245 .link_effect9stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect9stacks_in_17245 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_17245 .link_effect9stacks_in_17245 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_17245 .link_effect10stacks_in_17245 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect10stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect10stacks_in_17245 a::before,
#stacks_in_17245 .link_effect10stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect10stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_17245 .link_effect10stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect10stacks_in_17245 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17245 .link_effect10stacks_in_17245 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_17245 .link_effect10stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect10stacks_in_17245 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_17245 .link_effect11stacks_in_17245 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_17245 .link_effect11stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect11stacks_in_17245 a::before,
#stacks_in_17245 .link_effect11stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect11stacks_in_17245 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_17245 .link_effect11stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect11stacks_in_17245 a:focus {
	color: #DA4453 !important;
}

#stacks_in_17245 .link_effect11stacks_in_17245 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_17245 .link_effect11stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect11stacks_in_17245 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_17245 .link_effect12stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect12stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect12stacks_in_17245 a::before,
#stacks_in_17245 .link_effect12stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect12stacks_in_17245 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17245 .link_effect12stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect12stacks_in_17245 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_17245 .link_effect12stacks_in_17245 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_17245 .link_effect12stacks_in_17245 a,
#stacks_in_17245 .link_effect12stacks_in_17245 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_17245 .link_effect12stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect12stacks_in_17245 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_17245 .link_effect13stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect13stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect13stacks_in_17245 a::before,
#stacks_in_17245 .link_effect13stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect13stacks_in_17245 {
}

#stacks_in_17245 .link_effect13stacks_in_17245 a {
	
	color: #000000 !important;
		
	font-weight:normal;;
}

#stacks_in_17245 .link_effect13stacks_in_17245 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_17245 .link_effect13stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect13stacks_in_17245 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_17245 .link_effect14stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect14stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect14stacks_in_17245 a::before,
#stacks_in_17245 .link_effect14stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect14stacks_in_17245 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17245 .link_effect14stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect14stacks_in_17245 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_17245 .link_effect14stacks_in_17245 a::before,
#stacks_in_17245 .link_effect14stacks_in_17245 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_17245 .link_effect14stacks_in_17245 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_17245 .link_effect14stacks_in_17245 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_17245 .link_effect14stacks_in_17245 a:hover::after,
#stacks_in_17245 .link_effect14stacks_in_17245 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_17245 .link_effect15stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect15stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect15stacks_in_17245 a::before,
#stacks_in_17245 .link_effect15stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect15stacks_in_17245 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_17245 .link_effect15stacks_in_17245 a::before,
#stacks_in_17245 .link_effect15stacks_in_17245 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_17245 .link_effect15stacks_in_17245 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_17245 .link_effect15stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect15stacks_in_17245 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_17245 .link_effect15stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect15stacks_in_17245 a:focus::before,
#stacks_in_17245 .link_effect15stacks_in_17245 a:hover::after,
#stacks_in_17245 .link_effect15stacks_in_17245 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_17245 .link_effect15stacks_in_17245 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_17245 .link_effect15stacks_in_17245 a:hover::after,
#stacks_in_17245 .link_effect15stacks_in_17245 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_17245 .link_effect16stacks_in_17245 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a::before,
#stacks_in_17245 .link_effect16stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a:hover {
	color: #d04c3f;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a::before,
#stacks_in_17245 .link_effect16stacks_in_17245 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_17245 .link_effect16stacks_in_17245 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_17245 .link_effect16stacks_in_17245 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_17245 .link_effect16stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect16stacks_in_17245 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_17245 .link_effect17stacks_in_17245 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #000000 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_17245 .link_effect17stacks_in_17245 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_17245 .link_effect17stacks_in_17245 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_17245 .link_effect18stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect18stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect18stacks_in_17245 a::before,
#stacks_in_17245 .link_effect18stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_17245 .link_effect18stacks_in_17245 {
}

#stacks_in_17245 .link_effect18stacks_in_17245 a {
	padding: 0 ;
	color: #000000;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_17245 .link_effect18stacks_in_17245 a::before,
#stacks_in_17245 .link_effect18stacks_in_17245 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000000;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17245 .link_effect18stacks_in_17245 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_17245 .link_effect18stacks_in_17245 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_17245 .link_effect18stacks_in_17245 a:hover,
#stacks_in_17245 .link_effect18stacks_in_17245 a:focus {
	color: #fff;
}

#stacks_in_17245 .link_effect18stacks_in_17245 a:hover::before,
#stacks_in_17245 .link_effect18stacks_in_17245 a:focus::before,
#stacks_in_17245 .link_effect18stacks_in_17245 a:hover::after,
#stacks_in_17245 .link_effect18stacks_in_17245 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_17245 .link_effect19stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect19stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect19stacks_in_17245 a::before,
#stacks_in_17245 .link_effect19stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_17245 a {
}

.link_effect19stacks_in_17245 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_17245 a:hover::after,
.link_effect19stacks_in_17245 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_17245 .link_effect20stacks_in_17245 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_17245 .link_effect20stacks_in_17245 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #000000 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_17245 .link_effect20stacks_in_17245 a::before,
#stacks_in_17245 .link_effect20stacks_in_17245 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_17245 a {
}

.link_effect20stacks_in_17245 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_17245 a:hover::after,
.link_effect20stacks_in_17245 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_17247 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17249 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17249 .borderbuttonthing, #stacks_in_17249 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #E632C8;
	color: #E632C8;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17249 .borderbuttonthing:hover {
	background: #E632C8;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17249 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17249 {
	margin: 30px 0px 20px 0px;
}
 #stacks_in_17239 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_17239 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-moz-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-ms-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-o-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:linear-gradient(left,#CCCCCC,#333333,#CCCCCC)}#stacks_in_17239 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_17239 hr.dashed_fade{border-bottom:1px dashed #7E7E7E;background:#333333}#stacks_in_17239 hr.dotted_fade{border-bottom:1px dotted #7E7E7E;background:#333333}#stacks_in_17239 hr.dashed{border-bottom:1px dashed #333333}#stacks_in_17239 hr.dotted{border-bottom:1px dotted #7E7E7E}#stacks_in_17239 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_17239 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #333333}#stacks_in_17239 hr.cloudy:after{content:"\00a0"}#stacks_in_17239 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_17239 hr.inset_two{border-top:1px solid #CCCCCC;border-bottom:1px solid #333333}#stacks_in_17239 hr.inset_three{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_17239 hr.inset_four{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_17239 hr.flared{height:30px;border-style:solid;border-color:#333333;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_17239 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#333333;border-width:0 0 1px 0;border-radius:20px}#stacks_in_17239 hr.glyph{padding:0;border:0;border-top:1px double #333333;color:#333333;text-align:center;margin:1em 0}#stacks_in_17239 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_17239 {
	margin: 25px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_17253 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_17253 .borderbuttonthing, #stacks_in_17253 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 48px;
	padding: 0 10px;
	font-size: 13px;
	border: 1px solid #666666;
	color: #666666;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:normal;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
			border-radius: 50px;
}

#stacks_in_17253 .borderbuttonthing:hover {
	background: #666666;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_17253 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_17253 {
	margin: 20px 0px 0px 0px;
}
