
@font-face {
    font-family: 'FlatButtonLato';
    src: url('../files/font/lato-light-webfont.eot');
    src: url('../files/font/lato-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/lato-light-webfont.woff') format('woff'),
         url('../files/font/lato-light-webfont.ttf') format('truetype'),
         url('../files/font/lato-light-webfont.svg#latolight') format('svg');
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: 'FlatButtonOpenSans';
    src: url('../files/font/opensans-regular-webfont.eot');
    src: url('../files/font/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/opensans-regular-webfont.woff') format('woff'),
         url('../files/font/opensans-regular-webfont.ttf') format('truetype'),
         url('../files/font/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'FlatButtonNoto';
    src: url('../files/font/notoserif-regular-webfont.eot');
    src: url('../files/font/notoserif-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/notoserif-regular-webfont.woff') format('woff'),
         url('../files/font/notoserif-regular-webfont.ttf') format('truetype'),
         url('../files/font/notoserif-regular-webfont.svg#noto_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.elxr_bounce {
  -webkit-animation-name: elxr_bounce;
  animation-name: elxr_bounce;
}

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.elxr_flash {
  -webkit-animation-name: elxr_flash;
  animation-name: elxr_flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_pulse {
  -webkit-animation-name: elxr_pulse;
  animation-name: elxr_pulse;
}

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_rubberBand {
  -webkit-animation-name: elxr_rubberBand;
  animation-name: elxr_rubberBand;
}

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.elxr_shake {
  -webkit-animation-name: elxr_shake;
  animation-name: elxr_shake;
}

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.elxr_swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: elxr_swing;
  animation-name: elxr_swing;
}

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.elxr_tada {
  -webkit-animation-name: elxr_tada;
  animation-name: elxr_tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.elxr_wobble {
  -webkit-animation-name: elxr_wobble;
  animation-name: elxr_wobble;
}

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_bounceIn {
  -webkit-animation-name: elxr_bounceIn;
  animation-name: elxr_bounceIn;
}

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInDown {
  -webkit-animation-name: elxr_bounceInDown;
  animation-name: elxr_bounceInDown;
}

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInLeft {
  -webkit-animation-name: elxr_bounceInLeft;
  animation-name: elxr_bounceInLeft;
}

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInRight {
  -webkit-animation-name: elxr_bounceInRight;
  animation-name: elxr_bounceInRight;
}

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInUp {
  -webkit-animation-name: elxr_bounceInUp;
  animation-name: elxr_bounceInUp;
}

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.elxr_bounceOut {
  -webkit-animation-name: elxr_bounceOut;
  animation-name: elxr_bounceOut;
}

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_bounceOutDown {
  -webkit-animation-name: elxr_bounceOutDown;
  animation-name: elxr_bounceOutDown;
}

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_bounceOutLeft {
  -webkit-animation-name: elxr_bounceOutLeft;
  animation-name: elxr_bounceOutLeft;
}

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_bounceOutRight {
  -webkit-animation-name: elxr_bounceOutRight;
  animation-name: elxr_bounceOutRight;
}

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_bounceOutUp {
  -webkit-animation-name: elxr_bounceOutUp;
  animation-name: elxr_bounceOutUp;
}

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_fadeIn {
  -webkit-animation-name: elxr_fadeIn;
  animation-name: elxr_fadeIn;
}

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDown {
  -webkit-animation-name: elxr_fadeInDown;
  animation-name: elxr_fadeInDown;
}

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDownBig {
  -webkit-animation-name: elxr_fadeInDownBig;
  animation-name: elxr_fadeInDownBig;
}

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeft {
  -webkit-animation-name: elxr_fadeInLeft;
  animation-name: elxr_fadeInLeft;
}

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeftBig {
  -webkit-animation-name: elxr_fadeInLeftBig;
  animation-name: elxr_fadeInLeftBig;
}

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRight {
  -webkit-animation-name: elxr_fadeInRight;
  animation-name: elxr_fadeInRight;
}

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRightBig {
  -webkit-animation-name: elxr_fadeInRightBig;
  animation-name: elxr_fadeInRightBig;
}

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUp {
  -webkit-animation-name: elxr_fadeInUp;
  animation-name: elxr_fadeInUp;
}

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUpBig {
  -webkit-animation-name: elxr_fadeInUpBig;
  animation-name: elxr_fadeInUpBig;
}

@-webkit-keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.elxr_fadeOutDown {
  -webkit-animation-name: elxr_fadeOutDown;
  animation-name: elxr_fadeOutDown;
}

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_fadeOutDownBig {
  -webkit-animation-name: elxr_fadeOutDownBig;
  animation-name: elxr_fadeOutDownBig;
}

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.elxr_fadeOutLeft {
  -webkit-animation-name: elxr_fadeOutLeft;
  animation-name: elxr_fadeOutLeft;
}

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_fadeOutLeftBig {
  -webkit-animation-name: elxr_fadeOutLeftBig;
  animation-name: elxr_fadeOutLeftBig;
}

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.elxr_fadeOutRight {
  -webkit-animation-name: elxr_fadeOutRight;
  animation-name: elxr_fadeOutRight;
}

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_fadeOutRightBig {
  -webkit-animation-name: elxr_fadeOutRightBig;
  animation-name: elxr_fadeOutRightBig;
}

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.elxr_fadeOutUp {
  -webkit-animation-name: elxr_fadeOutUp;
  animation-name: elxr_fadeOutUp;
}

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_fadeOutUpBig {
  -webkit-animation-name: elxr_fadeOutUpBig;
  animation-name: elxr_fadeOutUpBig;
}

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.elxr_flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: elxr_flip;
  animation-name: elxr_flip;
}

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.elxr_flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInX;
  animation-name: elxr_flipInX;
}

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.elxr_flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInY;
  animation-name: elxr_flipInY;
}

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.elxr_flipOutX {
  -webkit-animation-name: elxr_flipOutX;
  animation-name: elxr_flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.elxr_flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipOutY;
  animation-name: elxr_flipOutY;
}

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.elxr_lightSpeedIn {
  -webkit-animation-name: elxr_lightSpeedIn;
  animation-name: elxr_lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.elxr_lightSpeedOut {
  -webkit-animation-name: elxr_lightSpeedOut;
  animation-name: elxr_lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateIn {
  -webkit-animation-name: elxr_rotateIn;
  animation-name: elxr_rotateIn;
}

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownLeft {
  -webkit-animation-name: elxr_rotateInDownLeft;
  animation-name: elxr_rotateInDownLeft;
}

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownRight {
  -webkit-animation-name: elxr_rotateInDownRight;
  animation-name: elxr_rotateInDownRight;
}

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpLeft {
  -webkit-animation-name: elxr_rotateInUpLeft;
  animation-name: elxr_rotateInUpLeft;
}

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpRight {
  -webkit-animation-name: elxr_rotateInUpRight;
  animation-name: elxr_rotateInUpRight;
}

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.elxr_rotateOut {
  -webkit-animation-name: elxr_rotateOut;
  animation-name: elxr_rotateOut;
}

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownLeft {
  -webkit-animation-name: elxr_rotateOutDownLeft;
  animation-name: elxr_rotateOutDownLeft;
}

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownRight {
  -webkit-animation-name: elxr_rotateOutDownRight;
  animation-name: elxr_rotateOutDownRight;
}

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpLeft {
  -webkit-animation-name: elxr_rotateOutUpLeft;
  animation-name: elxr_rotateOutUpLeft;
}

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpRight {
  -webkit-animation-name: elxr_rotateOutUpRight;
  animation-name: elxr_rotateOutUpRight;
}

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInDown {
  -webkit-animation-name: elxr_slideInDown;
  animation-name: elxr_slideInDown;
}

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInLeft {
  -webkit-animation-name: elxr_slideInLeft;
  animation-name: elxr_slideInLeft;
}

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInRight {
  -webkit-animation-name: elxr_slideInRight;
  animation-name: elxr_slideInRight;
}

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_slideOutLeft {
  -webkit-animation-name: elxr_slideOutLeft;
  animation-name: elxr_slideOutLeft;
}

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_slideOutRight {
  -webkit-animation-name: elxr_slideOutRight;
  animation-name: elxr_slideOutRight;
}

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_slideOutUp {
  -webkit-animation-name: elxr_slideOutUp;
  animation-name: elxr_slideOutUp;
}

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInUp {
  -webkit-animation-name: elxr_slideInUp;
  animation-name: elxr_slideInUp;
}

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_slideOutDown {
  -webkit-animation-name: elxr_slideOutDown;
  animation-name: elxr_slideOutDown;
}

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.elxr_hinge {
  -webkit-animation-name: elxr_hinge;
  animation-name: elxr_hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.elxr_rollIn {
  -webkit-animation-name: elxr_rollIn;
  animation-name: elxr_rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.elxr_rollOut {
  -webkit-animation-name: elxr_rollOut;
  animation-name: elxr_rollOut;
}

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.elxr_zoomIn {
  -webkit-animation-name: elxr_zoomIn;
  animation-name: elxr_zoomIn;
}

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInDown {
  -webkit-animation-name: elxr_zoomInDown;
  animation-name: elxr_zoomInDown;
}

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInLeft {
  -webkit-animation-name: elxr_zoomInLeft;
  animation-name: elxr_zoomInLeft;
}

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInRight {
  -webkit-animation-name: elxr_zoomInRight;
  animation-name: elxr_zoomInRight;
}

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInUp {
  -webkit-animation-name: elxr_zoomInUp;
  animation-name: elxr_zoomInUp;
}

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.elxr_zoomOut {
  -webkit-animation-name: elxr_zoomOut;
  animation-name: elxr_zoomOut;
}

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.elxr_zoomOutDown {
  -webkit-animation-name: elxr_zoomOutDown;
  animation-name: elxr_zoomOutDown;
}

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.elxr_zoomOutLeft {
  -webkit-animation-name: elxr_zoomOutLeft;
  animation-name: elxr_zoomOutLeft;
}

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.elxr_zoomOutRight {
  -webkit-animation-name: elxr_zoomOutRight;
  animation-name: elxr_zoomOutRight;
}

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.elxr_zoomOutUp {
  -webkit-animation-name: elxr_zoomOutUp;
  animation-name: elxr_zoomOutUp;
}



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

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

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

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

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

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

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
@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: 0.5s;
  animation-duration: 0.5s;
  -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_bricks_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_bricks_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_bricks_bounce {
  -webkit-animation-name: elxr_bricks_bounce;
  animation-name: elxr_bricks_bounce;
}

@-webkit-keyframes elxr_bricks_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_bricks_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.elxr_bricks_flash {
  -webkit-animation-name: elxr_bricks_flash;
  animation-name: elxr_bricks_flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_pulse {
  -webkit-animation-name: elxr_bricks_pulse;
  animation-name: elxr_bricks_pulse;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rubberBand {
  -webkit-animation-name: elxr_bricks_rubberBand;
  animation-name: elxr_bricks_rubberBand;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_shake {
  -webkit-animation-name: elxr_bricks_shake;
  animation-name: elxr_bricks_shake;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: elxr_bricks_swing;
  animation-name: elxr_bricks_swing;
}

@-webkit-keyframes elxr_bricks_tada {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    opacity: 1;
    -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% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_bricks_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_bricks_tada {
  -webkit-animation-name: elxr_bricks_tada;
  animation-name: elxr_bricks_tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_wobble {
  -webkit-animation-name: elxr_bricks_wobble;
  animation-name: elxr_bricks_wobble;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceIn {
  -webkit-animation-name: elxr_bricks_bounceIn;
  animation-name: elxr_bricks_bounceIn;
}

@-webkit-keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bricks_bounceInDown {
  -webkit-animation-name: elxr_bricks_bounceInDown;
  animation-name: elxr_bricks_bounceInDown;
}

@-webkit-keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bricks_bounceInLeft {
  -webkit-animation-name: elxr_bricks_bounceInLeft;
  animation-name: elxr_bricks_bounceInLeft;
}

@-webkit-keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bricks_bounceInRight {
  -webkit-animation-name: elxr_bricks_bounceInRight;
  animation-name: elxr_bricks_bounceInRight;
}

@-webkit-keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bricks_bounceInUp {
  -webkit-animation-name: elxr_bricks_bounceInUp;
  animation-name: elxr_bricks_bounceInUp;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceOut {
  -webkit-animation-name: elxr_bricks_bounceOut;
  animation-name: elxr_bricks_bounceOut;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceOutDown {
  -webkit-animation-name: elxr_bricks_bounceOutDown;
  animation-name: elxr_bricks_bounceOutDown;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceOutLeft {
  -webkit-animation-name: elxr_bricks_bounceOutLeft;
  animation-name: elxr_bricks_bounceOutLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceOutRight {
  -webkit-animation-name: elxr_bricks_bounceOutRight;
  animation-name: elxr_bricks_bounceOutRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_bounceOutUp {
  -webkit-animation-name: elxr_bricks_bounceOutUp;
  animation-name: elxr_bricks_bounceOutUp;
}

@-webkit-keyframes elxr_bricks_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_bricks_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_bricks_fadeIn {
  -webkit-animation-name: elxr_bricks_fadeIn;
  animation-name: elxr_bricks_fadeIn;
}

@-webkit-keyframes elxr_bricks_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInDown {
  -webkit-animation-name: elxr_bricks_fadeInDown;
  animation-name: elxr_bricks_fadeInDown;
}

@-webkit-keyframes elxr_bricks_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInDownBig {
  -webkit-animation-name: elxr_bricks_fadeInDownBig;
  animation-name: elxr_bricks_fadeInDownBig;
}

@-webkit-keyframes elxr_bricks_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInLeft {
  -webkit-animation-name: elxr_bricks_fadeInLeft;
  animation-name: elxr_bricks_fadeInLeft;
}

@-webkit-keyframes elxr_bricks_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInLeftBig {
  -webkit-animation-name: elxr_bricks_fadeInLeftBig;
  animation-name: elxr_bricks_fadeInLeftBig;
}

@-webkit-keyframes elxr_bricks_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInRight {
  -webkit-animation-name: elxr_bricks_fadeInRight;
  animation-name: elxr_bricks_fadeInRight;
}

@-webkit-keyframes elxr_bricks_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInRightBig {
  -webkit-animation-name: elxr_bricks_fadeInRightBig;
  animation-name: elxr_bricks_fadeInRightBig;
}

@-webkit-keyframes elxr_bricks_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInUp {
  -webkit-animation-name: elxr_bricks_fadeInUp;
  animation-name: elxr_bricks_fadeInUp;
}

@-webkit-keyframes elxr_bricks_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_fadeInUpBig {
  -webkit-animation-name: elxr_bricks_fadeInUpBig;
  animation-name: elxr_bricks_fadeInUpBig;
}

@-webkit-keyframes elxr_bricks_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_bricks_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_bricks_fadeOut {
  -webkit-animation-name: elxr_bricks_fadeOut;
  animation-name: elxr_bricks_fadeOut;
}

@-webkit-keyframes elxr_bricks_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutDown {
  -webkit-animation-name: elxr_bricks_fadeOutDown;
  animation-name: elxr_bricks_fadeOutDown;
}

@-webkit-keyframes elxr_bricks_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutDownBig {
  -webkit-animation-name: elxr_bricks_fadeOutDownBig;
  animation-name: elxr_bricks_fadeOutDownBig;
}

@-webkit-keyframes elxr_bricks_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutLeft {
  -webkit-animation-name: elxr_bricks_fadeOutLeft;
  animation-name: elxr_bricks_fadeOutLeft;
}

@-webkit-keyframes elxr_bricks_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutLeftBig {
  -webkit-animation-name: elxr_bricks_fadeOutLeftBig;
  animation-name: elxr_bricks_fadeOutLeftBig;
}

@-webkit-keyframes elxr_bricks_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutRight {
  -webkit-animation-name: elxr_bricks_fadeOutRight;
  animation-name: elxr_bricks_fadeOutRight;
}

@-webkit-keyframes elxr_bricks_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutRightBig {
  -webkit-animation-name: elxr_bricks_fadeOutRightBig;
  animation-name: elxr_bricks_fadeOutRightBig;
}

@-webkit-keyframes elxr_bricks_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutUp {
  -webkit-animation-name: elxr_bricks_fadeOutUp;
  animation-name: elxr_bricks_fadeOutUp;
}

@-webkit-keyframes elxr_bricks_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bricks_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_bricks_fadeOutUpBig {
  -webkit-animation-name: elxr_bricks_fadeOutUpBig;
  animation-name: elxr_bricks_fadeOutUpBig;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: elxr_bricks_flip;
  animation-name: elxr_bricks_flip;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_bricks_flipInX;
  animation-name: elxr_bricks_flipInX;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_bricks_flipInY;
  animation-name: elxr_bricks_flipInY;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_flipOutX {
  -webkit-animation-name: elxr_bricks_flipOutX;
  animation-name: elxr_bricks_flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_bricks_flipOutY;
  animation-name: elxr_bricks_flipOutY;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_lightSpeedIn {
  -webkit-animation-name: elxr_bricks_lightSpeedIn;
  animation-name: elxr_bricks_lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_lightSpeedOut {
  -webkit-animation-name: elxr_bricks_lightSpeedOut;
  animation-name: elxr_bricks_lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateIn {
  -webkit-animation-name: elxr_bricks_rotateIn;
  animation-name: elxr_bricks_rotateIn;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateInDownLeft {
  -webkit-animation-name: elxr_bricks_rotateInDownLeft;
  animation-name: elxr_bricks_rotateInDownLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateInDownRight {
  -webkit-animation-name: elxr_bricks_rotateInDownRight;
  animation-name: elxr_bricks_rotateInDownRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateInUpLeft {
  -webkit-animation-name: elxr_bricks_rotateInUpLeft;
  animation-name: elxr_bricks_rotateInUpLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateInUpRight {
  -webkit-animation-name: elxr_bricks_rotateInUpRight;
  animation-name: elxr_bricks_rotateInUpRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateOut {
  -webkit-animation-name: elxr_bricks_rotateOut;
  animation-name: elxr_bricks_rotateOut;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateOutDownLeft {
  -webkit-animation-name: elxr_bricks_rotateOutDownLeft;
  animation-name: elxr_bricks_rotateOutDownLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateOutDownRight {
  -webkit-animation-name: elxr_bricks_rotateOutDownRight;
  animation-name: elxr_bricks_rotateOutDownRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateOutUpLeft {
  -webkit-animation-name: elxr_bricks_rotateOutUpLeft;
  animation-name: elxr_bricks_rotateOutUpLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rotateOutUpRight {
  -webkit-animation-name: elxr_bricks_rotateOutUpRight;
  animation-name: elxr_bricks_rotateOutUpRight;
}

@-webkit-keyframes elxr_bricks_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_slideInDown {
  -webkit-animation-name: elxr_bricks_slideInDown;
  animation-name: elxr_bricks_slideInDown;
}

@-webkit-keyframes elxr_bricks_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_slideInLeft {
  -webkit-animation-name: elxr_bricks_slideInLeft;
  animation-name: elxr_bricks_slideInLeft;
}

@-webkit-keyframes elxr_bricks_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bricks_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_bricks_slideInRight {
  -webkit-animation-name: elxr_bricks_slideInRight;
  animation-name: elxr_bricks_slideInRight;
}

@-webkit-keyframes elxr_bricks_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bricks_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_bricks_slideOutLeft {
  -webkit-animation-name: elxr_bricks_slideOutLeft;
  animation-name: elxr_bricks_slideOutLeft;
}

@-webkit-keyframes elxr_bricks_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bricks_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_bricks_slideOutRight {
  -webkit-animation-name: elxr_bricks_slideOutRight;
  animation-name: elxr_bricks_slideOutRight;
}

@-webkit-keyframes elxr_bricks_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bricks_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_bricks_slideOutUp {
  -webkit-animation-name: elxr_bricks_slideOutUp;
  animation-name: elxr_bricks_slideOutUp;
}

@-webkit-keyframes elxr_bricks_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bricks_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_bricks_slideInUp {
  -webkit-animation-name: elxr_bricks_slideInUp;
  animation-name: elxr_bricks_slideInUp;
}

@-webkit-keyframes elxr_bricks_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bricks_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_bricks_slideOutDown {
  -webkit-animation-name: elxr_bricks_slideOutDown;
  animation-name: elxr_bricks_slideOutDown;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_hinge {
  -webkit-animation-name: elxr_bricks_hinge;
  animation-name: elxr_bricks_hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rollIn {
  -webkit-animation-name: elxr_bricks_rollIn;
  animation-name: elxr_bricks_rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_rollOut {
  -webkit-animation-name: elxr_bricks_rollOut;
  animation-name: elxr_bricks_rollOut;
}

@-webkit-keyframes elxr_bricks_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_bricks_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.elxr_bricks_zoomIn {
  -webkit-animation-name: elxr_bricks_zoomIn;
  animation-name: elxr_bricks_zoomIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes elxr_bricks_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;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_bricks_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;
  }

  100% {
    opacity: 1;
  }

}

.elxr_bricks_zoomInDown {
  -webkit-animation-name: elxr_bricks_zoomInDown;
  animation-name: elxr_bricks_zoomInDown;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomInLeft {
  -webkit-animation-name: elxr_bricks_zoomInLeft;
  animation-name: elxr_bricks_zoomInLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomInRight {
  -webkit-animation-name: elxr_bricks_zoomInRight;
  animation-name: elxr_bricks_zoomInRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomInUp {
  -webkit-animation-name: elxr_bricks_zoomInUp;
  animation-name: elxr_bricks_zoomInUp;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomOut {
  -webkit-animation-name: elxr_bricks_zoomOut;
  animation-name: elxr_bricks_zoomOut;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomOutDown {
  -webkit-animation-name: elxr_bricks_zoomOutDown;
  animation-name: elxr_bricks_zoomOutDown;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomOutLeft {
  -webkit-animation-name: elxr_bricks_zoomOutLeft;
  animation-name: elxr_bricks_zoomOutLeft;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomOutRight {
  -webkit-animation-name: elxr_bricks_zoomOutRight;
  animation-name: elxr_bricks_zoomOutRight;
}

@-webkit-keyframes elxr_bricks_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_bricks_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_bricks_zoomOutUp {
  -webkit-animation-name: elxr_bricks_zoomOutUp;
  animation-name: elxr_bricks_zoomOutUp;
}
#stacks_in_149537_16 div,#stacks_in_149537_16 .hTxt:not(.segment) div{font-size:0.90rem}@media all and (max-width:640px){#stacks_in_149537_16 div,#stacks_in_149537_16 .hTxt:not(.segment) div{font-size:0.80rem}}#stacks_in_149537_16 div,#stacks_in_149537_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149537_16 div a,#stacks_in_149537_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149537_16 div a:hover,#stacks_in_149537_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149537_16 small,#stacks_in_149537_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149537_16 .primary,#stacks_in_149537_16 .segment{display:inline-block}#stacks_in_149537_16 .primary.sub-title,#stacks_in_149537_16 .segment.sub-title{display:block}#stacks_in_149537_16 [data-seg="segment2"].last-title{display:block}#stacks_in_149537_16 .segment.no-shadow{text-shadow:none !important}#stacks_in_149537_16 .segment *{}#stacks_in_149537_16 .hTxt.primary{vertical-align:top}#stacks_in_149537_16 .segment[data-seg="segment1"]{font-size:100%;color:rgba(255, 255, 255, 1.00);padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_149537_16 .segment[data-seg="segment1"] div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149537_16 .segment[data-seg="segment1"] div.mez{font-size:100%}#stacks_in_149537_16 .segment[data-seg="segment2"]{font-size:75%;color:rgba(83, 83, 83, 1.00);padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_149537_16 .segment[data-seg="segment2"] div{color:rgba(83, 83, 83, 1.00)}#stacks_in_149537_16 .segment[data-seg="segment2"] div.mez{font-size:75%}

#stacks_in_26788>.s3_row {
	margin: 0 -10px;
}

#stacks_in_26788>.s3_row>.s3_column_left {
	width: 60.00%;
}

#stacks_in_26788>.s3_row>.s3_column_right {
	width: 40.000000%;
}




#stacks_in_26788>.s3_row>.s3_column {
	padding: 0 10px;
}










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



}



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


	#stacks_in_26788>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_26788>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_149430 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_149430 {
		display: none !important;
	}
}

#stacks_in_44165 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_44165_39247 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_44165_39247 a,
#stacks_in_44165_39247 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_44165_39247 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_44165_39247 a i,
#stacks_in_44165_39247 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_44165_39247 a,
  #stacks_in_44165_39247 a:visited {
    background-color: rgba(102, 102, 102, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_44165_39247 a:hover,
  #stacks_in_44165_39247 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 153, 0, 1.00) !important;
  }

  #stacks_in_44165_39247 a i,
  #stacks_in_44165_39247 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_44165_39247 a:hover i,
  #stacks_in_44165_39247 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 153, 0, 1.00);
  }















#stacks_in_152524 h3,#stacks_in_152524 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152524 h3 a,#stacks_in_152524 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152524 h3 a:hover,#stacks_in_152524 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152524 small,#stacks_in_152524 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152524 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152524 {
	background-color: rgba(77, 77, 77, 1.00);
	padding: 40px 20px 6px 20px;
}
/* Styling for Preview Mode & Publishing */


/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

#stacks_in_152533 .bx-wrapper {
	position: relative;
	
		
		margin: 0 auto 60px;
		
	
	padding: 0;
	*zoom: 1;
}

#stacks_in_152533 .bx-wrapper img {
	
	max-width: 100%;
	height: auto;
	

	
	display: block;
}

/** THEME
===================================*/

#stacks_in_152533 .bx-wrapper .bx-viewport {
}

#stacks_in_152533 .bx-wrapper .bx-pager,
#stacks_in_152533 .bx-wrapper .bx-controls-auto {
	position: absolute;
	
	bottom: 0px;
	margin-bottom: -40px;
	
	width: 100%;
	z-index: 200;
}

/* LOADER */

#stacks_in_152533 .bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(../files/orbit-images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
}


/* Only add pagination CSS if toggled on in settings. */
/* PAGER */



#stacks_in_152533 .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

#stacks_in_152533 .bx-wrapper .bx-pager .bx-pager-item,
#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

#stacks_in_152533 .bx-wrapper .bx-pager.bx-default-pager a {
	background: #E0E0E0;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#stacks_in_152533 .bx-wrapper .bx-pager.bx-default-pager a:hover,
#stacks_in_152533 .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #C3C3C3;
}






/* Only add arrow CSS if toggled on in settings. */
/* DIRECTION CONTROLS (NEXT / PREV) */

#stacks_in_152533 .bx-wrapper .bx-prev,
#stacks_in_152533 .bx-wrapper .bx-next,
#stacks_in_152533 .bx-wrapper .bx-pager,
#stacks_in_152533 .bx-wrapper .bx-pager-item,
#stacks_in_152533 .bx-wrapper .bx-pager-item a {
	border: none;
}



#stacks_in_152533 .bx-wrapper .bx-prev {
	left: 10px;
	background: url(../files/orbit-images/controls.png) no-repeat 0 -32px;
}

#stacks_in_152533 .bx-wrapper .bx-next {
	right: 10px;
	background: url(../files/orbit-images/controls.png) no-repeat -43px -32px;
}

#stacks_in_152533 .bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

#stacks_in_152533 .bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

#stacks_in_152533 .bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 301;
}

#stacks_in_152533 .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}



/*  Hide navigation arrows if toggled off in settings. */


/* AUTO CONTROLS (START / STOP) */

#stacks_in_152533 .bx-wrapper .bx-controls-auto {
	text-align: center;
}

#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(../files/orbit-images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-start:hover,
#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(../files/orbit-images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-stop:hover,
#stacks_in_152533 .bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

#stacks_in_152533 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

#stacks_in_152533 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

#stacks_in_152533 .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

#stacks_in_152533 .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

#stacks_in_152533 ul.bxslider, #stacks_in_152533 ul.bxslider li {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}






/* Styling for Edit Mode within Stacks */



#stacks_in_152533 {
	padding:  10px;
}
#stacks_in_152536 .stacks_in_152536-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152536 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152536 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152536 .stacks_in_152536-button,
#stacks_in_152536 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152536 {
		text-align: center;
	}

	#stacks_in_152536 .stacks_in_152536-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152536 a.stacks_in_152536-button, #stacks_in_152536 a.stacks_in_152536-button:visited, #stacks_in_152536 a.stacks_in_152536-button:hover, #stacks_in_152536 a.stacks_in_152536-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152536 .stacks_in_152536-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152536 a.stacks_in_152536-button, #stacks_in_152536 a.stacks_in_152536-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152536 a.stacks_in_152536-button:hover, #stacks_in_152536 a.stacks_in_152536-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152537_104374 .stacks_in_152537_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152537_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152537_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152537_104374 .stacks_in_152537_104374-button,
#stacks_in_152537_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152537_104374 {
		text-align: center;
	}

	#stacks_in_152537_104374 .stacks_in_152537_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152537_104374 a.stacks_in_152537_104374-button, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:visited, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:hover, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152537_104374 .stacks_in_152537_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152537_104374 a.stacks_in_152537_104374-button, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152537_104374 a.stacks_in_152537_104374-button:hover, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152537_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152537_104374 a.stacks_in_152537_104374-button:hover .button_icon, #stacks_in_152537_104374 a.stacks_in_152537_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152539 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152539 {
		display: none !important;
	}
}
#stacks_in_152668_104831 .stacks_in_152668_104831-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152668_104831 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152668_104831 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152668_104831 .stacks_in_152668_104831-button,
#stacks_in_152668_104831 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152668_104831 {
		text-align: center;
	}

	#stacks_in_152668_104831 .stacks_in_152668_104831-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152668_104831 a.stacks_in_152668_104831-button, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:visited, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:hover, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152668_104831 .stacks_in_152668_104831-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152668_104831 a.stacks_in_152668_104831-button, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152668_104831 a.stacks_in_152668_104831-button:hover, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152668_104831 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152668_104831 a.stacks_in_152668_104831-button:hover .button_icon, #stacks_in_152668_104831 a.stacks_in_152668_104831-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152541 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152541 {
		display: none !important;
	}
}
#stacks_in_152669_104706 .stacks_in_152669_104706-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152669_104706 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152669_104706 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152669_104706 .stacks_in_152669_104706-button,
#stacks_in_152669_104706 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152669_104706 {
		text-align: center;
	}

	#stacks_in_152669_104706 .stacks_in_152669_104706-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152669_104706 a.stacks_in_152669_104706-button, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:visited, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:hover, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152669_104706 .stacks_in_152669_104706-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152669_104706 a.stacks_in_152669_104706-button, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152669_104706 a.stacks_in_152669_104706-button:hover, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152669_104706 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152669_104706 a.stacks_in_152669_104706-button:hover .button_icon, #stacks_in_152669_104706 a.stacks_in_152669_104706-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152543 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152543 {
		display: none !important;
	}
}
#stacks_in_152544_104386 .stacks_in_152544_104386-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152544_104386 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152544_104386 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152544_104386 .stacks_in_152544_104386-button,
#stacks_in_152544_104386 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152544_104386 {
		text-align: center;
	}

	#stacks_in_152544_104386 .stacks_in_152544_104386-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152544_104386 a.stacks_in_152544_104386-button, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:visited, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:hover, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152544_104386 .stacks_in_152544_104386-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152544_104386 a.stacks_in_152544_104386-button, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152544_104386 a.stacks_in_152544_104386-button:hover, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152544_104386 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152544_104386 a.stacks_in_152544_104386-button:hover .button_icon, #stacks_in_152544_104386 a.stacks_in_152544_104386-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152545 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152545 {
		display: none !important;
	}
}
#stacks_in_152546_104390 .stacks_in_152546_104390-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152546_104390 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152546_104390 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152546_104390 .stacks_in_152546_104390-button,
#stacks_in_152546_104390 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152546_104390 {
		text-align: center;
	}

	#stacks_in_152546_104390 .stacks_in_152546_104390-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152546_104390 a.stacks_in_152546_104390-button, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:visited, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:hover, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152546_104390 .stacks_in_152546_104390-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152546_104390 a.stacks_in_152546_104390-button, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152546_104390 a.stacks_in_152546_104390-button:hover, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152546_104390 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152546_104390 a.stacks_in_152546_104390-button:hover .button_icon, #stacks_in_152546_104390 a.stacks_in_152546_104390-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152547 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152547 {
		display: none !important;
	}
}
#stacks_in_152670_2 .stacks_in_152670_2-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152670_2 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152670_2 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152670_2 .stacks_in_152670_2-button,
#stacks_in_152670_2 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152670_2 {
		text-align: center;
	}

	#stacks_in_152670_2 .stacks_in_152670_2-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152670_2 a.stacks_in_152670_2-button, #stacks_in_152670_2 a.stacks_in_152670_2-button:visited, #stacks_in_152670_2 a.stacks_in_152670_2-button:hover, #stacks_in_152670_2 a.stacks_in_152670_2-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152670_2 .stacks_in_152670_2-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152670_2 a.stacks_in_152670_2-button, #stacks_in_152670_2 a.stacks_in_152670_2-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152670_2 a.stacks_in_152670_2-button:hover, #stacks_in_152670_2 a.stacks_in_152670_2-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152670_2 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152670_2 a.stacks_in_152670_2-button:hover .button_icon, #stacks_in_152670_2 a.stacks_in_152670_2-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152551 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152551 {
		display: none !important;
	}
}
#stacks_in_152552_104382 .stacks_in_152552_104382-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152552_104382 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152552_104382 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152552_104382 .stacks_in_152552_104382-button,
#stacks_in_152552_104382 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152552_104382 {
		text-align: center;
	}

	#stacks_in_152552_104382 .stacks_in_152552_104382-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152552_104382 a.stacks_in_152552_104382-button, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:visited, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:hover, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152552_104382 .stacks_in_152552_104382-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152552_104382 a.stacks_in_152552_104382-button, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152552_104382 a.stacks_in_152552_104382-button:hover, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152552_104382 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152552_104382 a.stacks_in_152552_104382-button:hover .button_icon, #stacks_in_152552_104382 a.stacks_in_152552_104382-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152555 .stacks_in_152555-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152555 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152555 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152555 .stacks_in_152555-button,
#stacks_in_152555 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152555 {
		text-align: center;
	}

	#stacks_in_152555 .stacks_in_152555-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152555 a.stacks_in_152555-button, #stacks_in_152555 a.stacks_in_152555-button:visited, #stacks_in_152555 a.stacks_in_152555-button:hover, #stacks_in_152555 a.stacks_in_152555-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152555 .stacks_in_152555-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152555 a.stacks_in_152555-button, #stacks_in_152555 a.stacks_in_152555-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152555 a.stacks_in_152555-button:hover, #stacks_in_152555 a.stacks_in_152555-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152556_104402 .stacks_in_152556_104402-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152556_104402 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152556_104402 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152556_104402 .stacks_in_152556_104402-button,
#stacks_in_152556_104402 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152556_104402 {
		text-align: center;
	}

	#stacks_in_152556_104402 .stacks_in_152556_104402-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152556_104402 a.stacks_in_152556_104402-button, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:visited, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:hover, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152556_104402 .stacks_in_152556_104402-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152556_104402 a.stacks_in_152556_104402-button, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152556_104402 a.stacks_in_152556_104402-button:hover, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152556_104402 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152556_104402 a.stacks_in_152556_104402-button:hover .button_icon, #stacks_in_152556_104402 a.stacks_in_152556_104402-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152558 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152558 {
		display: none !important;
	}
}
#stacks_in_152559_104386 .stacks_in_152559_104386-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152559_104386 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152559_104386 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152559_104386 .stacks_in_152559_104386-button,
#stacks_in_152559_104386 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152559_104386 {
		text-align: center;
	}

	#stacks_in_152559_104386 .stacks_in_152559_104386-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152559_104386 a.stacks_in_152559_104386-button, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:visited, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:hover, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152559_104386 .stacks_in_152559_104386-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152559_104386 a.stacks_in_152559_104386-button, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152559_104386 a.stacks_in_152559_104386-button:hover, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152559_104386 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152559_104386 a.stacks_in_152559_104386-button:hover .button_icon, #stacks_in_152559_104386 a.stacks_in_152559_104386-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152560 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152560 {
		display: none !important;
	}
}
#stacks_in_152561_104831 .stacks_in_152561_104831-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152561_104831 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152561_104831 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152561_104831 .stacks_in_152561_104831-button,
#stacks_in_152561_104831 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152561_104831 {
		text-align: center;
	}

	#stacks_in_152561_104831 .stacks_in_152561_104831-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152561_104831 a.stacks_in_152561_104831-button, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:visited, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:hover, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152561_104831 .stacks_in_152561_104831-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152561_104831 a.stacks_in_152561_104831-button, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152561_104831 a.stacks_in_152561_104831-button:hover, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152561_104831 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152561_104831 a.stacks_in_152561_104831-button:hover .button_icon, #stacks_in_152561_104831 a.stacks_in_152561_104831-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152562 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152562 {
		display: none !important;
	}
}
#stacks_in_152563_104390 .stacks_in_152563_104390-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152563_104390 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152563_104390 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152563_104390 .stacks_in_152563_104390-button,
#stacks_in_152563_104390 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152563_104390 {
		text-align: center;
	}

	#stacks_in_152563_104390 .stacks_in_152563_104390-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152563_104390 a.stacks_in_152563_104390-button, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:visited, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:hover, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152563_104390 .stacks_in_152563_104390-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152563_104390 a.stacks_in_152563_104390-button, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152563_104390 a.stacks_in_152563_104390-button:hover, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152563_104390 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152563_104390 a.stacks_in_152563_104390-button:hover .button_icon, #stacks_in_152563_104390 a.stacks_in_152563_104390-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152564 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152564 {
		display: none !important;
	}
}
#stacks_in_152565_104895 .stacks_in_152565_104895-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152565_104895 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152565_104895 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152565_104895 .stacks_in_152565_104895-button,
#stacks_in_152565_104895 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152565_104895 {
		text-align: center;
	}

	#stacks_in_152565_104895 .stacks_in_152565_104895-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152565_104895 a.stacks_in_152565_104895-button, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:visited, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:hover, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152565_104895 .stacks_in_152565_104895-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152565_104895 a.stacks_in_152565_104895-button, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152565_104895 a.stacks_in_152565_104895-button:hover, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152565_104895 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152565_104895 a.stacks_in_152565_104895-button:hover .button_icon, #stacks_in_152565_104895 a.stacks_in_152565_104895-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152566 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152566 {
		display: none !important;
	}
}
#stacks_in_152569_104883 .stacks_in_152569_104883-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152569_104883 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152569_104883 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152569_104883 .stacks_in_152569_104883-button,
#stacks_in_152569_104883 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152569_104883 {
		text-align: center;
	}

	#stacks_in_152569_104883 .stacks_in_152569_104883-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152569_104883 a.stacks_in_152569_104883-button, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:visited, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:hover, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152569_104883 .stacks_in_152569_104883-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152569_104883 a.stacks_in_152569_104883-button, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152569_104883 a.stacks_in_152569_104883-button:hover, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152569_104883 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152569_104883 a.stacks_in_152569_104883-button:hover .button_icon, #stacks_in_152569_104883 a.stacks_in_152569_104883-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152570 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152570 {
		display: none !important;
	}
}
#stacks_in_152571_104738 .stacks_in_152571_104738-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152571_104738 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152571_104738 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152571_104738 .stacks_in_152571_104738-button,
#stacks_in_152571_104738 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152571_104738 {
		text-align: center;
	}

	#stacks_in_152571_104738 .stacks_in_152571_104738-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152571_104738 a.stacks_in_152571_104738-button, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:visited, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:hover, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152571_104738 .stacks_in_152571_104738-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152571_104738 a.stacks_in_152571_104738-button, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152571_104738 a.stacks_in_152571_104738-button:hover, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152571_104738 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152571_104738 a.stacks_in_152571_104738-button:hover .button_icon, #stacks_in_152571_104738 a.stacks_in_152571_104738-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152574 .stacks_in_152574-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152574 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152574 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152574 .stacks_in_152574-button,
#stacks_in_152574 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152574 {
		text-align: center;
	}

	#stacks_in_152574 .stacks_in_152574-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152574 a.stacks_in_152574-button, #stacks_in_152574 a.stacks_in_152574-button:visited, #stacks_in_152574 a.stacks_in_152574-button:hover, #stacks_in_152574 a.stacks_in_152574-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152574 .stacks_in_152574-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152574 a.stacks_in_152574-button, #stacks_in_152574 a.stacks_in_152574-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152574 a.stacks_in_152574-button:hover, #stacks_in_152574 a.stacks_in_152574-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152575_104374 .stacks_in_152575_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152575_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152575_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152575_104374 .stacks_in_152575_104374-button,
#stacks_in_152575_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152575_104374 {
		text-align: center;
	}

	#stacks_in_152575_104374 .stacks_in_152575_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152575_104374 a.stacks_in_152575_104374-button, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:visited, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:hover, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152575_104374 .stacks_in_152575_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152575_104374 a.stacks_in_152575_104374-button, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152575_104374 a.stacks_in_152575_104374-button:hover, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152575_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152575_104374 a.stacks_in_152575_104374-button:hover .button_icon, #stacks_in_152575_104374 a.stacks_in_152575_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152577 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152577 {
		display: none !important;
	}
}
#stacks_in_152578_104378 .stacks_in_152578_104378-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152578_104378 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152578_104378 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152578_104378 .stacks_in_152578_104378-button,
#stacks_in_152578_104378 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152578_104378 {
		text-align: center;
	}

	#stacks_in_152578_104378 .stacks_in_152578_104378-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152578_104378 a.stacks_in_152578_104378-button, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:visited, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:hover, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152578_104378 .stacks_in_152578_104378-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152578_104378 a.stacks_in_152578_104378-button, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152578_104378 a.stacks_in_152578_104378-button:hover, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152578_104378 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152578_104378 a.stacks_in_152578_104378-button:hover .button_icon, #stacks_in_152578_104378 a.stacks_in_152578_104378-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152579 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152579 {
		display: none !important;
	}
}
#stacks_in_152580_104382 .stacks_in_152580_104382-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152580_104382 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152580_104382 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152580_104382 .stacks_in_152580_104382-button,
#stacks_in_152580_104382 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152580_104382 {
		text-align: center;
	}

	#stacks_in_152580_104382 .stacks_in_152580_104382-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152580_104382 a.stacks_in_152580_104382-button, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:visited, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:hover, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152580_104382 .stacks_in_152580_104382-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152580_104382 a.stacks_in_152580_104382-button, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152580_104382 a.stacks_in_152580_104382-button:hover, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152580_104382 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152580_104382 a.stacks_in_152580_104382-button:hover .button_icon, #stacks_in_152580_104382 a.stacks_in_152580_104382-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152581 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152581 {
		display: none !important;
	}
}
#stacks_in_152582_104406 .stacks_in_152582_104406-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152582_104406 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152582_104406 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152582_104406 .stacks_in_152582_104406-button,
#stacks_in_152582_104406 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152582_104406 {
		text-align: center;
	}

	#stacks_in_152582_104406 .stacks_in_152582_104406-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152582_104406 a.stacks_in_152582_104406-button, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:visited, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:hover, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152582_104406 .stacks_in_152582_104406-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152582_104406 a.stacks_in_152582_104406-button, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152582_104406 a.stacks_in_152582_104406-button:hover, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152582_104406 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152582_104406 a.stacks_in_152582_104406-button:hover .button_icon, #stacks_in_152582_104406 a.stacks_in_152582_104406-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152583 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152583 {
		display: none !important;
	}
}
#stacks_in_152584_104390 .stacks_in_152584_104390-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152584_104390 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152584_104390 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152584_104390 .stacks_in_152584_104390-button,
#stacks_in_152584_104390 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152584_104390 {
		text-align: center;
	}

	#stacks_in_152584_104390 .stacks_in_152584_104390-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152584_104390 a.stacks_in_152584_104390-button, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:visited, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:hover, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152584_104390 .stacks_in_152584_104390-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152584_104390 a.stacks_in_152584_104390-button, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152584_104390 a.stacks_in_152584_104390-button:hover, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152584_104390 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152584_104390 a.stacks_in_152584_104390-button:hover .button_icon, #stacks_in_152584_104390 a.stacks_in_152584_104390-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152585 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152585 {
		display: none !important;
	}
}
#stacks_in_152586_104398 .stacks_in_152586_104398-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152586_104398 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152586_104398 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152586_104398 .stacks_in_152586_104398-button,
#stacks_in_152586_104398 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152586_104398 {
		text-align: center;
	}

	#stacks_in_152586_104398 .stacks_in_152586_104398-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152586_104398 a.stacks_in_152586_104398-button, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:visited, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:hover, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152586_104398 .stacks_in_152586_104398-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152586_104398 a.stacks_in_152586_104398-button, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152586_104398 a.stacks_in_152586_104398-button:hover, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152586_104398 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152586_104398 a.stacks_in_152586_104398-button:hover .button_icon, #stacks_in_152586_104398 a.stacks_in_152586_104398-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152589 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152589 {
		display: none !important;
	}
}
#stacks_in_152590_104386 .stacks_in_152590_104386-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152590_104386 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152590_104386 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152590_104386 .stacks_in_152590_104386-button,
#stacks_in_152590_104386 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152590_104386 {
		text-align: center;
	}

	#stacks_in_152590_104386 .stacks_in_152590_104386-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152590_104386 a.stacks_in_152590_104386-button, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:visited, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:hover, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152590_104386 .stacks_in_152590_104386-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152590_104386 a.stacks_in_152590_104386-button, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152590_104386 a.stacks_in_152590_104386-button:hover, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152590_104386 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152590_104386 a.stacks_in_152590_104386-button:hover .button_icon, #stacks_in_152590_104386 a.stacks_in_152590_104386-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152593 .stacks_in_152593-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152593 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152593 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152593 .stacks_in_152593-button,
#stacks_in_152593 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152593 {
		text-align: center;
	}

	#stacks_in_152593 .stacks_in_152593-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152593 a.stacks_in_152593-button, #stacks_in_152593 a.stacks_in_152593-button:visited, #stacks_in_152593 a.stacks_in_152593-button:hover, #stacks_in_152593 a.stacks_in_152593-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152593 .stacks_in_152593-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152593 a.stacks_in_152593-button, #stacks_in_152593 a.stacks_in_152593-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152593 a.stacks_in_152593-button:hover, #stacks_in_152593 a.stacks_in_152593-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152594_104374 .stacks_in_152594_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152594_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152594_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152594_104374 .stacks_in_152594_104374-button,
#stacks_in_152594_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152594_104374 {
		text-align: center;
	}

	#stacks_in_152594_104374 .stacks_in_152594_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152594_104374 a.stacks_in_152594_104374-button, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:visited, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:hover, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152594_104374 .stacks_in_152594_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152594_104374 a.stacks_in_152594_104374-button, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152594_104374 a.stacks_in_152594_104374-button:hover, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152594_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152594_104374 a.stacks_in_152594_104374-button:hover .button_icon, #stacks_in_152594_104374 a.stacks_in_152594_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152596 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152596 {
		display: none !important;
	}
}
#stacks_in_152597_104406 .stacks_in_152597_104406-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152597_104406 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152597_104406 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152597_104406 .stacks_in_152597_104406-button,
#stacks_in_152597_104406 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152597_104406 {
		text-align: center;
	}

	#stacks_in_152597_104406 .stacks_in_152597_104406-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152597_104406 a.stacks_in_152597_104406-button, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:visited, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:hover, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152597_104406 .stacks_in_152597_104406-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152597_104406 a.stacks_in_152597_104406-button, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152597_104406 a.stacks_in_152597_104406-button:hover, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152597_104406 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152597_104406 a.stacks_in_152597_104406-button:hover .button_icon, #stacks_in_152597_104406 a.stacks_in_152597_104406-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152598 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152598 {
		display: none !important;
	}
}
#stacks_in_152599_104831 .stacks_in_152599_104831-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152599_104831 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152599_104831 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152599_104831 .stacks_in_152599_104831-button,
#stacks_in_152599_104831 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152599_104831 {
		text-align: center;
	}

	#stacks_in_152599_104831 .stacks_in_152599_104831-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152599_104831 a.stacks_in_152599_104831-button, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:visited, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:hover, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152599_104831 .stacks_in_152599_104831-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152599_104831 a.stacks_in_152599_104831-button, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152599_104831 a.stacks_in_152599_104831-button:hover, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152599_104831 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152599_104831 a.stacks_in_152599_104831-button:hover .button_icon, #stacks_in_152599_104831 a.stacks_in_152599_104831-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152600 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152600 {
		display: none !important;
	}
}
#stacks_in_152601_104653 .stacks_in_152601_104653-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152601_104653 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152601_104653 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152601_104653 .stacks_in_152601_104653-button,
#stacks_in_152601_104653 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152601_104653 {
		text-align: center;
	}

	#stacks_in_152601_104653 .stacks_in_152601_104653-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152601_104653 a.stacks_in_152601_104653-button, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:visited, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:hover, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152601_104653 .stacks_in_152601_104653-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152601_104653 a.stacks_in_152601_104653-button, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152601_104653 a.stacks_in_152601_104653-button:hover, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152601_104653 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152601_104653 a.stacks_in_152601_104653-button:hover .button_icon, #stacks_in_152601_104653 a.stacks_in_152601_104653-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152602 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152602 {
		display: none !important;
	}
}
#stacks_in_152603_104398 .stacks_in_152603_104398-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152603_104398 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152603_104398 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152603_104398 .stacks_in_152603_104398-button,
#stacks_in_152603_104398 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152603_104398 {
		text-align: center;
	}

	#stacks_in_152603_104398 .stacks_in_152603_104398-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152603_104398 a.stacks_in_152603_104398-button, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:visited, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:hover, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152603_104398 .stacks_in_152603_104398-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152603_104398 a.stacks_in_152603_104398-button, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152603_104398 a.stacks_in_152603_104398-button:hover, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152603_104398 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152603_104398 a.stacks_in_152603_104398-button:hover .button_icon, #stacks_in_152603_104398 a.stacks_in_152603_104398-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152604 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152604 {
		display: none !important;
	}
}
#stacks_in_152607_104738 .stacks_in_152607_104738-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152607_104738 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152607_104738 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152607_104738 .stacks_in_152607_104738-button,
#stacks_in_152607_104738 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152607_104738 {
		text-align: center;
	}

	#stacks_in_152607_104738 .stacks_in_152607_104738-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152607_104738 a.stacks_in_152607_104738-button, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:visited, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:hover, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152607_104738 .stacks_in_152607_104738-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152607_104738 a.stacks_in_152607_104738-button, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152607_104738 a.stacks_in_152607_104738-button:hover, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152607_104738 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152607_104738 a.stacks_in_152607_104738-button:hover .button_icon, #stacks_in_152607_104738 a.stacks_in_152607_104738-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152608 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152608 {
		display: none !important;
	}
}
#stacks_in_152609_104378 .stacks_in_152609_104378-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152609_104378 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152609_104378 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152609_104378 .stacks_in_152609_104378-button,
#stacks_in_152609_104378 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152609_104378 {
		text-align: center;
	}

	#stacks_in_152609_104378 .stacks_in_152609_104378-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152609_104378 a.stacks_in_152609_104378-button, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:visited, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:hover, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152609_104378 .stacks_in_152609_104378-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152609_104378 a.stacks_in_152609_104378-button, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152609_104378 a.stacks_in_152609_104378-button:hover, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152609_104378 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152609_104378 a.stacks_in_152609_104378-button:hover .button_icon, #stacks_in_152609_104378 a.stacks_in_152609_104378-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152612 .stacks_in_152612-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152612 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152612 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152612 .stacks_in_152612-button,
#stacks_in_152612 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152612 {
		text-align: center;
	}

	#stacks_in_152612 .stacks_in_152612-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152612 a.stacks_in_152612-button, #stacks_in_152612 a.stacks_in_152612-button:visited, #stacks_in_152612 a.stacks_in_152612-button:hover, #stacks_in_152612 a.stacks_in_152612-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152612 .stacks_in_152612-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152612 a.stacks_in_152612-button, #stacks_in_152612 a.stacks_in_152612-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152612 a.stacks_in_152612-button:hover, #stacks_in_152612 a.stacks_in_152612-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152614_104378 .stacks_in_152614_104378-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152614_104378 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152614_104378 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152614_104378 .stacks_in_152614_104378-button,
#stacks_in_152614_104378 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152614_104378 {
		text-align: center;
	}

	#stacks_in_152614_104378 .stacks_in_152614_104378-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152614_104378 a.stacks_in_152614_104378-button, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:visited, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:hover, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152614_104378 .stacks_in_152614_104378-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152614_104378 a.stacks_in_152614_104378-button, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152614_104378 a.stacks_in_152614_104378-button:hover, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152614_104378 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152614_104378 a.stacks_in_152614_104378-button:hover .button_icon, #stacks_in_152614_104378 a.stacks_in_152614_104378-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152616 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152616 {
		display: none !important;
	}
}
#stacks_in_152617_104374 .stacks_in_152617_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152617_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152617_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152617_104374 .stacks_in_152617_104374-button,
#stacks_in_152617_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152617_104374 {
		text-align: center;
	}

	#stacks_in_152617_104374 .stacks_in_152617_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152617_104374 a.stacks_in_152617_104374-button, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:visited, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:hover, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152617_104374 .stacks_in_152617_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152617_104374 a.stacks_in_152617_104374-button, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152617_104374 a.stacks_in_152617_104374-button:hover, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152617_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152617_104374 a.stacks_in_152617_104374-button:hover .button_icon, #stacks_in_152617_104374 a.stacks_in_152617_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152618 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152618 {
		display: none !important;
	}
}
#stacks_in_152619_104382 .stacks_in_152619_104382-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152619_104382 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152619_104382 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152619_104382 .stacks_in_152619_104382-button,
#stacks_in_152619_104382 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152619_104382 {
		text-align: center;
	}

	#stacks_in_152619_104382 .stacks_in_152619_104382-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152619_104382 a.stacks_in_152619_104382-button, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:visited, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:hover, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152619_104382 .stacks_in_152619_104382-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152619_104382 a.stacks_in_152619_104382-button, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152619_104382 a.stacks_in_152619_104382-button:hover, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152619_104382 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152619_104382 a.stacks_in_152619_104382-button:hover .button_icon, #stacks_in_152619_104382 a.stacks_in_152619_104382-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152620 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152620 {
		display: none !important;
	}
}
#stacks_in_152621_104653 .stacks_in_152621_104653-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152621_104653 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152621_104653 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152621_104653 .stacks_in_152621_104653-button,
#stacks_in_152621_104653 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152621_104653 {
		text-align: center;
	}

	#stacks_in_152621_104653 .stacks_in_152621_104653-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152621_104653 a.stacks_in_152621_104653-button, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:visited, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:hover, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152621_104653 .stacks_in_152621_104653-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152621_104653 a.stacks_in_152621_104653-button, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152621_104653 a.stacks_in_152621_104653-button:hover, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152621_104653 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152621_104653 a.stacks_in_152621_104653-button:hover .button_icon, #stacks_in_152621_104653 a.stacks_in_152621_104653-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152622 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152622 {
		display: none !important;
	}
}
#stacks_in_152623_104398 .stacks_in_152623_104398-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152623_104398 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152623_104398 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152623_104398 .stacks_in_152623_104398-button,
#stacks_in_152623_104398 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152623_104398 {
		text-align: center;
	}

	#stacks_in_152623_104398 .stacks_in_152623_104398-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152623_104398 a.stacks_in_152623_104398-button, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:visited, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:hover, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152623_104398 .stacks_in_152623_104398-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152623_104398 a.stacks_in_152623_104398-button, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152623_104398 a.stacks_in_152623_104398-button:hover, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152623_104398 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152623_104398 a.stacks_in_152623_104398-button:hover .button_icon, #stacks_in_152623_104398 a.stacks_in_152623_104398-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152626 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152626 {
		display: none !important;
	}
}
#stacks_in_152627_104706 .stacks_in_152627_104706-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152627_104706 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152627_104706 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152627_104706 .stacks_in_152627_104706-button,
#stacks_in_152627_104706 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152627_104706 {
		text-align: center;
	}

	#stacks_in_152627_104706 .stacks_in_152627_104706-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152627_104706 a.stacks_in_152627_104706-button, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:visited, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:hover, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152627_104706 .stacks_in_152627_104706-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152627_104706 a.stacks_in_152627_104706-button, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152627_104706 a.stacks_in_152627_104706-button:hover, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152627_104706 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152627_104706 a.stacks_in_152627_104706-button:hover .button_icon, #stacks_in_152627_104706 a.stacks_in_152627_104706-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152628 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152628 {
		display: none !important;
	}
}
#stacks_in_152629_104738 .stacks_in_152629_104738-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152629_104738 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152629_104738 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152629_104738 .stacks_in_152629_104738-button,
#stacks_in_152629_104738 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152629_104738 {
		text-align: center;
	}

	#stacks_in_152629_104738 .stacks_in_152629_104738-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152629_104738 a.stacks_in_152629_104738-button, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:visited, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:hover, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152629_104738 .stacks_in_152629_104738-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152629_104738 a.stacks_in_152629_104738-button, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152629_104738 a.stacks_in_152629_104738-button:hover, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152629_104738 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152629_104738 a.stacks_in_152629_104738-button:hover .button_icon, #stacks_in_152629_104738 a.stacks_in_152629_104738-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152632 .stacks_in_152632-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152632 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152632 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152632 .stacks_in_152632-button,
#stacks_in_152632 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152632 {
		text-align: center;
	}

	#stacks_in_152632 .stacks_in_152632-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152632 a.stacks_in_152632-button, #stacks_in_152632 a.stacks_in_152632-button:visited, #stacks_in_152632 a.stacks_in_152632-button:hover, #stacks_in_152632 a.stacks_in_152632-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152632 .stacks_in_152632-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152632 a.stacks_in_152632-button, #stacks_in_152632 a.stacks_in_152632-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152632 a.stacks_in_152632-button:hover, #stacks_in_152632 a.stacks_in_152632-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152633_104374 .stacks_in_152633_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152633_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152633_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152633_104374 .stacks_in_152633_104374-button,
#stacks_in_152633_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152633_104374 {
		text-align: center;
	}

	#stacks_in_152633_104374 .stacks_in_152633_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152633_104374 a.stacks_in_152633_104374-button, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:visited, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:hover, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152633_104374 .stacks_in_152633_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152633_104374 a.stacks_in_152633_104374-button, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152633_104374 a.stacks_in_152633_104374-button:hover, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152633_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152633_104374 a.stacks_in_152633_104374-button:hover .button_icon, #stacks_in_152633_104374 a.stacks_in_152633_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152635 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152635 {
		display: none !important;
	}
}
#stacks_in_152636_104831 .stacks_in_152636_104831-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152636_104831 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152636_104831 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152636_104831 .stacks_in_152636_104831-button,
#stacks_in_152636_104831 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152636_104831 {
		text-align: center;
	}

	#stacks_in_152636_104831 .stacks_in_152636_104831-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152636_104831 a.stacks_in_152636_104831-button, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:visited, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:hover, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152636_104831 .stacks_in_152636_104831-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152636_104831 a.stacks_in_152636_104831-button, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152636_104831 a.stacks_in_152636_104831-button:hover, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152636_104831 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152636_104831 a.stacks_in_152636_104831-button:hover .button_icon, #stacks_in_152636_104831 a.stacks_in_152636_104831-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152637 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152637 {
		display: none !important;
	}
}
#stacks_in_152638_104864 .flat_button_2_alignment {
  font-size: 22px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_152638_104864 a,
#stacks_in_152638_104864 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_152638_104864 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_152638_104864 a i,
#stacks_in_152638_104864 a:visited i {
  font-size: 24px;
  display: inline-block;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152638_104864 a,
  #stacks_in_152638_104864 a:visited {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_152638_104864 a:hover,
  #stacks_in_152638_104864 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_152638_104864 a i,
  #stacks_in_152638_104864 a:visited i {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152638_104864 a:hover i,
  #stacks_in_152638_104864 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_152638_104864 a,
  #stacks_in_152638_104864 a:visited {
      width: 100%;
  }

  







.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152639 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152639 {
		display: none !important;
	}
}
#stacks_in_152640_104382 .stacks_in_152640_104382-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152640_104382 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152640_104382 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152640_104382 .stacks_in_152640_104382-button,
#stacks_in_152640_104382 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152640_104382 {
		text-align: center;
	}

	#stacks_in_152640_104382 .stacks_in_152640_104382-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152640_104382 a.stacks_in_152640_104382-button, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:visited, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:hover, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152640_104382 .stacks_in_152640_104382-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152640_104382 a.stacks_in_152640_104382-button, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152640_104382 a.stacks_in_152640_104382-button:hover, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152640_104382 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152640_104382 a.stacks_in_152640_104382-button:hover .button_icon, #stacks_in_152640_104382 a.stacks_in_152640_104382-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152643 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152643 {
		display: none !important;
	}
}
#stacks_in_152644_104653 .stacks_in_152644_104653-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152644_104653 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152644_104653 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152644_104653 .stacks_in_152644_104653-button,
#stacks_in_152644_104653 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152644_104653 {
		text-align: center;
	}

	#stacks_in_152644_104653 .stacks_in_152644_104653-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152644_104653 a.stacks_in_152644_104653-button, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:visited, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:hover, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152644_104653 .stacks_in_152644_104653-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152644_104653 a.stacks_in_152644_104653-button, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152644_104653 a.stacks_in_152644_104653-button:hover, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152644_104653 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152644_104653 a.stacks_in_152644_104653-button:hover .button_icon, #stacks_in_152644_104653 a.stacks_in_152644_104653-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152645 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152645 {
		display: none !important;
	}
}
#stacks_in_152646_104398 .stacks_in_152646_104398-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152646_104398 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152646_104398 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152646_104398 .stacks_in_152646_104398-button,
#stacks_in_152646_104398 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152646_104398 {
		text-align: center;
	}

	#stacks_in_152646_104398 .stacks_in_152646_104398-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152646_104398 a.stacks_in_152646_104398-button, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:visited, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:hover, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152646_104398 .stacks_in_152646_104398-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152646_104398 a.stacks_in_152646_104398-button, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152646_104398 a.stacks_in_152646_104398-button:hover, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152646_104398 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152646_104398 a.stacks_in_152646_104398-button:hover .button_icon, #stacks_in_152646_104398 a.stacks_in_152646_104398-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152647 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152647 {
		display: none !important;
	}
}
#stacks_in_152648_104378 .stacks_in_152648_104378-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152648_104378 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152648_104378 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152648_104378 .stacks_in_152648_104378-button,
#stacks_in_152648_104378 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152648_104378 {
		text-align: center;
	}

	#stacks_in_152648_104378 .stacks_in_152648_104378-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152648_104378 a.stacks_in_152648_104378-button, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:visited, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:hover, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152648_104378 .stacks_in_152648_104378-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152648_104378 a.stacks_in_152648_104378-button, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152648_104378 a.stacks_in_152648_104378-button:hover, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152648_104378 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152648_104378 a.stacks_in_152648_104378-button:hover .button_icon, #stacks_in_152648_104378 a.stacks_in_152648_104378-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	


#stacks_in_152651 .stacks_in_152651-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152651 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152651 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_152651 .stacks_in_152651-button,
#stacks_in_152651 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_152651 {
		text-align: center;
	}

	#stacks_in_152651 .stacks_in_152651-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152651 a.stacks_in_152651-button, #stacks_in_152651 a.stacks_in_152651-button:visited, #stacks_in_152651 a.stacks_in_152651-button:hover, #stacks_in_152651 a.stacks_in_152651-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152651 .stacks_in_152651-button {
		
			background-color: #F2F2F2;
		
	}

	#stacks_in_152651 a.stacks_in_152651-button, #stacks_in_152651 a.stacks_in_152651-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_152651 a.stacks_in_152651-button:hover, #stacks_in_152651 a.stacks_in_152651-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFFF;
		
	}

	


#stacks_in_152652_104374 .stacks_in_152652_104374-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152652_104374 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152652_104374 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152652_104374 .stacks_in_152652_104374-button,
#stacks_in_152652_104374 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152652_104374 {
		text-align: center;
	}

	#stacks_in_152652_104374 .stacks_in_152652_104374-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152652_104374 a.stacks_in_152652_104374-button, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:visited, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:hover, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152652_104374 .stacks_in_152652_104374-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152652_104374 a.stacks_in_152652_104374-button, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152652_104374 a.stacks_in_152652_104374-button:hover, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152652_104374 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152652_104374 a.stacks_in_152652_104374-button:hover .button_icon, #stacks_in_152652_104374 a.stacks_in_152652_104374-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152654 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152654 {
		display: none !important;
	}
}
#stacks_in_152655_104378 .stacks_in_152655_104378-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152655_104378 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152655_104378 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152655_104378 .stacks_in_152655_104378-button,
#stacks_in_152655_104378 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152655_104378 {
		text-align: center;
	}

	#stacks_in_152655_104378 .stacks_in_152655_104378-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152655_104378 a.stacks_in_152655_104378-button, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:visited, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:hover, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152655_104378 .stacks_in_152655_104378-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152655_104378 a.stacks_in_152655_104378-button, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152655_104378 a.stacks_in_152655_104378-button:hover, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152655_104378 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152655_104378 a.stacks_in_152655_104378-button:hover .button_icon, #stacks_in_152655_104378 a.stacks_in_152655_104378-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152656 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152656 {
		display: none !important;
	}
}
#stacks_in_152657_104386 .stacks_in_152657_104386-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152657_104386 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152657_104386 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152657_104386 .stacks_in_152657_104386-button,
#stacks_in_152657_104386 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152657_104386 {
		text-align: center;
	}

	#stacks_in_152657_104386 .stacks_in_152657_104386-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152657_104386 a.stacks_in_152657_104386-button, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:visited, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:hover, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152657_104386 .stacks_in_152657_104386-button {
		
			background-color: #99CC33;
		
	}

	#stacks_in_152657_104386 a.stacks_in_152657_104386-button, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152657_104386 a.stacks_in_152657_104386-button:hover, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #ADE047;
		
	}

	
	#stacks_in_152657_104386 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152657_104386 a.stacks_in_152657_104386-button:hover .button_icon, #stacks_in_152657_104386 a.stacks_in_152657_104386-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152658 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152658 {
		display: none !important;
	}
}
#stacks_in_152659_104390 .stacks_in_152659_104390-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152659_104390 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152659_104390 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152659_104390 .stacks_in_152659_104390-button,
#stacks_in_152659_104390 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152659_104390 {
		text-align: center;
	}

	#stacks_in_152659_104390 .stacks_in_152659_104390-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152659_104390 a.stacks_in_152659_104390-button, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:visited, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:hover, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152659_104390 .stacks_in_152659_104390-button {
		
			background-color: #FF9900;
		
	}

	#stacks_in_152659_104390 a.stacks_in_152659_104390-button, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152659_104390 a.stacks_in_152659_104390-button:hover, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #FFAD14;
		
	}

	
	#stacks_in_152659_104390 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152659_104390 a.stacks_in_152659_104390-button:hover .button_icon, #stacks_in_152659_104390 a.stacks_in_152659_104390-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152660 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152660 {
		display: none !important;
	}
}
#stacks_in_152661_104398 .stacks_in_152661_104398-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152661_104398 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152661_104398 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152661_104398 .stacks_in_152661_104398-button,
#stacks_in_152661_104398 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152661_104398 {
		text-align: center;
	}

	#stacks_in_152661_104398 .stacks_in_152661_104398-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152661_104398 a.stacks_in_152661_104398-button, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:visited, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:hover, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152661_104398 .stacks_in_152661_104398-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152661_104398 a.stacks_in_152661_104398-button, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152661_104398 a.stacks_in_152661_104398-button:hover, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152661_104398 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152661_104398 a.stacks_in_152661_104398-button:hover .button_icon, #stacks_in_152661_104398 a.stacks_in_152661_104398-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152662 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152662 {
		display: none !important;
	}
}
#stacks_in_152663_104864 .flat_button_2_alignment {
  font-size: 22px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_152663_104864 a,
#stacks_in_152663_104864 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_152663_104864 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_152663_104864 a i,
#stacks_in_152663_104864 a:visited i {
  font-size: 24px;
  display: inline-block;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152663_104864 a,
  #stacks_in_152663_104864 a:visited {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_152663_104864 a:hover,
  #stacks_in_152663_104864 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_152663_104864 a i,
  #stacks_in_152663_104864 a:visited i {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152663_104864 a:hover i,
  #stacks_in_152663_104864 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_152663_104864 a,
  #stacks_in_152663_104864 a:visited {
      width: 100%;
  }

  







.spacerStack {
	height: 8.00px;
}

#spacerStackstacks_in_152666 {
	height: 8.00px;
}




















@media print {
	#spacerStackstacks_in_152666 {
		display: none !important;
	}
}
#stacks_in_152667_104382 .stacks_in_152667_104382-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonOpenSans", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_152667_104382 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_152667_104382 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_152667_104382 .stacks_in_152667_104382-button,
#stacks_in_152667_104382 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_152667_104382 {
		text-align: center;
	}

	#stacks_in_152667_104382 .stacks_in_152667_104382-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_152667_104382 a.stacks_in_152667_104382-button, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:visited, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:hover, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_152667_104382 .stacks_in_152667_104382-button {
		
			background-color: #0066CC;
		
	}

	#stacks_in_152667_104382 a.stacks_in_152667_104382-button, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:visited {
		
			color: #FFFFFF !important;
			
	}

	#stacks_in_152667_104382 a.stacks_in_152667_104382-button:hover, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:active {
		
			text-decoration: none;
			color: #FFFFFF !important;
			background-color: #147AE0;
		
	}

	
	#stacks_in_152667_104382 .button_icon {
		
			background-color: #11209E;
		
	}

	#stacks_in_152667_104382 a.stacks_in_152667_104382-button:hover .button_icon, #stacks_in_152667_104382 a.stacks_in_152667_104382-button:active .button_icon {
		
			background-color: #2534B2;
				
	}
	



.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_147593 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_147593 {
		display: none !important;
	}
}
#stacks_in_150291 h3,#stacks_in_150291 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150291 h3 a,#stacks_in_150291 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150291 h3 a:hover,#stacks_in_150291 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150291 small,#stacks_in_150291 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150291 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_150291 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150291 {
	background-color: rgba(0, 0, 0, 0.50);
	padding: 40px 20px 6px 20px;
}
#stacks_in_149995>.s3_row {
	margin: 0 -0px;
}

#stacks_in_149995>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_149995>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_149995>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_149995>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149995>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_149995>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149995>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





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



.wow {
	visibility: hidden;
}

#stacks_in_149996_26 {
    background-image: url("1BCF27A7-618A-4780-B793-85A91E14F99A.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149996_28 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149996_28 {
		display: none !important;
	}
}
#stacks_in_149996_30 h5,#stacks_in_149996_30 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149996_30 h5 a,#stacks_in_149996_30 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149996_30 h5 a:hover,#stacks_in_149996_30 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149996_30 small,#stacks_in_149996_30 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149996_30 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_149996_37 h3,#stacks_in_149996_37 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149996_37 h3 a,#stacks_in_149996_37 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149996_37 h3 a:hover,#stacks_in_149996_37 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149996_37 small,#stacks_in_149996_37 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149996_37 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 125.00px;
}

#spacerStackstacks_in_149996_42 {
	height: 125.00px;
}




















@media print {
	#spacerStackstacks_in_149996_42 {
		display: none !important;
	}
}
#stacks_in_149996_57>.s3_row {
	margin: 0 -0px;
}

#stacks_in_149996_57>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_149996_57>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_149996_57>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_149996_57>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149996_57>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_149996_57>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149996_57>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_149996_43 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149996_43 a,
#stacks_in_149996_43 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149996_43 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149996_43 a i,
#stacks_in_149996_43 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149996_43 a,
  #stacks_in_149996_43 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_149996_43 a:hover,
  #stacks_in_149996_43 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149996_43 a i,
  #stacks_in_149996_43 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149996_43 a:hover i,
  #stacks_in_149996_43 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_149996_44 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149996_44 a,
#stacks_in_149996_44 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149996_44 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149996_44 a i,
#stacks_in_149996_44 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149996_44 a,
  #stacks_in_149996_44 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_149996_44 a:hover,
  #stacks_in_149996_44 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149996_44 a i,
  #stacks_in_149996_44 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149996_44 a:hover i,
  #stacks_in_149996_44 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149996_45 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149996_45 {
		display: none !important;
	}
}
#stacks_in_150778 *,
#stacks_in_150778 *:before,
#stacks_in_150778 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_149998_26 {
    background-image: url("1AC4E003-8C8A-494B-A704-7169B3F9EE69.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149998_28 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149998_28 {
		display: none !important;
	}
}
#stacks_in_149998_29 h5,#stacks_in_149998_29 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149998_29 h5 a,#stacks_in_149998_29 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149998_29 h5 a:hover,#stacks_in_149998_29 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149998_29 small,#stacks_in_149998_29 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149998_29 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_149998_35 h3,#stacks_in_149998_35 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149998_35 h3 a,#stacks_in_149998_35 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149998_35 h3 a:hover,#stacks_in_149998_35 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149998_35 small,#stacks_in_149998_35 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149998_35 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 125.00px;
}

#spacerStackstacks_in_149998_40 {
	height: 125.00px;
}




















@media print {
	#spacerStackstacks_in_149998_40 {
		display: none !important;
	}
}
#stacks_in_149998_55>.s3_row {
	margin: 0 -0px;
}

#stacks_in_149998_55>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_149998_55>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_149998_55>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_149998_55>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149998_55>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_149998_55>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149998_55>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_149998_41 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149998_41 a,
#stacks_in_149998_41 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149998_41 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149998_41 a i,
#stacks_in_149998_41 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149998_41 a,
  #stacks_in_149998_41 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_149998_41 a:hover,
  #stacks_in_149998_41 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149998_41 a i,
  #stacks_in_149998_41 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149998_41 a:hover i,
  #stacks_in_149998_41 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_149998_42 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149998_42 a,
#stacks_in_149998_42 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149998_42 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149998_42 a i,
#stacks_in_149998_42 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149998_42 a,
  #stacks_in_149998_42 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_149998_42 a:hover,
  #stacks_in_149998_42 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149998_42 a i,
  #stacks_in_149998_42 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149998_42 a:hover i,
  #stacks_in_149998_42 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149998_43 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149998_43 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_150000 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_150000 {
		display: none !important;
	}
}
#stacks_in_150366 h3,#stacks_in_150366 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150366 h3 a,#stacks_in_150366 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150366 h3 a:hover,#stacks_in_150366 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150366 small,#stacks_in_150366 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150366 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150366 {
	background-color: rgba(2, 90, 165, 1.00);
	padding: 40px 20px 6px 20px;
}
#stacks_in_150019>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150019>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_150019>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_150019>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_150019>.s3_row>.s3_column {
	padding: 0 0px;
}








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



}



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


	#stacks_in_150019>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150019>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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



.wow {
	visibility: hidden;
}

#stacks_in_150338 {
    background-image: url("0EF12D3D-FB06-44E8-A7A7-2CB30F147F4C.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150340 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150340 {
		display: none !important;
	}
}
#stacks_in_150342 h3,#stacks_in_150342 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150342 h3,#stacks_in_150342 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150342 h3,#stacks_in_150342 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150342 h3 a,#stacks_in_150342 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150342 h3 a:hover,#stacks_in_150342 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150342 small,#stacks_in_150342 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150342 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150342 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151744 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151744 {
		display: none !important;
	}
}
#stacks_in_150349>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150349>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150349>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150349>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150349>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150349>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150349>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150349>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150352 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150352 a,
#stacks_in_150352 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150352 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150352 a i,
#stacks_in_150352 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150352 a,
  #stacks_in_150352 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150352 a:hover,
  #stacks_in_150352 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150352 a i,
  #stacks_in_150352 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150352 a:hover i,
  #stacks_in_150352 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150350 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150350 a,
#stacks_in_150350 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150350 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150350 a i,
#stacks_in_150350 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150350 a,
  #stacks_in_150350 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150350 a:hover,
  #stacks_in_150350 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150350 a i,
  #stacks_in_150350 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150350 a:hover i,
  #stacks_in_150350 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150354 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150354 {
		display: none !important;
	}
}
#stacks_in_150317 *,
#stacks_in_150317 *:before,
#stacks_in_150317 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_150318 {
    background-image: url("39260518-B93A-4686-816D-3CF23226B75E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150320 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150320 {
		display: none !important;
	}
}
#stacks_in_150322 h3,#stacks_in_150322 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150322 h3,#stacks_in_150322 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150322 h3,#stacks_in_150322 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150322 h3 a,#stacks_in_150322 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150322 h3 a:hover,#stacks_in_150322 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150322 small,#stacks_in_150322 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150322 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150322 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151553 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151553 {
		display: none !important;
	}
}
#stacks_in_150329>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150329>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150329>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150329>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150329>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150329>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150329>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150329>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150332 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150332 a,
#stacks_in_150332 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150332 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150332 a i,
#stacks_in_150332 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150332 a,
  #stacks_in_150332 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150332 a:hover,
  #stacks_in_150332 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150332 a i,
  #stacks_in_150332 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150332 a:hover i,
  #stacks_in_150332 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150330 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150330 a,
#stacks_in_150330 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150330 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150330 a i,
#stacks_in_150330 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150330 a,
  #stacks_in_150330 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150330 a:hover,
  #stacks_in_150330 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150330 a i,
  #stacks_in_150330 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150330 a:hover i,
  #stacks_in_150330 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150334 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150334 {
		display: none !important;
	}
}
#stacks_in_150261 *,
#stacks_in_150261 *:before,
#stacks_in_150261 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_150262 {
    background-image: url("86200DF2-837D-4CCB-8D07-F7BE0E22B70E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150264 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150264 {
		display: none !important;
	}
}
#stacks_in_150305 h3,#stacks_in_150305 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150305 h3,#stacks_in_150305 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150305 h3,#stacks_in_150305 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150305 h3 a,#stacks_in_150305 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150305 h3 a:hover,#stacks_in_150305 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150305 small,#stacks_in_150305 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150305 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150305 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151743 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151743 {
		display: none !important;
	}
}
#stacks_in_150280>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150280>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150280>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150280>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150280>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150280>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150280>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150280>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150283 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150283 a,
#stacks_in_150283 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150283 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150283 a i,
#stacks_in_150283 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150283 a,
  #stacks_in_150283 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150283 a:hover,
  #stacks_in_150283 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150283 a i,
  #stacks_in_150283 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150283 a:hover i,
  #stacks_in_150283 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150281 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150281 a,
#stacks_in_150281 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150281 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150281 a i,
#stacks_in_150281 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150281 a,
  #stacks_in_150281 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150281 a:hover,
  #stacks_in_150281 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150281 a i,
  #stacks_in_150281 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150281 a:hover i,
  #stacks_in_150281 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150285 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150285 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_149067 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_149067 {
		display: none !important;
	}
}
#stacks_in_150403 h3,#stacks_in_150403 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150403 h3 a,#stacks_in_150403 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150403 h3 a:hover,#stacks_in_150403 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150403 small,#stacks_in_150403 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150403 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150403 {
	background-color: rgba(153, 204, 51, 1.00);
	padding: 40px 20px 6px 20px;
}
#stacks_in_149641>.s3_row {
	margin: 0 -0px;
}

#stacks_in_149641>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_149641>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_149641>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_149641>.s3_row>.s3_column {
	padding: 0 0px;
}








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



}



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


	#stacks_in_149641>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_149641>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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



.wow {
	visibility: hidden;
}

#stacks_in_150868 {
    background-image: url("F594442F-0F8B-495F-A0D2-BF5D10417DCF.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150870 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150870 {
		display: none !important;
	}
}
#stacks_in_150871 h3,#stacks_in_150871 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150871 h3,#stacks_in_150871 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150871 h3,#stacks_in_150871 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150871 h3 a,#stacks_in_150871 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150871 h3 a:hover,#stacks_in_150871 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150871 small,#stacks_in_150871 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150871 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150871 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151655 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151655 {
		display: none !important;
	}
}
#stacks_in_150982>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150982>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150982>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150982>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150982>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150982>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150982>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150982>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150883 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150883 a,
#stacks_in_150883 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150883 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150883 a i,
#stacks_in_150883 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150883 a,
  #stacks_in_150883 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150883 a:hover,
  #stacks_in_150883 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150883 a i,
  #stacks_in_150883 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150883 a:hover i,
  #stacks_in_150883 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150884 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150884 a,
#stacks_in_150884 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150884 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150884 a i,
#stacks_in_150884 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150884 a,
  #stacks_in_150884 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150884 a:hover,
  #stacks_in_150884 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150884 a i,
  #stacks_in_150884 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150884 a:hover i,
  #stacks_in_150884 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150877 div,#stacks_in_150877 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150877 div a,#stacks_in_150877 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150877 div a:hover,#stacks_in_150877 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150877 small,#stacks_in_150877 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150877 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

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



.wow {
	visibility: hidden;
}

#stacks_in_150848 {
    background-image: url("F2AFE9E2-C2F1-4B18-976B-4244DF95858E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150850 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150850 {
		display: none !important;
	}
}
#stacks_in_150851 h3,#stacks_in_150851 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150851 h3,#stacks_in_150851 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150851 h3,#stacks_in_150851 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150851 h3 a,#stacks_in_150851 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150851 h3 a:hover,#stacks_in_150851 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150851 small,#stacks_in_150851 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150851 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150851 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151656 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151656 {
		display: none !important;
	}
}
#stacks_in_150987>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150987>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150987>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150987>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150987>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150987>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150987>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150987>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150863 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150863 a,
#stacks_in_150863 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150863 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150863 a i,
#stacks_in_150863 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150863 a,
  #stacks_in_150863 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150863 a:hover,
  #stacks_in_150863 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150863 a i,
  #stacks_in_150863 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150863 a:hover i,
  #stacks_in_150863 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150864 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150864 a,
#stacks_in_150864 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150864 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150864 a i,
#stacks_in_150864 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150864 a,
  #stacks_in_150864 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150864 a:hover,
  #stacks_in_150864 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150864 a i,
  #stacks_in_150864 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150864 a:hover i,
  #stacks_in_150864 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150857 div,#stacks_in_150857 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150857 div a,#stacks_in_150857 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150857 div a:hover,#stacks_in_150857 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150857 small,#stacks_in_150857 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150857 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

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



.wow {
	visibility: hidden;
}

#stacks_in_150944 {
    background-image: url("C336A1C2-D486-41AC-B17C-AD85A3139363.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150946 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150946 {
		display: none !important;
	}
}
#stacks_in_150947 h3,#stacks_in_150947 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150947 h3,#stacks_in_150947 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150947 h3,#stacks_in_150947 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150947 h3 a,#stacks_in_150947 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150947 h3 a:hover,#stacks_in_150947 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150947 small,#stacks_in_150947 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150947 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150947 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151657 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151657 {
		display: none !important;
	}
}
#stacks_in_150990>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150990>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150990>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150990>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150990>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150990>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150990>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150990>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150959 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150959 a,
#stacks_in_150959 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150959 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150959 a i,
#stacks_in_150959 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150959 a,
  #stacks_in_150959 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150959 a:hover,
  #stacks_in_150959 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150959 a i,
  #stacks_in_150959 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150959 a:hover i,
  #stacks_in_150959 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150960 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150960 a,
#stacks_in_150960 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150960 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150960 a i,
#stacks_in_150960 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150960 a,
  #stacks_in_150960 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150960 a:hover,
  #stacks_in_150960 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150960 a i,
  #stacks_in_150960 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150960 a:hover i,
  #stacks_in_150960 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150953 div,#stacks_in_150953 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150953 div a,#stacks_in_150953 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150953 div a:hover,#stacks_in_150953 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150953 small,#stacks_in_150953 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150953 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_150925>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150925>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150925>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150925>.s3_row>.s3_column {
	padding: 0 0px;
}










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



}



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


	#stacks_in_150925>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150925>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





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



.wow {
	visibility: hidden;
}

#stacks_in_150808 {
    background-image: url("D4873201-1D6D-43A9-A224-1956258F3DBF.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150810 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150810 {
		display: none !important;
	}
}
#stacks_in_150811 h3,#stacks_in_150811 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150811 h3,#stacks_in_150811 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150811 h3,#stacks_in_150811 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150811 h3 a,#stacks_in_150811 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150811 h3 a:hover,#stacks_in_150811 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150811 small,#stacks_in_150811 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150811 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150811 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151653 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151653 {
		display: none !important;
	}
}
#stacks_in_150993>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150993>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150993>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150993>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150993>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150993>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150993>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150993>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150823 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150823 a,
#stacks_in_150823 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150823 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150823 a i,
#stacks_in_150823 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150823 a,
  #stacks_in_150823 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150823 a:hover,
  #stacks_in_150823 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150823 a i,
  #stacks_in_150823 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150823 a:hover i,
  #stacks_in_150823 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150824 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150824 a,
#stacks_in_150824 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150824 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150824 a i,
#stacks_in_150824 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150824 a,
  #stacks_in_150824 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150824 a:hover,
  #stacks_in_150824 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150824 a i,
  #stacks_in_150824 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150824 a:hover i,
  #stacks_in_150824 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150817 div,#stacks_in_150817 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150817 div a,#stacks_in_150817 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150817 div a:hover,#stacks_in_150817 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150817 small,#stacks_in_150817 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150817 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

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



.wow {
	visibility: hidden;
}

#stacks_in_150788 {
    background-image: url("21B9AF2A-D820-412B-A5B5-9767AA14ABA5.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150790 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150790 {
		display: none !important;
	}
}
#stacks_in_150791 h3,#stacks_in_150791 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150791 h3,#stacks_in_150791 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150791 h3,#stacks_in_150791 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150791 h3 a,#stacks_in_150791 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150791 h3 a:hover,#stacks_in_150791 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150791 small,#stacks_in_150791 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150791 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150791 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_151654 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_151654 {
		display: none !important;
	}
}
#stacks_in_150996>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150996>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_150996>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_150996>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_150996>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150996>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_150996>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_150996>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_150803 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150803 a,
#stacks_in_150803 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150803 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150803 a i,
#stacks_in_150803 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150803 a,
  #stacks_in_150803 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_150803 a:hover,
  #stacks_in_150803 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150803 a i,
  #stacks_in_150803 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150803 a:hover i,
  #stacks_in_150803 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150804 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_150804 a,
#stacks_in_150804 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_150804 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_150804 a i,
#stacks_in_150804 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_150804 a,
  #stacks_in_150804 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_150804 a:hover,
  #stacks_in_150804 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_150804 a i,
  #stacks_in_150804 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_150804 a:hover i,
  #stacks_in_150804 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_150797 div,#stacks_in_150797 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150797 div a,#stacks_in_150797 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150797 div a:hover,#stacks_in_150797 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150797 small,#stacks_in_150797 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150797 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_152517 h5,#stacks_in_152517 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152517 h5 a,#stacks_in_152517 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152517 h5 a:hover,#stacks_in_152517 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152517 small,#stacks_in_152517 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152517 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152517 {
	background-color: rgba(153, 204, 51, 1.00);
	padding: 20px 20px 0px 20px;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_149070 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_149070 {
		display: none !important;
	}
}
#stacks_in_150475 h3,#stacks_in_150475 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150475 h3 a,#stacks_in_150475 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150475 h3 a:hover,#stacks_in_150475 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150475 small,#stacks_in_150475 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150475 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150475 {
	background-color: rgba(255, 153, 0, 1.00);
	padding: 40px 20px 6px 20px;
}
#stacks_in_151147>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151147>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151147>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151147>.s3_row>.s3_column {
	padding: 0 0px;
}










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



}



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


	#stacks_in_151147>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151147>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





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



.wow {
	visibility: hidden;
}

#stacks_in_150454 {
    background-image: url("023D997C-1758-4BE6-BB57-974845C3059A.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150456 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150456 {
		display: none !important;
	}
}
#stacks_in_150459 h3,#stacks_in_150459 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150459 h3,#stacks_in_150459 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150459 h3,#stacks_in_150459 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150459 h3 a,#stacks_in_150459 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150459 h3 a:hover,#stacks_in_150459 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150459 small,#stacks_in_150459 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150459 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150459 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151032 div,#stacks_in_151032 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151032 div a,#stacks_in_151032 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151032 div a:hover,#stacks_in_151032 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151032 small,#stacks_in_151032 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151032 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151032 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_150457 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_150457 {
		display: none !important;
	}
}
#stacks_in_151126>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151126>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151126>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151126>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151126>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151126>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151126>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151126>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151129 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151129 a,
#stacks_in_151129 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151129 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151129 a i,
#stacks_in_151129 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151129 a,
  #stacks_in_151129 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151129 a:hover,
  #stacks_in_151129 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151129 a i,
  #stacks_in_151129 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151129 a:hover i,
  #stacks_in_151129 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151127 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151127 a,
#stacks_in_151127 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151127 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151127 a i,
#stacks_in_151127 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151127 a,
  #stacks_in_151127 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151127 a:hover,
  #stacks_in_151127 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151127 a i,
  #stacks_in_151127 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151127 a:hover i,
  #stacks_in_151127 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150471 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150471 {
		display: none !important;
	}
}
#stacks_in_150413 *,
#stacks_in_150413 *:before,
#stacks_in_150413 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_150414 {
    background-image: url("054BA4D2-00C6-427D-897A-5C4FD07ACBD0.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150416 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150416 {
		display: none !important;
	}
}
#stacks_in_150419 h3,#stacks_in_150419 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_150419 h3,#stacks_in_150419 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_150419 h3,#stacks_in_150419 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150419 h3 a,#stacks_in_150419 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150419 h3 a:hover,#stacks_in_150419 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150419 small,#stacks_in_150419 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150419 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150419 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151020 div,#stacks_in_151020 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151020 div a,#stacks_in_151020 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151020 div a:hover,#stacks_in_151020 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151020 small,#stacks_in_151020 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151020 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151020 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151038 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151038 {
		display: none !important;
	}
}
#stacks_in_151136>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151136>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151136>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151136>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151136>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151136>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151136>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151136>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151139 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151139 a,
#stacks_in_151139 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151139 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151139 a i,
#stacks_in_151139 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151139 a,
  #stacks_in_151139 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151139 a:hover,
  #stacks_in_151139 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151139 a i,
  #stacks_in_151139 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151139 a:hover i,
  #stacks_in_151139 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151137 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151137 a,
#stacks_in_151137 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151137 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151137 a i,
#stacks_in_151137 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151137 a,
  #stacks_in_151137 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151137 a:hover,
  #stacks_in_151137 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151137 a i,
  #stacks_in_151137 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151137 a:hover i,
  #stacks_in_151137 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_150431 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_150431 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_147602 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_147602 {
		display: none !important;
	}
}
#stacks_in_150497 h3,#stacks_in_150497 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_150497 h3 a,#stacks_in_150497 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_150497 h3 a:hover,#stacks_in_150497 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_150497 small,#stacks_in_150497 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_150497 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_150497 {
	background-color: rgba(0, 0, 0, 1.00);
	padding: 40px 20px 6px 20px;
}
#stacks_in_149677 *,
#stacks_in_149677 *:before,
#stacks_in_149677 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_149678 {
    background-image: url("445D51BC-30CD-47DA-8905-D50727A048BA.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149680 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149680 {
		display: none !important;
	}
}
#stacks_in_149681 h5,#stacks_in_149681 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149681 h5 a,#stacks_in_149681 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149681 h5 a:hover,#stacks_in_149681 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149681 small,#stacks_in_149681 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149681 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_149687 h3,#stacks_in_149687 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_149687 h3 a,#stacks_in_149687 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_149687 h3 a:hover,#stacks_in_149687 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_149687 small,#stacks_in_149687 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_149687 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151546 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151546 {
		display: none !important;
	}
}
#stacks_in_149695>.s3_row {
	margin: 0 -10px;
}

#stacks_in_149695>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_149695>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_149695>.s3_row>.s3_column {
	padding: 0 10px;
}










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


	#stacks_in_149695>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_149695>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}



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


	#stacks_in_149695>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_149695>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





#stacks_in_149700 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149700 a,
#stacks_in_149700 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149700 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149700 a i,
#stacks_in_149700 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149700 a,
  #stacks_in_149700 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_149700 a:hover,
  #stacks_in_149700 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149700 a i,
  #stacks_in_149700 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149700 a:hover i,
  #stacks_in_149700 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_149701 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_149701 a,
#stacks_in_149701 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_149701 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_149701 a i,
#stacks_in_149701 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_149701 a,
  #stacks_in_149701 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_149701 a:hover,
  #stacks_in_149701 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_149701 a i,
  #stacks_in_149701 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_149701 a:hover i,
  #stacks_in_149701 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_149694 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_149694 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_150002 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_150002 {
		display: none !important;
	}
}
#stacks_in_151175 h3,#stacks_in_151175 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151175 h3 a,#stacks_in_151175 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151175 h3 a:hover,#stacks_in_151175 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151175 small,#stacks_in_151175 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151175 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151175 {
	background-color: rgba(255, 153, 0, 1.00);
	padding: 40px 20px 6px 20px;
}



#stacks_in_151238 .bricks_loader {
  display: none;
  width: 26px;
  height: 26px;
  margin: 20px auto;
}


#stacks_in_151256 {
    background-image: url("70E718AA-0815-4BD1-881B-A94E6BAC5C3E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151257 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151257 {
		display: none !important;
	}
}
#stacks_in_151258 h3,#stacks_in_151258 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151258 h3,#stacks_in_151258 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151258 h3,#stacks_in_151258 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151258 h3 a,#stacks_in_151258 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151258 h3 a:hover,#stacks_in_151258 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151258 small,#stacks_in_151258 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151258 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151258 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151264 div,#stacks_in_151264 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151264 div a,#stacks_in_151264 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151264 div a:hover,#stacks_in_151264 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151264 small,#stacks_in_151264 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151264 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151264 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151269 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151269 {
		display: none !important;
	}
}
#stacks_in_151270>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151270>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151270>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151270>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151270>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151270>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151270>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151270>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151273 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151273 a,
#stacks_in_151273 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151273 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151273 a i,
#stacks_in_151273 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151273 a,
  #stacks_in_151273 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151273 a:hover,
  #stacks_in_151273 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151273 a i,
  #stacks_in_151273 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151273 a:hover i,
  #stacks_in_151273 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151271 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151271 a,
#stacks_in_151271 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151271 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151271 a i,
#stacks_in_151271 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151271 a,
  #stacks_in_151271 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151271 a:hover,
  #stacks_in_151271 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151271 a i,
  #stacks_in_151271 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151271 a:hover i,
  #stacks_in_151271 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151275 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151275 {
		display: none !important;
	}
}

#stacks_in_151276 {
    background-image: url("B22CA4C0-3794-48FA-BB9A-1E4F970FA89D.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151277 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151277 {
		display: none !important;
	}
}
#stacks_in_151278 h3,#stacks_in_151278 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151278 h3,#stacks_in_151278 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151278 h3,#stacks_in_151278 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151278 h3 a,#stacks_in_151278 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151278 h3 a:hover,#stacks_in_151278 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151278 small,#stacks_in_151278 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151278 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151278 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151284 div,#stacks_in_151284 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151284 div a,#stacks_in_151284 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151284 div a:hover,#stacks_in_151284 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151284 small,#stacks_in_151284 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151284 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151284 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151289 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151289 {
		display: none !important;
	}
}
#stacks_in_151290>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151290>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151290>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151290>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151290>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151290>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151290>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151290>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151293 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151293 a,
#stacks_in_151293 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151293 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151293 a i,
#stacks_in_151293 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151293 a,
  #stacks_in_151293 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151293 a:hover,
  #stacks_in_151293 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151293 a i,
  #stacks_in_151293 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151293 a:hover i,
  #stacks_in_151293 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151291 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151291 a,
#stacks_in_151291 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151291 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151291 a i,
#stacks_in_151291 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151291 a,
  #stacks_in_151291 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151291 a:hover,
  #stacks_in_151291 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151291 a i,
  #stacks_in_151291 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151291 a:hover i,
  #stacks_in_151291 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151295 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151295 {
		display: none !important;
	}
}

#stacks_in_151206 {
    background-image: url("2520838B-3DB5-47ED-854C-3DBE3BD85C33.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151208 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151208 {
		display: none !important;
	}
}
#stacks_in_151209 h3,#stacks_in_151209 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151209 h3,#stacks_in_151209 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151209 h3,#stacks_in_151209 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151209 h3 a,#stacks_in_151209 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151209 h3 a:hover,#stacks_in_151209 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151209 small,#stacks_in_151209 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151209 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151209 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151215 div,#stacks_in_151215 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151215 div a,#stacks_in_151215 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151215 div a:hover,#stacks_in_151215 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151215 small,#stacks_in_151215 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151215 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151215 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151220 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151220 {
		display: none !important;
	}
}
#stacks_in_151221>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151221>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151221>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151221>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151221>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151221>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151221>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151221>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151224 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151224 a,
#stacks_in_151224 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151224 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151224 a i,
#stacks_in_151224 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151224 a,
  #stacks_in_151224 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151224 a:hover,
  #stacks_in_151224 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151224 a i,
  #stacks_in_151224 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151224 a:hover i,
  #stacks_in_151224 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151222 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151222 a,
#stacks_in_151222 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151222 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151222 a i,
#stacks_in_151222 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151222 a,
  #stacks_in_151222 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151222 a:hover,
  #stacks_in_151222 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151222 a i,
  #stacks_in_151222 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151222 a:hover i,
  #stacks_in_151222 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151226 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151226 {
		display: none !important;
	}
}

#stacks_in_151296 {
    background-image: url("CC00D859-330B-4FBE-8E8B-C48FEDAEF4D1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151297 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151297 {
		display: none !important;
	}
}
#stacks_in_151298 h3,#stacks_in_151298 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151298 h3,#stacks_in_151298 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151298 h3,#stacks_in_151298 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151298 h3 a,#stacks_in_151298 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151298 h3 a:hover,#stacks_in_151298 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151298 small,#stacks_in_151298 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151298 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151298 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151304 div,#stacks_in_151304 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151304 div a,#stacks_in_151304 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151304 div a:hover,#stacks_in_151304 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151304 small,#stacks_in_151304 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151304 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151304 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151309 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151309 {
		display: none !important;
	}
}
#stacks_in_151310>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151310>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151310>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151310>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151310>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151310>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151310>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151310>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151313 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151313 a,
#stacks_in_151313 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151313 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151313 a i,
#stacks_in_151313 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151313 a,
  #stacks_in_151313 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151313 a:hover,
  #stacks_in_151313 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151313 a i,
  #stacks_in_151313 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151313 a:hover i,
  #stacks_in_151313 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151311 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151311 a,
#stacks_in_151311 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151311 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151311 a i,
#stacks_in_151311 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151311 a,
  #stacks_in_151311 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151311 a:hover,
  #stacks_in_151311 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151311 a i,
  #stacks_in_151311 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151311 a:hover i,
  #stacks_in_151311 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151315 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151315 {
		display: none !important;
	}
}

#stacks_in_151316 {
    background-image: url("867F8C3D-9814-4EB0-85F2-4461552F05A8.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151317 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151317 {
		display: none !important;
	}
}
#stacks_in_151318 h3,#stacks_in_151318 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151318 h3,#stacks_in_151318 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151318 h3,#stacks_in_151318 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151318 h3 a,#stacks_in_151318 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151318 h3 a:hover,#stacks_in_151318 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151318 small,#stacks_in_151318 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151318 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151318 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151324 div,#stacks_in_151324 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151324 div a,#stacks_in_151324 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151324 div a:hover,#stacks_in_151324 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151324 small,#stacks_in_151324 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151324 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151324 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151329 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151329 {
		display: none !important;
	}
}
#stacks_in_151330>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151330>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151330>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151330>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151330>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151330>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151330>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151330>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151333 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151333 a,
#stacks_in_151333 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151333 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151333 a i,
#stacks_in_151333 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151333 a,
  #stacks_in_151333 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151333 a:hover,
  #stacks_in_151333 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151333 a i,
  #stacks_in_151333 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151333 a:hover i,
  #stacks_in_151333 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151331 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151331 a,
#stacks_in_151331 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151331 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151331 a i,
#stacks_in_151331 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151331 a,
  #stacks_in_151331 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151331 a:hover,
  #stacks_in_151331 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151331 a i,
  #stacks_in_151331 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151331 a:hover i,
  #stacks_in_151331 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151335 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151335 {
		display: none !important;
	}
}

#stacks_in_151336 {
    background-image: url("22430069-C004-4C61-9923-EF1DCE91FB92.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151337 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151337 {
		display: none !important;
	}
}
#stacks_in_151338 h3,#stacks_in_151338 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151338 h3,#stacks_in_151338 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151338 h3,#stacks_in_151338 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151338 h3 a,#stacks_in_151338 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151338 h3 a:hover,#stacks_in_151338 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151338 small,#stacks_in_151338 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151338 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151338 {
	background-color: rgba(255, 153, 0, 0.50);
	padding: 10px 0px 0px 0px;
}
#stacks_in_151344 div,#stacks_in_151344 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151344 div a,#stacks_in_151344 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151344 div a:hover,#stacks_in_151344 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151344 small,#stacks_in_151344 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151344 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151344 {
	background-color: rgba(255, 153, 0, 0.50);
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_151349 {
	height: 150.00px;
}




















@media print {
	#spacerStackstacks_in_151349 {
		display: none !important;
	}
}
#stacks_in_151350>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151350>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151350>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151350>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151350>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151350>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151350>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151350>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151353 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151353 a,
#stacks_in_151353 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151353 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151353 a i,
#stacks_in_151353 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151353 a,
  #stacks_in_151353 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151353 a:hover,
  #stacks_in_151353 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151353 a i,
  #stacks_in_151353 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151353 a:hover i,
  #stacks_in_151353 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151351 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151351 a,
#stacks_in_151351 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151351 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151351 a i,
#stacks_in_151351 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151351 a,
  #stacks_in_151351 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151351 a:hover,
  #stacks_in_151351 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151351 a i,
  #stacks_in_151351 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151351 a:hover i,
  #stacks_in_151351 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151355 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151355 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_151228 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_151228 {
		display: none !important;
	}
}
#stacks_in_151663 h3,#stacks_in_151663 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151663 h3 a,#stacks_in_151663 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151663 h3 a:hover,#stacks_in_151663 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151663 small,#stacks_in_151663 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151663 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151663 {
	background-color: rgba(2, 90, 165, 1.00);
	padding: 40px 20px 6px 20px;
}



#stacks_in_151669 .bricks_loader {
  display: none;
  width: 26px;
  height: 26px;
  margin: 20px auto;
}


#stacks_in_151745 {
    background-image: url("D22C1CC3-281D-4C62-8995-AB21BC320072.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151746 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151746 {
		display: none !important;
	}
}
#stacks_in_151747 h3,#stacks_in_151747 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151747 h3,#stacks_in_151747 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151747 h3,#stacks_in_151747 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151747 h3 a,#stacks_in_151747 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151747 h3 a:hover,#stacks_in_151747 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151747 small,#stacks_in_151747 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151747 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151747 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151753 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151753 {
		display: none !important;
	}
}
#stacks_in_151754>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151754>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151754>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151754>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151754>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151754>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151754>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151754>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151757 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151757 a,
#stacks_in_151757 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151757 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151757 a i,
#stacks_in_151757 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151757 a,
  #stacks_in_151757 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151757 a:hover,
  #stacks_in_151757 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151757 a i,
  #stacks_in_151757 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151757 a:hover i,
  #stacks_in_151757 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151755 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151755 a,
#stacks_in_151755 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151755 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151755 a i,
#stacks_in_151755 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151755 a,
  #stacks_in_151755 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151755 a:hover,
  #stacks_in_151755 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151755 a i,
  #stacks_in_151755 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151755 a:hover i,
  #stacks_in_151755 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151759 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151759 {
		display: none !important;
	}
}

#stacks_in_151762 {
    background-image: url("948C8F70-0594-46B0-AA67-751410C7C244.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151763 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151763 {
		display: none !important;
	}
}
#stacks_in_151764 h3,#stacks_in_151764 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151764 h3,#stacks_in_151764 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151764 h3,#stacks_in_151764 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151764 h3 a,#stacks_in_151764 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151764 h3 a:hover,#stacks_in_151764 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151764 small,#stacks_in_151764 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151764 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151764 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151770 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151770 {
		display: none !important;
	}
}
#stacks_in_151771>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151771>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151771>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151771>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151771>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151771>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151771>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151771>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151774 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151774 a,
#stacks_in_151774 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151774 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151774 a i,
#stacks_in_151774 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151774 a,
  #stacks_in_151774 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151774 a:hover,
  #stacks_in_151774 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151774 a i,
  #stacks_in_151774 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151774 a:hover i,
  #stacks_in_151774 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151772 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151772 a,
#stacks_in_151772 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151772 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151772 a i,
#stacks_in_151772 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151772 a,
  #stacks_in_151772 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151772 a:hover,
  #stacks_in_151772 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151772 a i,
  #stacks_in_151772 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151772 a:hover i,
  #stacks_in_151772 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151776 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151776 {
		display: none !important;
	}
}

#stacks_in_151777 {
    background-image: url("C5121D37-7A1D-4444-97F9-ABACFA7A9539.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151778 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151778 {
		display: none !important;
	}
}
#stacks_in_151779 h3,#stacks_in_151779 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151779 h3,#stacks_in_151779 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151779 h3,#stacks_in_151779 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151779 h3 a,#stacks_in_151779 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151779 h3 a:hover,#stacks_in_151779 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151779 small,#stacks_in_151779 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151779 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151779 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151785 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151785 {
		display: none !important;
	}
}
#stacks_in_151786>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151786>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151786>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151786>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151786>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151786>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151786>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151786>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151789 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151789 a,
#stacks_in_151789 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151789 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151789 a i,
#stacks_in_151789 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151789 a,
  #stacks_in_151789 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151789 a:hover,
  #stacks_in_151789 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151789 a i,
  #stacks_in_151789 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151789 a:hover i,
  #stacks_in_151789 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151787 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151787 a,
#stacks_in_151787 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151787 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151787 a i,
#stacks_in_151787 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151787 a,
  #stacks_in_151787 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151787 a:hover,
  #stacks_in_151787 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151787 a i,
  #stacks_in_151787 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151787 a:hover i,
  #stacks_in_151787 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151791 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151791 {
		display: none !important;
	}
}

#stacks_in_151809 {
    background-image: url("3CAD1CEF-11D7-48CA-9E0C-3FC38A315872.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151810 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151810 {
		display: none !important;
	}
}
#stacks_in_151811 h3,#stacks_in_151811 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151811 h3,#stacks_in_151811 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151811 h3,#stacks_in_151811 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151811 h3 a,#stacks_in_151811 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151811 h3 a:hover,#stacks_in_151811 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151811 small,#stacks_in_151811 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151811 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151811 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151817 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151817 {
		display: none !important;
	}
}
#stacks_in_151818>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151818>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151818>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151818>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151818>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151818>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151818>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151818>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151821 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151821 a,
#stacks_in_151821 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151821 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151821 a i,
#stacks_in_151821 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151821 a,
  #stacks_in_151821 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151821 a:hover,
  #stacks_in_151821 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151821 a i,
  #stacks_in_151821 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151821 a:hover i,
  #stacks_in_151821 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151819 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151819 a,
#stacks_in_151819 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151819 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151819 a i,
#stacks_in_151819 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151819 a,
  #stacks_in_151819 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151819 a:hover,
  #stacks_in_151819 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151819 a i,
  #stacks_in_151819 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151819 a:hover i,
  #stacks_in_151819 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151823 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151823 {
		display: none !important;
	}
}

#stacks_in_151792 {
    background-image: url("932794BA-68B6-4F73-8BA3-84DB8C3A995F.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151793 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151793 {
		display: none !important;
	}
}
#stacks_in_151794 h3,#stacks_in_151794 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151794 h3,#stacks_in_151794 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151794 h3,#stacks_in_151794 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151794 h3 a,#stacks_in_151794 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151794 h3 a:hover,#stacks_in_151794 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151794 small,#stacks_in_151794 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151794 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151794 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151800 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151800 {
		display: none !important;
	}
}
#stacks_in_151801>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151801>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151801>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151801>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151801>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151801>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151801>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151801>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151804 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151804 a,
#stacks_in_151804 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151804 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151804 a i,
#stacks_in_151804 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151804 a,
  #stacks_in_151804 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151804 a:hover,
  #stacks_in_151804 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151804 a i,
  #stacks_in_151804 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151804 a:hover i,
  #stacks_in_151804 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151802 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151802 a,
#stacks_in_151802 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151802 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151802 a i,
#stacks_in_151802 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151802 a,
  #stacks_in_151802 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151802 a:hover,
  #stacks_in_151802 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151802 a i,
  #stacks_in_151802 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151802 a:hover i,
  #stacks_in_151802 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151806 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151806 {
		display: none !important;
	}
}

#stacks_in_151824 {
    background-image: url("B44C71A3-DFEF-4AD1-858A-5AAFEE51C641.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151825 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151825 {
		display: none !important;
	}
}
#stacks_in_151826 h3,#stacks_in_151826 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151826 h3,#stacks_in_151826 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151826 h3,#stacks_in_151826 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151826 h3 a,#stacks_in_151826 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151826 h3 a:hover,#stacks_in_151826 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151826 small,#stacks_in_151826 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151826 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151826 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151832 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151832 {
		display: none !important;
	}
}
#stacks_in_151833>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151833>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151833>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151833>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151833>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151833>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151833>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151833>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151836 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151836 a,
#stacks_in_151836 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151836 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151836 a i,
#stacks_in_151836 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151836 a,
  #stacks_in_151836 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151836 a:hover,
  #stacks_in_151836 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151836 a i,
  #stacks_in_151836 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151836 a:hover i,
  #stacks_in_151836 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151834 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151834 a,
#stacks_in_151834 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151834 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151834 a i,
#stacks_in_151834 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151834 a,
  #stacks_in_151834 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151834 a:hover,
  #stacks_in_151834 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151834 a i,
  #stacks_in_151834 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151834 a:hover i,
  #stacks_in_151834 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151838 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151838 {
		display: none !important;
	}
}

#stacks_in_151988 {
    background-image: url("8C67E654-8805-4A24-8D8D-12078E43F338.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151989 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151989 {
		display: none !important;
	}
}
#stacks_in_151990 h3,#stacks_in_151990 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151990 h3,#stacks_in_151990 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151990 h3,#stacks_in_151990 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151990 h3 a,#stacks_in_151990 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151990 h3 a:hover,#stacks_in_151990 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151990 small,#stacks_in_151990 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151990 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151990 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151996 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151996 {
		display: none !important;
	}
}
#stacks_in_151997>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151997>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151997>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151997>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151997>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151997>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151997>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151997>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152000 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152000 a,
#stacks_in_152000 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152000 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152000 a i,
#stacks_in_152000 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152000 a,
  #stacks_in_152000 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152000 a:hover,
  #stacks_in_152000 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152000 a i,
  #stacks_in_152000 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152000 a:hover i,
  #stacks_in_152000 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151998 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151998 a,
#stacks_in_151998 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151998 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151998 a i,
#stacks_in_151998 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151998 a,
  #stacks_in_151998 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151998 a:hover,
  #stacks_in_151998 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151998 a i,
  #stacks_in_151998 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151998 a:hover i,
  #stacks_in_151998 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152002 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152002 {
		display: none !important;
	}
}

#stacks_in_151965 {
    background-image: url("445C8C5D-08AB-4E97-B382-4FC4CF4595D4.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151966 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151966 {
		display: none !important;
	}
}
#stacks_in_151967 h3,#stacks_in_151967 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_151967 h3,#stacks_in_151967 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_151967 h3,#stacks_in_151967 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_151967 h3 a,#stacks_in_151967 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_151967 h3 a:hover,#stacks_in_151967 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_151967 small,#stacks_in_151967 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_151967 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_151967 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_151973 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_151973 {
		display: none !important;
	}
}
#stacks_in_151974>.s3_row {
	margin: 0 -0px;
}

#stacks_in_151974>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_151974>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_151974>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_151974>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151974>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_151974>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_151974>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_151977 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151977 a,
#stacks_in_151977 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151977 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151977 a i,
#stacks_in_151977 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151977 a,
  #stacks_in_151977 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151977 a:hover,
  #stacks_in_151977 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_151977 a i,
  #stacks_in_151977 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151977 a:hover i,
  #stacks_in_151977 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_151975 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_151975 a,
#stacks_in_151975 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_151975 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_151975 a i,
#stacks_in_151975 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_151975 a,
  #stacks_in_151975 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_151975 a:hover,
  #stacks_in_151975 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_151975 a i,
  #stacks_in_151975 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_151975 a:hover i,
  #stacks_in_151975 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_151979 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_151979 {
		display: none !important;
	}
}

#stacks_in_152003 {
    background-image: url("7292092A-1DB4-491B-A631-292889929946.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152004 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152004 {
		display: none !important;
	}
}
#stacks_in_152005 h3,#stacks_in_152005 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152005 h3,#stacks_in_152005 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152005 h3,#stacks_in_152005 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152005 h3 a,#stacks_in_152005 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152005 h3 a:hover,#stacks_in_152005 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152005 small,#stacks_in_152005 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152005 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152005 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_152011 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_152011 {
		display: none !important;
	}
}
#stacks_in_152012>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152012>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152012>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152012>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152012>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152012>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152012>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152012>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152015 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152015 a,
#stacks_in_152015 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152015 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152015 a i,
#stacks_in_152015 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152015 a,
  #stacks_in_152015 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152015 a:hover,
  #stacks_in_152015 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152015 a i,
  #stacks_in_152015 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152015 a:hover i,
  #stacks_in_152015 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152013 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152013 a,
#stacks_in_152013 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152013 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152013 a i,
#stacks_in_152013 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152013 a,
  #stacks_in_152013 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152013 a:hover,
  #stacks_in_152013 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152013 a i,
  #stacks_in_152013 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152013 a:hover i,
  #stacks_in_152013 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152017 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152017 {
		display: none !important;
	}
}

#stacks_in_152063 {
    background-image: url("6BE6FDA2-4415-41F9-B271-7DBD0BEA5B85.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152064 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152064 {
		display: none !important;
	}
}
#stacks_in_152065 h3,#stacks_in_152065 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152065 h3,#stacks_in_152065 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152065 h3,#stacks_in_152065 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152065 h3 a,#stacks_in_152065 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152065 h3 a:hover,#stacks_in_152065 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152065 small,#stacks_in_152065 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152065 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152065 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_152071 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_152071 {
		display: none !important;
	}
}
#stacks_in_152072>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152072>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152072>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152072>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152072>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152072>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152072>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152072>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152075 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152075 a,
#stacks_in_152075 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152075 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152075 a i,
#stacks_in_152075 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152075 a,
  #stacks_in_152075 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152075 a:hover,
  #stacks_in_152075 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152075 a i,
  #stacks_in_152075 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152075 a:hover i,
  #stacks_in_152075 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152073 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152073 a,
#stacks_in_152073 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152073 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152073 a i,
#stacks_in_152073 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152073 a,
  #stacks_in_152073 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152073 a:hover,
  #stacks_in_152073 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152073 a i,
  #stacks_in_152073 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152073 a:hover i,
  #stacks_in_152073 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152077 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152077 {
		display: none !important;
	}
}

#stacks_in_152044 {
    background-image: url("9C9E32E1-FF21-4E62-9979-7412C409BEE0.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152045 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152045 {
		display: none !important;
	}
}
#stacks_in_152046 h3,#stacks_in_152046 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152046 h3,#stacks_in_152046 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152046 h3,#stacks_in_152046 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152046 h3 a,#stacks_in_152046 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152046 h3 a:hover,#stacks_in_152046 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152046 small,#stacks_in_152046 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152046 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152046 {
	background-color: rgba(0, 71, 132, 0.50);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 174.00px;
}

#spacerStackstacks_in_152052 {
	height: 174.00px;
}




















@media print {
	#spacerStackstacks_in_152052 {
		display: none !important;
	}
}
#stacks_in_152053>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152053>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152053>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152053>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152053>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152053>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152053>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152053>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152056 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152056 a,
#stacks_in_152056 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152056 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152056 a i,
#stacks_in_152056 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152056 a,
  #stacks_in_152056 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152056 a:hover,
  #stacks_in_152056 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152056 a i,
  #stacks_in_152056 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152056 a:hover i,
  #stacks_in_152056 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152054 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152054 a,
#stacks_in_152054 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152054 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152054 a i,
#stacks_in_152054 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152054 a,
  #stacks_in_152054 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152054 a:hover,
  #stacks_in_152054 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152054 a i,
  #stacks_in_152054 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152054 a:hover i,
  #stacks_in_152054 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
















.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152058 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152058 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_151742 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_151742 {
		display: none !important;
	}
}
#stacks_in_152116 h3,#stacks_in_152116 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152116 h3 a,#stacks_in_152116 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152116 h3 a:hover,#stacks_in_152116 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152116 small,#stacks_in_152116 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152116 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152116 {
	background-color: rgba(153, 204, 51, 1.00);
	padding: 40px 20px 6px 20px;
}



#stacks_in_152122 .bricks_loader {
  display: none;
  width: 26px;
  height: 26px;
  margin: 20px auto;
}


#stacks_in_152124 {
    background-image: url("4BF48D1F-0E5B-457B-A63F-1D9C966FDB5E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152126 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152126 {
		display: none !important;
	}
}
#stacks_in_152127 h3,#stacks_in_152127 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152127 h3,#stacks_in_152127 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152127 h3,#stacks_in_152127 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152127 h3 a,#stacks_in_152127 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152127 h3 a:hover,#stacks_in_152127 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152127 small,#stacks_in_152127 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152127 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152127 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152133 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152133 {
		display: none !important;
	}
}
#stacks_in_152134>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152134>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152134>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152134>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152134>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152134>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152134>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152134>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152137 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152137 a,
#stacks_in_152137 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152137 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152137 a i,
#stacks_in_152137 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152137 a,
  #stacks_in_152137 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152137 a:hover,
  #stacks_in_152137 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152137 a i,
  #stacks_in_152137 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152137 a:hover i,
  #stacks_in_152137 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152135 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152135 a,
#stacks_in_152135 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152135 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152135 a i,
#stacks_in_152135 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152135 a,
  #stacks_in_152135 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152135 a:hover,
  #stacks_in_152135 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152135 a i,
  #stacks_in_152135 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152135 a:hover i,
  #stacks_in_152135 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152139 div,#stacks_in_152139 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152139 div a,#stacks_in_152139 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152139 div a:hover,#stacks_in_152139 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152139 small,#stacks_in_152139 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152139 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152145 {
    background-image: url("BDC5C0FD-98CA-4334-AAAC-D2492F354852.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152147 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152147 {
		display: none !important;
	}
}
#stacks_in_152148 h3,#stacks_in_152148 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152148 h3,#stacks_in_152148 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152148 h3,#stacks_in_152148 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152148 h3 a,#stacks_in_152148 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152148 h3 a:hover,#stacks_in_152148 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152148 small,#stacks_in_152148 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152148 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152148 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152154 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152154 {
		display: none !important;
	}
}
#stacks_in_152155>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152155>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152155>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152155>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152155>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152155>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152155>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152155>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152158 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152158 a,
#stacks_in_152158 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152158 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152158 a i,
#stacks_in_152158 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152158 a,
  #stacks_in_152158 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152158 a:hover,
  #stacks_in_152158 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152158 a i,
  #stacks_in_152158 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152158 a:hover i,
  #stacks_in_152158 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152156 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152156 a,
#stacks_in_152156 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152156 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152156 a i,
#stacks_in_152156 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152156 a,
  #stacks_in_152156 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152156 a:hover,
  #stacks_in_152156 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152156 a i,
  #stacks_in_152156 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152156 a:hover i,
  #stacks_in_152156 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152160 div,#stacks_in_152160 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152160 div a,#stacks_in_152160 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152160 div a:hover,#stacks_in_152160 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152160 small,#stacks_in_152160 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152160 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152166 {
    background-image: url("F594442F-0F8B-495F-A0D2-BF5D10417DCF.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152168 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152168 {
		display: none !important;
	}
}
#stacks_in_152169 h3,#stacks_in_152169 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152169 h3,#stacks_in_152169 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152169 h3,#stacks_in_152169 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152169 h3 a,#stacks_in_152169 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152169 h3 a:hover,#stacks_in_152169 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152169 small,#stacks_in_152169 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152169 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152169 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152175 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152175 {
		display: none !important;
	}
}
#stacks_in_152176>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152176>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152176>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152176>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152176>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152176>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152176>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152176>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152179 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152179 a,
#stacks_in_152179 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152179 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152179 a i,
#stacks_in_152179 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152179 a,
  #stacks_in_152179 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152179 a:hover,
  #stacks_in_152179 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152179 a i,
  #stacks_in_152179 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152179 a:hover i,
  #stacks_in_152179 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152177 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152177 a,
#stacks_in_152177 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152177 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152177 a i,
#stacks_in_152177 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152177 a,
  #stacks_in_152177 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152177 a:hover,
  #stacks_in_152177 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152177 a i,
  #stacks_in_152177 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152177 a:hover i,
  #stacks_in_152177 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152181 div,#stacks_in_152181 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152181 div a,#stacks_in_152181 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152181 div a:hover,#stacks_in_152181 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152181 small,#stacks_in_152181 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152181 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152187 {
    background-image: url("71AA3502-A615-402F-8324-2BEBEA41096A.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152189 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152189 {
		display: none !important;
	}
}
#stacks_in_152190 h3,#stacks_in_152190 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152190 h3,#stacks_in_152190 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152190 h3,#stacks_in_152190 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152190 h3 a,#stacks_in_152190 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152190 h3 a:hover,#stacks_in_152190 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152190 small,#stacks_in_152190 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152190 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152190 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152196 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152196 {
		display: none !important;
	}
}
#stacks_in_152197>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152197>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152197>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152197>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152197>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152197>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152197>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152197>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152200 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152200 a,
#stacks_in_152200 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152200 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152200 a i,
#stacks_in_152200 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152200 a,
  #stacks_in_152200 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152200 a:hover,
  #stacks_in_152200 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152200 a i,
  #stacks_in_152200 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152200 a:hover i,
  #stacks_in_152200 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152198 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152198 a,
#stacks_in_152198 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152198 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152198 a i,
#stacks_in_152198 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152198 a,
  #stacks_in_152198 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152198 a:hover,
  #stacks_in_152198 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152198 a i,
  #stacks_in_152198 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152198 a:hover i,
  #stacks_in_152198 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152202 div,#stacks_in_152202 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152202 div a,#stacks_in_152202 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152202 div a:hover,#stacks_in_152202 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152202 small,#stacks_in_152202 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152202 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152208 {
    background-image: url("A313A1BA-54FE-4B9D-B30F-12E58BE7B560.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152210 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152210 {
		display: none !important;
	}
}
#stacks_in_152211 h3,#stacks_in_152211 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152211 h3,#stacks_in_152211 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152211 h3,#stacks_in_152211 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152211 h3 a,#stacks_in_152211 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152211 h3 a:hover,#stacks_in_152211 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152211 small,#stacks_in_152211 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152211 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152211 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152217 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152217 {
		display: none !important;
	}
}
#stacks_in_152218>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152218>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152218>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152218>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152218>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152218>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152218>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152218>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152221 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152221 a,
#stacks_in_152221 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152221 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152221 a i,
#stacks_in_152221 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152221 a,
  #stacks_in_152221 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152221 a:hover,
  #stacks_in_152221 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152221 a i,
  #stacks_in_152221 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152221 a:hover i,
  #stacks_in_152221 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152506 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152506 a,
#stacks_in_152506 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152506 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152506 a i,
#stacks_in_152506 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152506 a,
  #stacks_in_152506 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152506 a:hover,
  #stacks_in_152506 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152506 a i,
  #stacks_in_152506 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152506 a:hover i,
  #stacks_in_152506 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152223 div,#stacks_in_152223 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152223 div a,#stacks_in_152223 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152223 div a:hover,#stacks_in_152223 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152223 small,#stacks_in_152223 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152223 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152229 {
    background-image: url("01192E9B-F491-4BAA-BE75-75B9E167CCAB.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152231 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152231 {
		display: none !important;
	}
}
#stacks_in_152232 h3,#stacks_in_152232 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152232 h3,#stacks_in_152232 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152232 h3,#stacks_in_152232 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152232 h3 a,#stacks_in_152232 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152232 h3 a:hover,#stacks_in_152232 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152232 small,#stacks_in_152232 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152232 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152232 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152238 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152238 {
		display: none !important;
	}
}
#stacks_in_152239>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152239>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152239>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152239>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152239>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152239>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152239>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152239>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152242 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152242 a,
#stacks_in_152242 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152242 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152242 a i,
#stacks_in_152242 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152242 a,
  #stacks_in_152242 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152242 a:hover,
  #stacks_in_152242 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152242 a i,
  #stacks_in_152242 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152242 a:hover i,
  #stacks_in_152242 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152507 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152507 a,
#stacks_in_152507 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152507 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152507 a i,
#stacks_in_152507 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152507 a,
  #stacks_in_152507 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152507 a:hover,
  #stacks_in_152507 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152507 a i,
  #stacks_in_152507 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152507 a:hover i,
  #stacks_in_152507 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152244 div,#stacks_in_152244 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152244 div a,#stacks_in_152244 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152244 div a:hover,#stacks_in_152244 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152244 small,#stacks_in_152244 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152244 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152288 {
    background-image: url("F6CD4F4C-96D8-416D-89E5-70DAF86069F9.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152289 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152289 {
		display: none !important;
	}
}
#stacks_in_152290 h3,#stacks_in_152290 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152290 h3,#stacks_in_152290 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152290 h3,#stacks_in_152290 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152290 h3 a,#stacks_in_152290 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152290 h3 a:hover,#stacks_in_152290 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152290 small,#stacks_in_152290 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152290 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152290 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152296 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152296 {
		display: none !important;
	}
}
#stacks_in_152297>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152297>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152297>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152297>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152297>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152297>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152297>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152297>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152300 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152300 a,
#stacks_in_152300 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152300 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152300 a i,
#stacks_in_152300 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152300 a,
  #stacks_in_152300 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152300 a:hover,
  #stacks_in_152300 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152300 a i,
  #stacks_in_152300 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152300 a:hover i,
  #stacks_in_152300 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152508 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152508 a,
#stacks_in_152508 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152508 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152508 a i,
#stacks_in_152508 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152508 a,
  #stacks_in_152508 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152508 a:hover,
  #stacks_in_152508 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152508 a i,
  #stacks_in_152508 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152508 a:hover i,
  #stacks_in_152508 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152302 div,#stacks_in_152302 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152302 div a,#stacks_in_152302 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152302 div a:hover,#stacks_in_152302 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152302 small,#stacks_in_152302 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152302 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152261 {
    background-image: url("1C5D0BDD-4914-4155-BFB9-A85B616821B8.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152262 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152262 {
		display: none !important;
	}
}
#stacks_in_152263 h3,#stacks_in_152263 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152263 h3,#stacks_in_152263 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152263 h3,#stacks_in_152263 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152263 h3 a,#stacks_in_152263 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152263 h3 a:hover,#stacks_in_152263 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152263 small,#stacks_in_152263 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152263 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152263 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152269 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152269 {
		display: none !important;
	}
}
#stacks_in_152270>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152270>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152270>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152270>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152270>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152270>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152270>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152270>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152273 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152273 a,
#stacks_in_152273 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152273 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152273 a i,
#stacks_in_152273 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152273 a,
  #stacks_in_152273 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152273 a:hover,
  #stacks_in_152273 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152273 a i,
  #stacks_in_152273 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152273 a:hover i,
  #stacks_in_152273 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152509 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152509 a,
#stacks_in_152509 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152509 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152509 a i,
#stacks_in_152509 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152509 a,
  #stacks_in_152509 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152509 a:hover,
  #stacks_in_152509 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152509 a i,
  #stacks_in_152509 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152509 a:hover i,
  #stacks_in_152509 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152275 div,#stacks_in_152275 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152275 div a,#stacks_in_152275 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152275 div a:hover,#stacks_in_152275 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152275 small,#stacks_in_152275 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152275 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152307 {
    background-image: url("587D31B5-A929-4D9D-8487-A4B05733A691.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152308 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152308 {
		display: none !important;
	}
}
#stacks_in_152309 h3,#stacks_in_152309 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152309 h3,#stacks_in_152309 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152309 h3,#stacks_in_152309 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152309 h3 a,#stacks_in_152309 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152309 h3 a:hover,#stacks_in_152309 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152309 small,#stacks_in_152309 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152309 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152309 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152315 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152315 {
		display: none !important;
	}
}
#stacks_in_152316>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152316>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152316>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152316>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152316>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152316>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152316>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152316>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152319 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152319 a,
#stacks_in_152319 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152319 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152319 a i,
#stacks_in_152319 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152319 a,
  #stacks_in_152319 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152319 a:hover,
  #stacks_in_152319 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152319 a i,
  #stacks_in_152319 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152319 a:hover i,
  #stacks_in_152319 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152510 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152510 a,
#stacks_in_152510 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152510 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152510 a i,
#stacks_in_152510 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152510 a,
  #stacks_in_152510 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152510 a:hover,
  #stacks_in_152510 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152510 a i,
  #stacks_in_152510 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152510 a:hover i,
  #stacks_in_152510 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152321 div,#stacks_in_152321 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152321 div a,#stacks_in_152321 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152321 div a:hover,#stacks_in_152321 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152321 small,#stacks_in_152321 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152321 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152359 {
    background-image: url("6F51265B-C623-45F9-A2A2-FD341A7BB733.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152360 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152360 {
		display: none !important;
	}
}
#stacks_in_152361 h3,#stacks_in_152361 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152361 h3,#stacks_in_152361 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152361 h3,#stacks_in_152361 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152361 h3 a,#stacks_in_152361 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152361 h3 a:hover,#stacks_in_152361 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152361 small,#stacks_in_152361 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152361 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152361 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152367 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152367 {
		display: none !important;
	}
}
#stacks_in_152368>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152368>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152368>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152368>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152368>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152368>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152368>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152368>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152371 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152371 a,
#stacks_in_152371 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152371 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152371 a i,
#stacks_in_152371 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152371 a,
  #stacks_in_152371 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152371 a:hover,
  #stacks_in_152371 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152371 a i,
  #stacks_in_152371 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152371 a:hover i,
  #stacks_in_152371 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152511 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152511 a,
#stacks_in_152511 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152511 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152511 a i,
#stacks_in_152511 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152511 a,
  #stacks_in_152511 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152511 a:hover,
  #stacks_in_152511 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152511 a i,
  #stacks_in_152511 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152511 a:hover i,
  #stacks_in_152511 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152373 div,#stacks_in_152373 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152373 div a,#stacks_in_152373 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152373 div a:hover,#stacks_in_152373 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152373 small,#stacks_in_152373 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152373 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152332 {
    background-image: url("93533913-BFF1-4760-9FDE-6228EFE2598E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152333 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152333 {
		display: none !important;
	}
}
#stacks_in_152334 h3,#stacks_in_152334 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152334 h3,#stacks_in_152334 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152334 h3,#stacks_in_152334 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152334 h3 a,#stacks_in_152334 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152334 h3 a:hover,#stacks_in_152334 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152334 small,#stacks_in_152334 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152334 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152334 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152340 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152340 {
		display: none !important;
	}
}
#stacks_in_152341>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152341>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152341>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152341>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152341>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152341>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152341>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152341>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152344 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152344 a,
#stacks_in_152344 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152344 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152344 a i,
#stacks_in_152344 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152344 a,
  #stacks_in_152344 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152344 a:hover,
  #stacks_in_152344 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152344 a i,
  #stacks_in_152344 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152344 a:hover i,
  #stacks_in_152344 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152512 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152512 a,
#stacks_in_152512 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152512 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152512 a i,
#stacks_in_152512 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152512 a,
  #stacks_in_152512 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152512 a:hover,
  #stacks_in_152512 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152512 a i,
  #stacks_in_152512 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152512 a:hover i,
  #stacks_in_152512 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152346 div,#stacks_in_152346 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152346 div a,#stacks_in_152346 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152346 div a:hover,#stacks_in_152346 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152346 small,#stacks_in_152346 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152346 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152378 {
    background-image: url("D13F5994-C789-475A-98D1-AEAF8FBA8E50.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152379 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152379 {
		display: none !important;
	}
}
#stacks_in_152380 h3,#stacks_in_152380 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152380 h3,#stacks_in_152380 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152380 h3,#stacks_in_152380 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152380 h3 a,#stacks_in_152380 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152380 h3 a:hover,#stacks_in_152380 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152380 small,#stacks_in_152380 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152380 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152380 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152386 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152386 {
		display: none !important;
	}
}
#stacks_in_152387>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152387>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152387>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152387>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152387>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152387>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152387>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152387>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152390 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152390 a,
#stacks_in_152390 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152390 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152390 a i,
#stacks_in_152390 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152390 a,
  #stacks_in_152390 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152390 a:hover,
  #stacks_in_152390 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152390 a i,
  #stacks_in_152390 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152390 a:hover i,
  #stacks_in_152390 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152513 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152513 a,
#stacks_in_152513 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152513 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152513 a i,
#stacks_in_152513 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152513 a,
  #stacks_in_152513 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152513 a:hover,
  #stacks_in_152513 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152513 a i,
  #stacks_in_152513 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152513 a:hover i,
  #stacks_in_152513 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152392 div,#stacks_in_152392 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152392 div a,#stacks_in_152392 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152392 div a:hover,#stacks_in_152392 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152392 small,#stacks_in_152392 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152392 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152428 {
    background-image: url("FDBACAF1-F693-46E2-B07D-F7C5B6E79661.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152429 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152429 {
		display: none !important;
	}
}
#stacks_in_152430 h3,#stacks_in_152430 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152430 h3,#stacks_in_152430 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152430 h3,#stacks_in_152430 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152430 h3 a,#stacks_in_152430 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152430 h3 a:hover,#stacks_in_152430 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152430 small,#stacks_in_152430 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152430 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152430 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152436 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152436 {
		display: none !important;
	}
}
#stacks_in_152437>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152437>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152437>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152437>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152437>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152437>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152437>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152437>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152440 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152440 a,
#stacks_in_152440 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152440 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152440 a i,
#stacks_in_152440 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152440 a,
  #stacks_in_152440 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152440 a:hover,
  #stacks_in_152440 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152440 a i,
  #stacks_in_152440 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152440 a:hover i,
  #stacks_in_152440 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152514 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152514 a,
#stacks_in_152514 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152514 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152514 a i,
#stacks_in_152514 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152514 a,
  #stacks_in_152514 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152514 a:hover,
  #stacks_in_152514 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152514 a i,
  #stacks_in_152514 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152514 a:hover i,
  #stacks_in_152514 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152442 div,#stacks_in_152442 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152442 div a,#stacks_in_152442 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152442 div a:hover,#stacks_in_152442 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152442 small,#stacks_in_152442 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152442 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152449 {
    background-image: url("5BBE1F2B-D354-43A8-82C7-9D1532BB1160.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152450 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152450 {
		display: none !important;
	}
}
#stacks_in_152451 h3,#stacks_in_152451 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152451 h3,#stacks_in_152451 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152451 h3,#stacks_in_152451 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152451 h3 a,#stacks_in_152451 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152451 h3 a:hover,#stacks_in_152451 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152451 small,#stacks_in_152451 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152451 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152451 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152457 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152457 {
		display: none !important;
	}
}
#stacks_in_152458>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152458>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152458>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152458>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152458>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152458>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152458>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152458>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152461 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152461 a,
#stacks_in_152461 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152461 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152461 a i,
#stacks_in_152461 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152461 a,
  #stacks_in_152461 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152461 a:hover,
  #stacks_in_152461 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152461 a i,
  #stacks_in_152461 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152461 a:hover i,
  #stacks_in_152461 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152515 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152515 a,
#stacks_in_152515 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152515 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152515 a i,
#stacks_in_152515 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152515 a,
  #stacks_in_152515 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152515 a:hover,
  #stacks_in_152515 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152515 a i,
  #stacks_in_152515 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152515 a:hover i,
  #stacks_in_152515 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152463 div,#stacks_in_152463 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152463 div a,#stacks_in_152463 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152463 div a:hover,#stacks_in_152463 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152463 small,#stacks_in_152463 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152463 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152403 {
    background-image: url("65F89124-F04A-474E-8863-6C37481E1968.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_152404 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_152404 {
		display: none !important;
	}
}
#stacks_in_152405 h3,#stacks_in_152405 .hTxt:not(.segment) div{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_152405 h3,#stacks_in_152405 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_152405 h3,#stacks_in_152405 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152405 h3 a,#stacks_in_152405 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152405 h3 a:hover,#stacks_in_152405 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152405 small,#stacks_in_152405 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152405 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_152405 {
	background-color: rgba(153, 204, 51, 0.25);
	padding: 10px 0px 0px 0px;
}

.spacerStack {
	height: 165.00px;
}

#spacerStackstacks_in_152411 {
	height: 165.00px;
}




















@media print {
	#spacerStackstacks_in_152411 {
		display: none !important;
	}
}
#stacks_in_152412>.s3_row {
	margin: 0 -0px;
}

#stacks_in_152412>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_152412>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_152412>.s3_row>.s3_column {
	padding: 0 0px;
}










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


	#stacks_in_152412>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152412>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



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


	#stacks_in_152412>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_152412>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}





#stacks_in_152415 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152415 a,
#stacks_in_152415 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152415 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152415 a i,
#stacks_in_152415 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152415 a,
  #stacks_in_152415 a:visited {
    background-color: rgba(255, 255, 255, 0.50);
    color: rgba(2, 90, 165, 1.00) !important;
  }

  #stacks_in_152415 a:hover,
  #stacks_in_152415 a:active {
    background-color: rgba(255, 255, 255, 0.80);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152415 a i,
  #stacks_in_152415 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152415 a:hover i,
  #stacks_in_152415 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152516 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_152516 a,
#stacks_in_152516 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 8px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(255, 255, 255, 1.00);

  

}


#stacks_in_152516 a .flat_button_2_text {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center !important;
  
}


#stacks_in_152516 a i,
#stacks_in_152516 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
      
      border-right: 1px solid rgba(255, 255, 255, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_152516 a,
  #stacks_in_152516 a:visited {
    background-color: rgba(153, 204, 51, 0.50);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_152516 a:hover,
  #stacks_in_152516 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(0, 71, 132, 1.00) !important;
  }

  #stacks_in_152516 a i,
  #stacks_in_152516 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_152516 a:hover i,
  #stacks_in_152516 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }















#stacks_in_152417 div,#stacks_in_152417 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_152417 div a,#stacks_in_152417 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_152417 div a:hover,#stacks_in_152417 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_152417 small,#stacks_in_152417 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_152417 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_152250 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_152250 {
		display: none !important;
	}
}
/* Pull Quote Styling */


  #stacks_in_4427 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4427 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4427 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_4427 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_4427 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_4427 .floated_content {
    margin-right: 40px;
    margin-bottom: 40px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4427 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_4427 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4427 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_4427 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  
    #stacks_in_4427 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4427 .pull_quote { 
      max-width: 100%;
    }
  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4427 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_4427 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  

}


#stacks_in_4427 {
	margin: 40px 0px 0px 0px;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_34178_52016 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_34178_52016 {
		display: none !important;
	}
}
#stacks_in_34178_52017 h4,#stacks_in_34178_52017 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_34178_52017 h4 a,#stacks_in_34178_52017 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_34178_52017 h4 a:hover,#stacks_in_34178_52017 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_34178_52017 small,#stacks_in_34178_52017 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_34178_52017 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_34178_52017 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_34178_52017 {
	padding: 40px 20px 20px 20px;
}
#stacks_in_34178_39231>.s3_row {
	margin: 0 -10px;
}

#stacks_in_34178_39231>.s3_row>.s3_column {
	padding: 0 10px;
}








  


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




	#stacks_in_34178_39231>.s3_row  {
		margin: -10px -10px;
	}
	#stacks_in_34178_39231>.s3_row>.s3_column {
		padding: 10px 10px;
		width:50%;
	}



}



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


	#stacks_in_34178_39231>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_34178_39231>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}





}




  

#stacks_in_34178_39231 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_34178_52026 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_34178_52026 a,
#stacks_in_34178_52026 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52026 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52026 a i,
#stacks_in_34178_52026 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52026 a,
  #stacks_in_34178_52026 a:visited {
    background-color: rgba(255, 153, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52026 a:hover,
  #stacks_in_34178_52026 a:active {
    background-color: rgba(255, 153, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52026 a i,
  #stacks_in_34178_52026 a:visited i {
    background-color: rgba(255, 153, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52026 a:hover i,
  #stacks_in_34178_52026 a:active i {
    background-color: rgba(255, 153, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_34178_52026 a,
  #stacks_in_34178_52026 a:visited {
      width: 100%;
  }

  






#stacks_in_34178_52027 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_34178_52027 a,
#stacks_in_34178_52027 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52027 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52027 a i,
#stacks_in_34178_52027 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52027 a,
  #stacks_in_34178_52027 a:visited {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52027 a:hover,
  #stacks_in_34178_52027 a:active {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52027 a i,
  #stacks_in_34178_52027 a:visited i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52027 a:hover i,
  #stacks_in_34178_52027 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_34178_52027 a,
  #stacks_in_34178_52027 a:visited {
      width: 100%;
  }

  






#stacks_in_34178_52028 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_34178_52028 a,
#stacks_in_34178_52028 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52028 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52028 a i,
#stacks_in_34178_52028 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52028 a,
  #stacks_in_34178_52028 a:visited {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52028 a:hover,
  #stacks_in_34178_52028 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52028 a i,
  #stacks_in_34178_52028 a:visited i {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52028 a:hover i,
  #stacks_in_34178_52028 a:active i {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_34178_52028 a,
  #stacks_in_34178_52028 a:visited {
      width: 100%;
  }

  






#stacks_in_34178_52029 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_34178_52029 a,
#stacks_in_34178_52029 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52029 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52029 a i,
#stacks_in_34178_52029 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52029 a,
  #stacks_in_34178_52029 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52029 a:hover,
  #stacks_in_34178_52029 a:active {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52029 a i,
  #stacks_in_34178_52029 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52029 a:hover i,
  #stacks_in_34178_52029 a:active i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_34178_52029 a,
  #stacks_in_34178_52029 a:visited {
      width: 100%;
  }

  







#stacks_in_34178_32923 {
	padding: 20px 20px 20px 20px;
}
#stacks_in_34178_39243_39247 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_34178_39243_39247 a,
#stacks_in_34178_39243_39247 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_39243_39247 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_39243_39247 a i,
#stacks_in_34178_39243_39247 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_39243_39247 a,
  #stacks_in_34178_39243_39247 a:visited {
    background-color: rgba(102, 102, 102, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_39243_39247 a:hover,
  #stacks_in_34178_39243_39247 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 153, 0, 1.00) !important;
  }

  #stacks_in_34178_39243_39247 a i,
  #stacks_in_34178_39243_39247 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_39243_39247 a:hover i,
  #stacks_in_34178_39243_39247 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 153, 0, 1.00);
  }















#stacks_in_34178_52050>.s3_row {
	margin: 0 -10px;
}

#stacks_in_34178_52050>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_34178_52050>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_34178_52050>.s3_row>.s3_column {
	padding: 0 10px;
}










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



}



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



}





#stacks_in_34178_52033 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: right;
}


#stacks_in_34178_52033 a,
#stacks_in_34178_52033 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52033 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52033 a i,
#stacks_in_34178_52033 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  

  
    float: right;
    
  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52033 a,
  #stacks_in_34178_52033 a:visited {
    background-color: rgba(102, 102, 102, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52033 a:hover,
  #stacks_in_34178_52033 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 153, 0, 1.00) !important;
  }

  #stacks_in_34178_52033 a i,
  #stacks_in_34178_52033 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52033 a:hover i,
  #stacks_in_34178_52033 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 153, 0, 1.00);
  }















#stacks_in_34178_52049 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: left;
}


#stacks_in_34178_52049 a,
#stacks_in_34178_52049 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_34178_52049 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_34178_52049 a i,
#stacks_in_34178_52049 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_34178_52049 a,
  #stacks_in_34178_52049 a:visited {
    background-color: rgba(102, 102, 102, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_34178_52049 a:hover,
  #stacks_in_34178_52049 a:active {
    background-color: rgba(0, 102, 204, 1.00);
    color: rgba(255, 153, 0, 1.00) !important;
  }

  #stacks_in_34178_52049 a i,
  #stacks_in_34178_52049 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_34178_52049 a:hover i,
  #stacks_in_34178_52049 a:active i {
    background-color: rgba(153, 204, 51, 1.00);
    color: rgba(255, 153, 0, 1.00);
  }















