/*
 * com.onelittledesigner.content_1ld_css
 */

.content-1ld-svg-icon>svg,svg.content-1ld-svg-icon{height:32px;width:32px;display:inline-block}.content-1ld-button,.content-1ld-image{margin:16px 0}.content-1ld-button a{padding:12px 24px;text-decoration:none;display:inline-block;white-space:nowrap}.content-1ld-image{width:100%;display:block;box-sizing:border-box}.content-1ld-image[data-no-image]{aspect-ratio:1.7778;display:block;background-size:contain;background-position:center;background-repeat:no-repeat;background-color:#f3f3f3}.mez.selected:has(>div>.content-1ld-image):after{content:"";position:absolute;inset:0;background-color:rgba(38,128,252,.1)}div[tag=slice]:has(>div>div>.content-1ld-content){margin:12px 0}.content-1ld-content div.mez,.content-1ld-content+div>.mez:has(>div[tag=node]),.mez:has(>div>.content-1ld-content){background-color:transparent;border:0 solid transparent;padding:0;margin:0}.mez:has(>div>.content-1ld-content)>:not(.in){visibility:hidden}.content-1ld-content div[tag=node]{min-width:5px!important;min-height:5px!important;color:inherit}div.mez.bare.selected:has(>div>.content-1ld-content){background-color:rgba(38,128,252,.1)}.content-1ld-svg-icon{font-size:0!important;line-height:1!important}.content-1ld-svg-icon>svg{font-size:0;line-height:1}.content-1ld-text.material-icons{font-size:32px}.ionicons-svg-outline{fill:none!important;stroke-width:32px}.content-1ld-button{line-height:1.1}.content-1ld-button>a{display:inline-flex;align-items:center}.content-1ld-button>a>i,.content-1ld-button>a>svg{margin-right:.5em}@supports (rotate:180deg){.content-1ld-button>a{gap:.5em}.content-1ld-button>a>i,.content-1ld-button>a>svg{margin-right:0}}.content-1ld-button a>i{font-size:22px}.content-1ld-button a>svg{height:22px;width:22px}div.out[tag=slice] .content-1ld-button>a>div{min-height:0}div.out[tag=slice] .content-1ld-button a>svg+div.out{display:inline-block}
div.mez.bare.selected:after:has(>div>.content-1ld-button){content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;background-color:rgba(38,128,252,.1)}


.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}
.lines{border:0;height:0;width:100%;margin:0;padding:0;opacity:1}.lines-wrapper{position:relative}.lines-wrapper.vertical{height:100%}
@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;
}
/* Corner Stack v.1.0.1 */


/* General styles for the modal */

.corner-modal {
	position: fixed;
	z-index: 9999;
  transform: translateZ(0px);
	right: 0px;
  bottom: 0px;
	max-width: 320px;
	/*max-height:100%;*/
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	margin:20px;
}

.corner-modal.corner-show{
	visibility: visible;
}

.corner-button {
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	transform: translateZ(0px);
	position: fixed;
	right:0px;
	bottom:0px;
	padding:10px 20px;
  margin: 20px;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  cursor:pointer;
}

.corner-button.corner-tl,
.corner-button.corner-tr {
	margin-top: -60px;
}

.corner-button.corner-bl,
.corner-button.corner-br {
	margin-bottom: -60px;
}

.corner-button.corner-show {
	visibility: visible;
	opacity: 1;
}

.corner-button.corner-tl.corner-show,
.corner-button.corner-tr.corner-show {
	margin-top: 20px;
}

.corner-button.corner-bl.corner-show,
.corner-button.corner-br.corner-show {
	margin-bottom: 20px;
}

.corner-close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
}

.corner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-overlay.corner-show {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.corner-content {
	position: relative;
	margin: 0 auto;
  padding:30px 20px 20px 20px;
}

/*.corner-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}*/

.corner-tl
{
	left: 0px;
  top: 0px;
  bottom: auto !important;
  right:auto !important;
}

.corner-tr
{
	left: auto !important;
  top: 0px;
  bottom: auto !important;
  right:0px;
}

.corner-br
{
	left: auto !important;
  top: auto !important;
  bottom: 0px;
  right:0px;
}

.corner-bl
{
	left: 0px;
  top: auto !important;
  bottom: 0px;
  right:auto !important;
}


/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.corner-effect-1 .corner-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-1 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 2: Slide from the right */
.corner-effect-2 .corner-content {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.corner-show.corner-effect-2 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* Effect 3: Slide from the bottom */
.corner-effect-3 .corner-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-3 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 4: Newspaper */
.corner-effect-4 .corner-content {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.corner-show.corner-effect-4 ~ .corner-overlay,
.corner-effect-4 .corner-content {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-4 .corner-content {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* Effect 5: fall */
.corner-effect-5.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-5 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg); 
	-moz-transform: translateZ(600px) rotateX(20deg); 
	-ms-transform: translateZ(600px) rotateX(20deg); 
	transform: translateZ(600px) rotateX(20deg); 
	opacity: 0;
}

.corner-show.corner-effect-5 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg); 
	opacity: 1;
}

/* Effect 6: side fall */
.corner-effect-6.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-6 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg); 
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg); 
	opacity: 0;
}

.corner-show.corner-effect-6 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* Effect 7:  slide and stick to top */
.corner-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.corner-effect-7 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.corner-show.corner-effect-7 .corner-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* Effect 8: 3D flip horizontal */
.corner-effect-8.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-8 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-8 .corner-content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* Effect 9: 3D flip vertical */
.corner-effect-9.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-9 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-9 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 10: 3D sign */
.corner-effect-10.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-10 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-10 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 11: Super scaled */
.corner-effect-11 .corner-content {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-11 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 12:  Just me */
.corner-effect-12 .corner-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-12 ~ .corner-overlay {
	background: #e74c3c;
} 

.corner-effect-12 .corner-content h3,
.corner-effect-12 .corner-content {
	background: transparent;
}

.corner-show.corner-effect-12 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 13: 3D slit */
.corner-effect-13.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-13 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.corner-show.corner-effect-13 .corner-content {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* Effect 14:  3D Rotate from bottom */
.corner-effect-14.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-14 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.corner-show.corner-effect-14 .corner-content {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* Effect 15:  3D Rotate in from left */
.corner-effect-15.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-15 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-15 .corner-content {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* Effect 16:  Blur */
.corner-show.corner-effect-16 ~ .corner-overlay {
	background: rgba(180,46,32,0.5);
}

.corner-show.corner-effect-16 ~ .container {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	filter: blur(3px);
}

.corner-effect-16 .corner-content {
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	-ms-transform: translateY(-5%);
	transform: translateY(-5%);
	opacity: 0;
}

.corner-show.corner-effect-16 ~ .container,
.corner-effect-16 .corner-content {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-16 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on container */
.corner-show.corner-effect-17 ~ .container {
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}	

.corner-show.corner-effect-17 ~ .container,
.corner-show.corner-effect-17 ~ .corner-overlay  {
	-webkit-transform: rotateX(-2deg);
	-moz-transform: rotateX(-2deg);
	-ms-transform: rotateX(-2deg);
	transform: rotateX(-2deg);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.corner-effect-17 .corner-content {
	opacity: 0;
	-webkit-transform: translateY(200%);
	-moz-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.corner-show.corner-effect-17 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on container */
.corner-show.corner-effect-18 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-18 ~ .corner-overlay {
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-18 ~ .container,
.corner-show.corner-effect-18 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 0% 50%;
	-moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 0% 50%;
	animation: rotateRightSideFirst 0.5s forwards ease-in;
}

@-webkit-keyframes rotateRightSideFirst {
	50% { -webkit-transform: translateZ(-50px) rotateY(5deg); -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: translateZ(-200px); }
}

@-moz-keyframes rotateRightSideFirst {
	50% { -moz-transform: translateZ(-50px) rotateY(5deg); -moz-animation-timing-function: ease-out; }
	100% { -moz-transform: translateZ(-200px); }
}

@keyframes rotateRightSideFirst {
	50% { transform: translateZ(-50px) rotateY(5deg); animation-timing-function: ease-out; }
	100% { transform: translateZ(-200px); }
}

.corner-effect-18 .corner-content {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
	opacity: 0;
}

.corner-show.corner-effect-18 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

/* Effect 19:  Slip in from the top with perspective on container */
.corner-show.corner-effect-19 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-19 ~ .container,
.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 50% 100%;
	-webkit-animation: OpenTop 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 50% 100%;
	-moz-animation: OpenTop 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
	animation: OpenTop 0.5s forwards ease-in;
}

@-webkit-keyframes OpenTop {
	50% { 
		-webkit-transform: rotateX(10deg); 
		-webkit-animation-timing-function: ease-out; 
	}
}

@-moz-keyframes OpenTop {
	50% { 
		-moz-transform: rotateX(10deg); 
		-moz-animation-timing-function: ease-out; 
	}
}

@keyframes OpenTop {
	50% { 
		transform: rotateX(10deg); 
		animation-timing-function: ease-out; 
	}
}

.corner-effect-19 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.corner-show.corner-effect-19 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}



.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}
/* Start dooMontage 2 stack page CSS code *//*! * Justified Gallery - v3.6.1 * http://miromannino.github.io/Justified-Gallery/ * Copyright (c) 2015 Miro Mannino * Licensed under the MIT license. */@-webkit-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-moz-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-o-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-webkit-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-moz-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-o-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;opacity:0;filter:alpha(opacity=0)}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0}.justified-gallery>a>.doocaption,.justified-gallery>div>.doocaption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:600;font-family:sans-serif}.justified-gallery>a>.doocaption.doocaption-visible,.justified-gallery>div>.doocaption.doocaption-visible{display:initial;opacity:.7;filter:"alpha(opacity=70)";-webkit-animation:justified-gallery-show-doocaption-animation 500ms 0 ease;-moz-animation:justified-gallery-show-doocaption-animation 500ms 0 ease;-ms-animation:justified-gallery-show-doocaption-animation 500ms 0 ease}.justified-gallery>.entry-visible{opacity:1;filter:alpha(opacity=100);-webkit-animation:justified-gallery-show-entry-animation 500ms 0 ease;-moz-animation:justified-gallery-show-entry-animation 500ms 0 ease;-ms-animation:justified-gallery-show-entry-animation 500ms 0 ease}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;opacity:initial;filter:initial;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;opacity:0;filter:alpha(opacity=0);width:8px;height:8px;margin:0 4px;background-color:#000;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}/* End dooMontage 2 stack page CSS code */
@font-face {
    font-family: 'FlatButtonLato';
    src: url('../index_files/font/lato-light-webfont.eot');
    src: url('../index_files/font/lato-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../index_files/font/lato-light-webfont.woff') format('woff'),
         url('../index_files/font/lato-light-webfont.ttf') format('truetype'),
         url('../index_files/font/lato-light-webfont.svg#latolight') format('svg');
    font-weight: 100;
    font-style: normal;
}


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

}


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

/* Start dooFaq2 stack page CSS code */
/* Iconate keyframe animations */
@-webkit-keyframes zoomOut{50%{-webkit-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-moz-keyframes zoomOut{50%{-moz-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-moz-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-o-keyframes zoomOut{50%{-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@keyframes zoomOut{50%{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-webkit-keyframes zoomIn{0%{opacity:.6}25%,75%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-moz-keyframes zoomIn{0%{opacity:.6}25%,75%{-moz-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-o-keyframes zoomIn{0%{opacity:.6}25%,75%{-o-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@keyframes zoomIn{0%{opacity:.6}25%,75%{-webkit-transform:scale(1.8);-moz-transform:scale(1.8);-o-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-moz-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-o-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOutRight{25%{-webkit-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-webkit-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-moz-keyframes fadeOutRight{25%{-moz-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-moz-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-moz-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-moz-transform:translateX(0);transform:translateX(0);opacity:1}}@-o-keyframes fadeOutRight{25%{-o-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-o-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-o-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fadeOutRight{25%{-webkit-transform:translateX(10px);-moz-transform:translateX(10px);-o-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-webkit-transform:translateX(-5px);-moz-transform:translateX(-5px);-o-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes fadeOutLeft{25%{-webkit-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-webkit-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-moz-keyframes fadeOutLeft{25%{-moz-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-moz-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-moz-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-moz-transform:translateX(0);transform:translateX(0);opacity:1}}@-o-keyframes fadeOutLeft{25%{-o-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-o-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-o-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-o-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fadeOutLeft{25%{-webkit-transform:translateX(-10px);-moz-transform:translateX(-10px);-o-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-webkit-transform:translateX(5px);-moz-transform:translateX(5px);-o-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes fadeOutTop{25%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-webkit-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@-moz-keyframes fadeOutTop{25%{-moz-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-moz-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-moz-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-moz-transform:translateY(0);transform:translateY(0);opacity:1}}@-o-keyframes fadeOutTop{25%{-o-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-o-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-o-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-o-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fadeOutTop{25%{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);opacity:1}}@-webkit-keyframes fadeOutBottom{25%{-webkit-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-webkit-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@-moz-keyframes fadeOutBottom{25%{-moz-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-moz-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-moz-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-moz-transform:translateY(0);transform:translateY(0);opacity:1}}@-o-keyframes fadeOutBottom{25%{-o-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-o-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-o-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-o-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fadeOutBottom{25%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px);-o-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);opacity:1}}@-webkit-keyframes verticalFlip{50%{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}}@-moz-keyframes verticalFlip{50%{-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-o-keyframes verticalFlip{50%{transform:rotateX(90deg)}100%{transform:rotateX(0deg)}}@keyframes verticalFlip{50%{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-webkit-keyframes horizontalFlip{50%{-webkit-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}}@-moz-keyframes horizontalFlip{50%{-moz-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-moz-transform:rotateY(0deg);transform:rotateY(0deg)}}@-o-keyframes horizontalFlip{50%{transform:rotateY(90deg)}100%{transform:rotateY(0deg)}}@keyframes horizontalFlip{50%{-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);transform:rotateY(0deg)}}@-webkit-keyframes bounceOutBottom{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-moz-keyframes bounceOutBottom{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-moz-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-moz-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-o-keyframes bounceOutBottom{20%,100%{transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;transform:translate3d(0,-5px,0)}50%{opacity:0;transform:translate3d(0,10px,0)}}@keyframes bounceOutBottom{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,-5px,0);-moz-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,10px,0);-moz-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-webkit-keyframes bounceOutTop{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-moz-keyframes bounceOutTop{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-moz-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-moz-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-o-keyframes bounceOutTop{20%,100%{transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;transform:translate3d(0,5px,0)}50%{opacity:0;transform:translate3d(0,-10px,0)}}@keyframes bounceOutTop{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,5px,0);-moz-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,-10px,0);-moz-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-webkit-keyframes bounceOutLeft{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-moz-keyframes bounceOutLeft{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-moz-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-moz-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-o-keyframes bounceOutLeft{20%,100%{transform:translate3d(0,0,0)}40%,80%{opacity:1;transform:translate3d(5px,0,0)}50%{opacity:0;transform:translate3d(-10px,0,0)}}@keyframes bounceOutLeft{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(5px,0,0);-moz-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(-10px,0,0);-moz-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-webkit-keyframes bounceOutRight{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-moz-keyframes bounceOutRight{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-moz-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-moz-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-o-keyframes bounceOutRight{20%,100%{transform:translate3d(0,0,0)}40%,80%{opacity:1;transform:translate3d(-5px,0,0)}50%{opacity:0;transform:translate3d(10px,0,0)}}@keyframes bounceOutRight{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(-5px,0,0);-moz-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(10px,0,0);-moz-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-moz-keyframes rubberBand{0%,100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-o-keyframes rubberBand{0%,100%{transform:scale3d(1,1,1)}30%,60%{transform:scale3d(1.25,.75,1)}40%,80%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-webkit-keyframes tada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;transform-origin:center}}@-moz-keyframes tada{50%{-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}70%,90%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform-origin:center;transform-origin:center}60%,80%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-moz-transform-origin:center;transform-origin:center}}@-o-keyframes tada{50%{transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}70%,90%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-o-transform-origin:center;transform-origin:center}60%,80%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}100%{transform:scale3d(1,1,1);-o-transform-origin:center;transform-origin:center}}@keyframes tada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}}@-webkit-keyframes rollOutRight{30%{-webkit-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-webkit-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-moz-keyframes rollOutRight{30%{-moz-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-moz-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-moz-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-o-keyframes rollOutRight{30%{transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@keyframes rollOutRight{30%{-webkit-transform:translateX(10px) rotate3d(0,0,1,50deg);-moz-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-webkit-transform:translateX(-20px) rotate3d(0,0,1,-90deg);-moz-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-webkit-keyframes rollOutLeft{30%{-webkit-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-webkit-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-moz-keyframes rollOutLeft{30%{-moz-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-moz-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-moz-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-o-keyframes rollOutLeft{30%{transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-o-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@keyframes rollOutLeft{30%{-webkit-transform:translateX(-10px) rotate3d(0,0,1,-50deg);-moz-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-webkit-transform:translateX(20px) rotate3d(0,0,1,90deg);-moz-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-webkit-keyframes rotateClockwise{0%{opacity:1;-webkit-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;transform-origin:center;opacity:1}}@-moz-keyframes rotateClockwise{0%{opacity:1;-moz-transform-origin:center;transform-origin:center}50%{opacity:0;-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-moz-transform-origin:center;transform-origin:center;opacity:1}}@-o-keyframes rotateClockwise{0%{opacity:1;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-o-transform-origin:center;transform-origin:center}100%{transform:rotateZ(360deg);-o-transform-origin:center;transform-origin:center;opacity:1}}@keyframes rotateClockwise{0%{opacity:1;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center;opacity:1}}@-webkit-keyframes rotateAntiClockwise{0%{opacity:1;-webkit-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-webkit-transform-origin:center;transform-origin:center;opacity:1}}@-moz-keyframes rotateAntiClockwise{0%{opacity:1;-moz-transform-origin:center;transform-origin:center}50%{opacity:0;-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-moz-transform-origin:center;transform-origin:center;opacity:1}}@-o-keyframes rotateAntiClockwise{0%{opacity:1;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-o-transform-origin:center;transform-origin:center}100%{transform:rotateZ(-360deg);-o-transform-origin:center;transform-origin:center;opacity:1}}@keyframes rotateAntiClockwise{0%{opacity:1;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(-360deg);-moz-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center;opacity:1}}

/* End dooFaq2 stack page CSS code */*{min-height:0;min-width:0}.blu-sidebar,.blu-sidebar .flex-col{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.blu-sidebar .flex-col>.stacks_out{width:100%}.blu-sidebar,.blu-sidebar>.blu-side,.blu-sidebar>.blu-side>.blu-side__wrap,.blu-sidebar>.blu-content,.blu-sidebar>.blu-gutter{position:relative}.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap,.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap>.blueprint-col,.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap>.blueprint-col>.blucol-content,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap>.blueprint-col,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap>.blueprint-col>.blucol-content{position:static!important}.blu-sidebar>.blu-gutter{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}

#stacks_in_2865 {
	margin: 50px 0px 0px 0px;
}

/* START QUARENTINE CSS */





     
/* END QUARENTINE CSS */      
/* custom stuff */


#corner-stacks_in_183221 .corner-modal
{
  z-index: 9999;
  max-width:750px;
  max-height:400px;
}



#corner-stacks_in_183221 .corner-content {
	border:3px solid rgba(249, 106, 9, 1.00);
	border-radius:12px;
  background-color:rgba(230, 230, 230, 1.00);
  color: rgba(128, 0, 64, 1.00);
  overflow:auto;
}

#corner-stacks_in_183221 .corner-button
{
	font-family: Helvetica;
	font-size: 32px;
  font-weight: 10000;
	border:4px solid rgba(255, 255, 255, 1.00);
	border-radius:10px;
  background-color:rgba(249, 106, 9, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 100px;
  margin-right: 50px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_183221 .corner-button.corner-tl,
#corner-stacks_in_183221 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_183221 .corner-button.corner-bl,
#corner-stacks_in_183221 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_183221 .corner-content {
	padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_183221 .corner-button.corner-tl.corner-show,
#corner-stacks_in_183221 .corner-button.corner-tr.corner-show {
  margin-top: 100px;
}

#corner-stacks_in_183221 .corner-button.corner-bl.corner-show,
#corner-stacks_in_183221 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_183221 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_183221 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_183221 span.corner-label { 
    display:none; 
  }
}




#stacks_in_183224 {
	font-size: 110%;
}

#stacks_in_182799 {
	font-size: 110%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_182815shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code *//* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_2872 #myExtraContent5,
#ExtraContentPlusstacks_in_2872 #fs {
	display: none;
}



#styleWrapper {
	border-radius:3px;
	background:url('../index_files/light_noise.png') repeat;
	padding:20px;
	-webkit-box-shadow:inset 0px 0px 8px rgba(0,0,0,0.30);
}


#styleWrapper h1{
	color:#417094;
	font-weight:bold;
	font:30px/40px "Helvetica Neue", Helvetica, sans-serif;
	text-align:center;

	text-shadow:#fff 0px 1px  1px ;
	
}

 #stacks_in_7060_7059 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_7060_7059 hr.gradient{height:4px;background:#333;background-image:-webkit-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-moz-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-ms-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-o-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:linear-gradient(left,#FF9C00,#552700,#FF9C00)}#stacks_in_7060_7059 hr.faded{height:4px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_7060_7059 hr.dashed_fade{border-bottom:4px dashed #A0724B;background:#552700}#stacks_in_7060_7059 hr.dotted_fade{border-bottom:4px dotted #A0724B;background:#552700}#stacks_in_7060_7059 hr.dashed{border-bottom:4px dashed #552700}#stacks_in_7060_7059 hr.dotted{border-bottom:4px dotted #A0724B}#stacks_in_7060_7059 hr.shadow{height:4px;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,0.5)}#stacks_in_7060_7059 hr.cloudy{margin:4px 0;box-shadow:0 0 4px 1px #552700}#stacks_in_7060_7059 hr.cloudy:after{content:"\00a0"}#stacks_in_7060_7059 hr.inset{border-top:4px solid rgba(0,0,0,0.1);border-bottom:4px solid rgba(255,255,255,0.3)}#stacks_in_7060_7059 hr.inset_two{border-top:4px solid #FF9C00;border-bottom:4px solid #552700}#stacks_in_7060_7059 hr.inset_three{border-top:4px solid #552700;border-bottom:4px solid #FF9C00}#stacks_in_7060_7059 hr.inset_four{border-top:4px solid #552700;border-bottom:4px solid #CCCCCC}#stacks_in_7060_7059 hr.flared{height:30px;border-style:solid;border-color:#552700;border-width:4px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_7060_7059 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#552700;border-width:0 0 4px 0;border-radius:20px}#stacks_in_7060_7059 hr.glyph{padding:0;border:0;border-top:4px double #552700;color:#552700;text-align:center;margin:1em 0}#stacks_in_7060_7059 hr.glyph:after{content:"";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_7060_7059 {
	margin: 15px 0px 0px 0px;
}
/* B3: Bigfoot Responsive 3 Column Stack by RapidWeaver Central */
 
/* Adapted from Graham Miller's Responsive Grid System — http://www.responsivegridsystem.com */
/* Licensed under the Creative Commons Attribution 3.0 License. */


#frameThingstacks_in_7060_7033 {
	width: 100%;
	overflow: auto
}

#stacks_in_7060_7033 .span_1_of_3 {
	float:left;
	width:32%;
}

#stacks_in_7060_7033 .span_2_of_3 {
	float:right;
	width:32%;
    margin-left: 0px;
}

#stacks_in_7060_7033 .span_3_of_3 {
	float: none;
	position:relative;
	margin:0 auto;
	width:32%;
}


/* CUSTOM BREAKPOINT ----------- */

@media only screen 
and (max-width : 600px)  {
	#stacks_in_7060_7033 .span_1_of_3 {
	 
	}
	#stacks_in_7060_7033 .span_2_of_3 {
	 
	}
	#stacks_in_7060_7033 .span_3_of_3 {
	 
	}
}


/*  SECTIONS  */

#stacks_in_7060_7033 .sectionthing {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  GROUPING  */


#stacks_in_7060_7033 .groupthing:before,
#stacks_in_7060_7033 .groupthing:after {
    content:"";
    display:table;
}
#stacks_in_7060_7033 .groupthing:after {
    clear:both;
}
#stacks_in_7060_7033 .groupthing {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP */

#stacks_in_7060_7033 .col {
	display: block;

}

#stacks_in_7060_7033 .col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH */

@media only screen and (max-width: 600px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

 
#stacks_in_7060_7035 {
	margin: 5px 35px 0px 4px;
}

#stacks_in_7060_7037 {
	margin: 5px 35px 0px 0px;
}

#stacks_in_7060_7038 {
	display:inline-block; width:100%; line-height: 0.750000em;
}

#stacks_in_7060_178959 {
	margin: 5px 35px 0px 4px;
}

#stacks_in_7060_178963 {
	margin: 5px 35px 0px 0px;
}

#stacks_in_7060_178964 {
	display:inline-block; width:100%; line-height: 0.750000em;
}

#stacks_in_7060_7040 {
	margin: 0px 35px 0px 0px;
}
/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_7060_7042 #linklisterThingstacks_in_7060_7042 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 {
	display: block;
	position: relative;
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 li {
	
	border-bottom: 1px solid #552700;
 		
	color: #552700;
	font-size: 75%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 li a {
	color: #552700;
	text-decoration:none;
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 li:hover, #stacks_in_7060_7042 #listthingstacks_in_7060_7042 li a:hover, #stacks_in_7060_7042 #listthingstacks_in_7060_7042 li:hover a  {
	text-decoration:none;
	color: #F96A09 !important;
}

#stacks_in_7060_7042 .icon-button {
		
	display:none;
 		
}

#stacks_in_7060_7042  .text_padding_left a {
	padding-left: 20px;
	color:  #552700;
}

#stacks_in_7060_7042 #listthingstacks_in_7060_7042 li:hover span.icon-button, #stacks_in_7060_7042 #listthingstacks_in_7060_7042 li:hover  span.text_padding_left    {
	color: #F96A09 !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_7060_7042 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_7060_7042 {
	background: #FFFFFF;
}

.hover_effect1stacks_in_7060_7042:hover {
	background: #E6E6E6;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_7060_7042  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_7060_7042 a::before,
.hover_effect4stacks_in_7060_7042 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_7060_7042 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_7060_7042 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_7060_7042 a:hover::before,
.hover_effect4stacks_in_7060_7042 a:hover::after,
.hover_effect4stacks_in_7060_7042 a:focus::before,
.hover_effect4stacks_in_7060_7042 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_7060_7042 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_7060_7042 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_7060_7042 a:before, 
.hover_effect5stacks_in_7060_7042 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #E6E6E6;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_7060_7042 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_7060_7042 a:hover:before, 
.hover_effect5stacks_in_7060_7042 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_7060_7042 {
}

.hover_effect6stacks_in_7060_7042 a {
	padding: 10px 10px 10px 0;
	color: #552700;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

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

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../index_files/font/entypothing.eot?24089826');
  src: url('../index_files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../index_files/font/entypothing.woff?24089826') format('woff'),
       url('../index_files/font/entypothing.ttf?24089826') format('truetype'),
       url('../index_files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_7060_7042 [class^="icon-button"]:before, #stacks_in_7060_7042 [class*="icon-button"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_7060_82563 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_7060_7050 {
	margin: 5px 35px 0px 5px;
}

#stacks_in_7060_7052 {
	margin: 12px 0px 0px 0px;
}

#stacks_in_7060_7053 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
 #stacks_in_7060_7054 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_7060_7054 hr.gradient{height:4px;background:#333;background-image:-webkit-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-moz-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-ms-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:-o-linear-gradient(left,#FF9C00,#552700,#FF9C00);background-image:linear-gradient(left,#FF9C00,#552700,#FF9C00)}#stacks_in_7060_7054 hr.faded{height:4px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_7060_7054 hr.dashed_fade{border-bottom:4px dashed #A0724B;background:#552700}#stacks_in_7060_7054 hr.dotted_fade{border-bottom:4px dotted #A0724B;background:#552700}#stacks_in_7060_7054 hr.dashed{border-bottom:4px dashed #552700}#stacks_in_7060_7054 hr.dotted{border-bottom:4px dotted #A0724B}#stacks_in_7060_7054 hr.shadow{height:4px;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,0.5)}#stacks_in_7060_7054 hr.cloudy{margin:4px 0;box-shadow:0 0 4px 1px #552700}#stacks_in_7060_7054 hr.cloudy:after{content:"\00a0"}#stacks_in_7060_7054 hr.inset{border-top:4px solid rgba(0,0,0,0.1);border-bottom:4px solid rgba(255,255,255,0.3)}#stacks_in_7060_7054 hr.inset_two{border-top:4px solid #FF9C00;border-bottom:4px solid #552700}#stacks_in_7060_7054 hr.inset_three{border-top:4px solid #552700;border-bottom:4px solid #FF9C00}#stacks_in_7060_7054 hr.inset_four{border-top:4px solid #552700;border-bottom:4px solid #CCCCCC}#stacks_in_7060_7054 hr.flared{height:30px;border-style:solid;border-color:#552700;border-width:4px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_7060_7054 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#552700;border-width:0 0 4px 0;border-radius:20px}#stacks_in_7060_7054 hr.glyph{padding:0;border:0;border-top:4px double #552700;color:#552700;text-align:center;margin:1em 0}#stacks_in_7060_7054 hr.glyph:after{content:"";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_7060_7054 {
	margin: 15px 0px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_182945shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_183022shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;-o-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;-o-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:top,left,opacity;transition-property:transform,opacity}.isotope.no-transition,.isotope.no-transition .isotope-item,.isotope .isotope-item.no-transition{-webkit-transition-duration:0s;-moz-transition-duration:0s;-o-transition-duration:0s;transition-duration:0s}#stacks_in_184208_180455 .fluid_cell{margin:5px;float:left;overflow:hidden;position:relative;-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px} #stacks_in_184208_180455 .stamp{float:right;width:250px;height:200px}  #stacks_in_184208_180455 .fluid_cell{width:48%} 
@media only screen and (min-width:0px){#stacks_in_184208_180459{}}


#stacks_in_184208_180459 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

#stacks_in_184208_180461 {
	line-height: 2em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_183000shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_183280shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */.lines.stacks_in_183371{width:100%;margin:calc(0rem/16) auto calc(16rem/16) auto;border-bottom:2px solid rgba(34, 34, 34, 1.00);background:rgba(0, 0, 0, 0.00);transform:rotate(0deg)}.lines.stacks_in_183371.vertical{border-left:2px solid rgba(34, 34, 34, 1.00);border-bottom:none;width:0;height:100%;margin:0 auto;margin-top:calc((100% - 100%)/-2)}
/* Start Responsive Shim stack CSS code */.stacks_in_184131shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//*  */
#article-list-stacks_in_184133 {
  
  background-color : rgba(102, 204, 255, 1.00);
}

#article-list-stacks_in_184133 {
  padding: 8px 14px;
  max-width: 720px;
  border-radius: 16px;
  margin: 0px auto;
  box-sizing: border-box; }
  
  #article-list-stacks_in_184133 .article-list-grid-item:not(.active-expand) .article-top .article-header{padding: 0 30px 0 0;}
  #article-list-stacks_in_184133 .article-list-grid-item:not(.active-expand) .article-thumbnail-right .article-header{padding: 0 0 0 30px;}
  
  #article-list-stacks_in_184133 * {
    box-sizing: border-box; }
  #article-list-stacks_in_184133 .article-list-grid {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    #article-list-stacks_in_184133 .article-list-grid-item {
      overflow: hidden; }
      #article-list-stacks_in_184133 .article-list-grid-item:last-child .article-outer {
        border-bottom: none; }
  #article-list-stacks_in_184133 .article-outer {
    padding: 16px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  #article-list-stacks_in_184133 .article {
    display: flex;
    flex-direction: column;
    justify-content: center;
            align-items: center;
 }
    #article-list-stacks_in_184133 .article .article-top {
      width: 100%;
      display: grid;
     grid-template-columns: 128px 1fr;
     grid-gap: 30px;
     align-items: center;
     justify-items: center;
    }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article .article-top {
      grid-gap: 60px;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top {
      align-items: flex-end;
    }
    #article-list-stacks_in_184133 .article .article-top.article-thumbnail-right {
      grid-template-columns: 1fr 128px;
    }
    #article-list-stacks_in_184133 .article .article-top.article-no-thumbnail {
      grid-template-columns: 1fr;
    }
    #article-list-stacks_in_184133 .article .article-top.article-thumbnail-right > .article-image {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184133 .article .article-top.article-thumbnail-right > .article-header {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184133 p,
    #article-list-stacks_in_184133 .article-content {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(0, 0, 0, 1.00);
    }
    #article-list-stacks_in_184133 .article-title {
      margin: 0 0 4px 0;
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      line-height: 1.2;
    }
    #article-list-stacks_in_184133 .article-custom-head {
      color: rgba(255, 255, 255, 1.00);
    }
    #article-list-stacks_in_184133 .article-description {
      font-size: 14px;
      line-height: 1.3;
      color: rgba(0, 0, 0, 1.00);
    }
    #article-list-stacks_in_184133 .article-list-grid-item .article-info {
      margin: 5px 5px 0 0;
      font-size: 13px;
      display: inline-block;
      color: rgba(0, 0, 0, 0.60);
      line-height: 1.5;
    }
      #article-list-stacks_in_184133 .article-info .info-highlight {
        color: rgba(18, 132, 207, 1.00); }
      #article-list-stacks_in_184133 .article-info.info-1::before {
        content: 'By';
        display: inline-block; }
      #article-list-stacks_in_184133 .article-info.info-2::before {
        content: 'Posted';
        display: inline-block; }
      #article-list-stacks_in_184133 .article-info span {
        margin-left: 3px; }
    #article-list-stacks_in_184133 .article-header {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: 100%;
      overflow: hidden;
    }
    #article-list-stacks_in_184133 .article-image {
      background: rgba(51, 51, 51, 1.00);
      width: 128px;
      height: 128px;
      border-radius: 16px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      overflow: hidden;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    #article-list-stacks_in_184133 .article-featured-image {
      display: none;
    }
      #article-list-stacks_in_184133 .article-image::before, #article-list-stacks_in_184133 .article-image .article-image-icon {
        content: '';
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        pointer-events: none;
      }
      #article-list-stacks_in_184133 .article-image::before {
        z-index: 4;
        opacity: 0.5;
        transition: opacity 0.3s ease; }
      #article-list-stacks_in_184133 .article-image .article-image-icon {
        opacity: 1;
        color: rgba(255, 255, 255, 1.00);
        fill: rgba(255, 255, 255, 1.00);
        left: 50%;
        transform: translate(-50%,0);
        width: 64.000000px;
        text-align: center;
      }
      #article-list-stacks_in_184133 .article-image .article-image-icon i {
        font-size: 64.000000px;
        line-height: 128px;
      }
      #article-list-stacks_in_184133 .article-image .article-image-icon-hover {
        opacity: 0;
      }
        #article-list-stacks_in_184133 .article-back-arrow {
          display: inline-block;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          text-rendering: auto;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
        }
      #article-list-stacks_in_184133 .article-image img {
        width: 100%;
        z-index: 3;
        height: auto;
        position: relative;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        border-radius: 16px; }
    #article-list-stacks_in_184133 .article-content {
      margin: 32px 0 0 0;
      padding: 24.000000px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.10);
    }
    /*  */
    #article-list-stacks_in_184133 .article-content {
      width: 1200px;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
    }
    #article-list-stacks_in_184133 .article-content,
    #article-list-stacks_in_184133 .article-content * {
      visibility: hidden;
    }
    /*  */
      #article-list-stacks_in_184133.hide-divider .article-content {
        margin: 0;
        border-top: 0px solid transparent;
      }
      #article-list-stacks_in_184133 .article h1, #article-list-stacks_in_184133 .article h2, #article-list-stacks_in_184133 .article h3, #article-list-stacks_in_184133 .article h4, #article-list-stacks_in_184133 .article h5, #article-list-stacks_in_184133 .article h6 {
        color: rgba(255, 255, 255, 1.00);
      }
      #article-list-stacks_in_184133 .article-content p a,
      #article-list-stacks_in_184133 .article-content p a:visited {
        text-decoration: underline;
        color: rgba(251, 2, 128, 1.00);
      }
      #article-list-stacks_in_184133 .article-content p a:hover {
        color: rgba(255, 255, 255, 1.00);
      }
    #article-list-stacks_in_184133 .article-close {
      color: rgba(255, 255, 255, 1.00);
      padding-bottom: 16px;
      width: 100%;
      display: none;
      cursor: pointer;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-transform: uppercase;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      #article-list-stacks_in_184133 .article-close .article-back-arrow {
        margin-right: 10px;
        width: 32px;
        height: 32px;
      }
      #article-list-stacks_in_184133 .article-close .article-back-arrow svg {
        stroke: rgba(255, 255, 255, 1.00);
        color: rgba(255, 255, 255, 1.00);
      }
  #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover {
    cursor: pointer; }
    #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-title, #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-description {
      text-decoration: underline; }
    #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-image {
      overflow: hidden; }
      #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-image::before {
        opacity: 0.5;
        background: rgba(51, 51, 51, 1.00);
      }
      #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-image .article-image-icon {
        opacity: 0;
      }
      #article-list-stacks_in_184133 .article-list-grid-item:not(.active):hover .article-image .article-image-icon-hover {
        opacity: 1;
        z-index: 4;
        color: rgba(255, 255, 255, 1.00);
      }
  #article-list-stacks_in_184133 .article-list-grid-item.active .article-outer::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 5;
    display: block;
    position: fixed;
    transition: all 0.3s ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-animation: article-bg-expand 0.5s 0.5s;
            animation: article-bg-expand 0.5s 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    pointer-events: none;}
    #article-list-stacks_in_184133 .article-list-grid-item.active .article-outer::before {
      
      background-color : rgba(102, 204, 255, 1.00);
    }
    
  #article-list-stacks_in_184133 .article-list-grid-item.active .article {
    -webkit-animation: article-active 0.3s, article-open 0.5s 0.6s;
            animation: article-active 0.3s, article-open 0.5s 0.6s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-outer {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    overflow-y: scroll;
    z-index: 9999;
    padding: 16px 0px; }
  #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article {
    z-index: 7;
    margin: 0 auto;
    position: relative;
            flex-direction: column;
     }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article .article-close,
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article .article-header,
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article .article-content {
      width: 1200px;
      max-width: calc(100% -  48px);
    }
    #article-list-stacks_in_184133 .article-list-grid-item .article-links,
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article-thumbnail,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article-thumbnail,
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article-thumbnail.article-has-image,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article-thumbnail.article-has-image,
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-featured-image + .article-thumbnail,
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-featured-image + .article-thumbnail {
      display: none;
    }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-links {
      display: flex;
    }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-featured-image {
      display: block;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article-image {
      width: 200px;
      height: 200px;
      border-radius: 200px;
    }
    
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article-image.article-featured-image {
      border-radius: 16px;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article-image {
      border-radius: 32px;
    }
    
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top {
      grid-template-columns: 200px 1fr;
      justify-items: stretch;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top > .article-header:first-child {
      grid-column: -1/1;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top {
      grid-template-columns: 1fr 200px;
      justify-items: stretch;
      align-items: stretch;
    }
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top > .article-header:first-child {
      grid-column: -1/1;
      grid-row: 1;
    }
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article-top {
      width: 880px;
      max-width: 100%;
    }
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article-top {
      width: 1200px;
      max-width: 100%;
    }
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article-image {
      width: 100%;
      padding-top: 25%;
    }
    @media all and (max-width: 756px) {
      #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top,
      #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top {
          grid-template-columns: 1fr;
      }
      #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top > .article-image,
      #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top > .article-image {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
     }
      #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article .article-top > .article-header,
      #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article .article-top > .article-header {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        padding-left: 0;
        max-width: 100%; }
    }
    @media all and (max-width: 880px) {
      #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article-image.article-featured-image {
        border-radius: 0px;
      }
    }
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article .article-top {
      display: flex;
      flex-direction: column;
    }
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article .article-top > .article-image,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-row: 1;
      grid-column: 1;
    }
    #article-list-stacks_in_184133.fill-header .article-list-grid-item.active-expand .article .article-top > .article-header,
    #article-list-stacks_in_184133.full-width .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-row: 2;
      grid-column: 1;
    }

    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-info.info-2::before {
      margin-left: 0; }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand {
      font-size: 18px;
    }
    #article-list-stacks_in_184133 .active-expand .article-title {
      font-size: 32px;
    }
    #article-list-stacks_in_184133 .active-expand .article-info {
      font-size: 15px;
    }
    #article-list-stacks_in_184133 .article-links {
      font-size: 14px;
      margin-top: 12px;
    }
    #article-list-stacks_in_184133 .article-links i {
      font-size: 22px;
    }
    #article-list-stacks_in_184133 .article-links > div[tag="node"],
    #article-list-stacks_in_184133 .article-links {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
    }
    #article-list-stacks_in_184133 .article-links svg {
      height: 22px;
      width: 22px;
    }
    #article-list-stacks_in_184133 .article-links .content-1ld-button {
      margin-right: 12px;
    }
    #article-list-stacks_in_184133 .article-description {
      margin: 0;
    }
    #article-list-stacks_in_184133 .active-expand .article-description {
      overflow: hidden;
      white-space: normal;
      text-overflow: clip;
      -webkit-line-clamp: 999;
      margin: 0 0 4px 0;
      font-size: 20px;
      font-style: italic;
    }
    #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article-header,
    #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article-header {
      padding-right: 0;
    }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-content {
      position: relative;
      pointer-events: auto;
      display: block;
      height: 100%;
      width: 100%;
    }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-content,
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-content * {
      visibility: visible;
    }
      #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-image img {
        transition: none; }
      #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article-image .article-image-icon,
      #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article-image .article-image-icon {
        width: 200px;
        height: 200px;
      }
      #article-list-stacks_in_184133.float-left .article-list-grid-item.active-expand .article-image .article-image-icon i,
      #article-list-stacks_in_184133.float-right .article-list-grid-item.active-expand .article-image .article-image-icon i {
        line-height: 200px;
        font-size: 100.000000px;
      }
    #article-list-stacks_in_184133 .article-list-grid-item.active-expand .article-close {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  #article-list-stacks_in_184133 .article-list-grid-item.active-close .article-outer {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  #article-list-stacks_in_184133 .article-list-grid-item:not(.active-expand) .article-title,
  #article-list-stacks_in_184133.ellipsed .article-list-grid-item:not(.active-expand) .article-description {
    /*  */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /*  */
  }
  #article-list-stacks_in_184133 .article-list-grid-item:not(.active-expand) .article-title {
    -webkit-line-clamp: 1;
  }





#article-list-stacks_in_184133 .article-title {
  font-size: 30px;
  line-height: 1.20;
}
#article-list-stacks_in_184133 .active-expand .article-title {
  font-size: 32px;
}



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

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

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

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

@-webkit-keyframes article-bg-expand {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes article-bg-expand {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }
/*  */
#stacks_in_184140 h3,#stacks_in_184140 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_184140 h3 a,#stacks_in_184140 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_184140 h3 a:hover,#stacks_in_184140 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_184140 small,#stacks_in_184140 small div{color:rgba(111, 111, 111, 1.00)}

#c1ld_stacks_in_184142,#c1ld_stacks_in_184142 > svg,.mez p#c1ld_stacks_in_184142 + div {}#c1ld_stacks_in_184142.content-1ld-button a {grid-gap: 2px;border: 0px solid rgba(0, 0, 0, 0.15);border-radius: 4px;background-color: rgba(255, 255, 255, 0.00);color: rgba(0, 0, 0, 0.60);margin-left: 0;margin-right: 0;padding: 0px 0px;}#c1ld_stacks_in_184142.content-1ld-button a div {line-height: 1;}#c1ld_stacks_in_184142.content-1ld-button a:hover {border-color: rgba(0, 0, 0, 0.00);background-color: rgba(255, 255, 255, 0.00);color: rgba(0, 0, 0, 0.75);}#c1ld_stacks_in_184142.content-1ld-button.content-1ld-content a > svg {fill: rgba(0, 0, 0, 0.60);stroke: rgba(0, 0, 0, 0.60);}#c1ld_stacks_in_184142.content-1ld-button.content-1ld-content a:hover > svg {fill: rgba(0, 0, 0, 0.75);stroke: rgba(0, 0, 0, 0.75);}.mez #c1ld_stacks_in_184142 a {margin-top: 1px;}#c1ld_stacks_in_184142.content-1ld-content {margin: 0;}
#c1ld_stacks_in_184135,#c1ld_stacks_in_184135 > svg,.mez p#c1ld_stacks_in_184135 + div {text-align: left;}#c1ld_stacks_in_184135 {clear: both;}#c1ld_stacks_in_184135.content-1ld-content {margin-top: 16px;margin-bottom: 16px;}div#stacks_out_184135[tag="slice"]:has(>div>.com_onelittledesigner_stacks_Layouts_2_Content_stack) {margin-top: 16px;margin-bottom: 16px;}

#stacks_in_184137 {
	font-size: 150%;
}

#stacks_in_184144 {
	font-size: 80%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_184130shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//*  */
#article-list-stacks_in_184107 {
  
  background-color : rgba(204, 255, 102, 1.00);
}

#article-list-stacks_in_184107 {
  padding: 8px 14px;
  max-width: 720px;
  border-radius: 16px;
  margin: 0px auto;
  box-sizing: border-box; }
  
  #article-list-stacks_in_184107 .article-list-grid-item:not(.active-expand) .article-top .article-header{padding: 0 30px 0 0;}
  #article-list-stacks_in_184107 .article-list-grid-item:not(.active-expand) .article-thumbnail-right .article-header{padding: 0 0 0 30px;}
  
  #article-list-stacks_in_184107 * {
    box-sizing: border-box; }
  #article-list-stacks_in_184107 .article-list-grid {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    #article-list-stacks_in_184107 .article-list-grid-item {
      overflow: hidden; }
      #article-list-stacks_in_184107 .article-list-grid-item:last-child .article-outer {
        border-bottom: none; }
  #article-list-stacks_in_184107 .article-outer {
    padding: 16px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  #article-list-stacks_in_184107 .article {
    display: flex;
    flex-direction: column;
    justify-content: center;
            align-items: center;
 }
    #article-list-stacks_in_184107 .article .article-top {
      width: 100%;
      display: grid;
     grid-template-columns: 128px 1fr;
     grid-gap: 30px;
     align-items: center;
     justify-items: center;
    }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article .article-top {
      grid-gap: 60px;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top {
      align-items: flex-end;
    }
    #article-list-stacks_in_184107 .article .article-top.article-thumbnail-right {
      grid-template-columns: 1fr 128px;
    }
    #article-list-stacks_in_184107 .article .article-top.article-no-thumbnail {
      grid-template-columns: 1fr;
    }
    #article-list-stacks_in_184107 .article .article-top.article-thumbnail-right > .article-image {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184107 .article .article-top.article-thumbnail-right > .article-header {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184107 p,
    #article-list-stacks_in_184107 .article-content {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(0, 0, 0, 1.00);
    }
    #article-list-stacks_in_184107 .article-title {
      margin: 0 0 4px 0;
      color: rgba(128, 0, 128, 1.00);
      font-size: 18px;
      line-height: 1.2;
    }
    #article-list-stacks_in_184107 .article-custom-head {
      color: rgba(128, 0, 128, 1.00);
    }
    #article-list-stacks_in_184107 .article-description {
      font-size: 14px;
      line-height: 1.3;
      color: rgba(0, 0, 0, 1.00);
    }
    #article-list-stacks_in_184107 .article-list-grid-item .article-info {
      margin: 5px 5px 0 0;
      font-size: 13px;
      display: inline-block;
      color: rgba(0, 0, 0, 0.60);
      line-height: 1.5;
    }
      #article-list-stacks_in_184107 .article-info .info-highlight {
        color: rgba(18, 132, 207, 1.00); }
      #article-list-stacks_in_184107 .article-info.info-1::before {
        content: 'By';
        display: inline-block; }
      #article-list-stacks_in_184107 .article-info.info-2::before {
        content: 'Posted';
        display: inline-block; }
      #article-list-stacks_in_184107 .article-info span {
        margin-left: 3px; }
    #article-list-stacks_in_184107 .article-header {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: 100%;
      overflow: hidden;
    }
    #article-list-stacks_in_184107 .article-image {
      background: rgba(51, 51, 51, 1.00);
      width: 128px;
      height: 128px;
      border-radius: 16px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      overflow: hidden;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    #article-list-stacks_in_184107 .article-featured-image {
      display: none;
    }
      #article-list-stacks_in_184107 .article-image::before, #article-list-stacks_in_184107 .article-image .article-image-icon {
        content: '';
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        pointer-events: none;
      }
      #article-list-stacks_in_184107 .article-image::before {
        z-index: 4;
        opacity: 0.5;
        transition: opacity 0.3s ease; }
      #article-list-stacks_in_184107 .article-image .article-image-icon {
        opacity: 1;
        color: rgba(255, 255, 255, 1.00);
        fill: rgba(255, 255, 255, 1.00);
        left: 50%;
        transform: translate(-50%,0);
        width: 64.000000px;
        text-align: center;
      }
      #article-list-stacks_in_184107 .article-image .article-image-icon i {
        font-size: 64.000000px;
        line-height: 128px;
      }
      #article-list-stacks_in_184107 .article-image .article-image-icon-hover {
        opacity: 0;
      }
        #article-list-stacks_in_184107 .article-back-arrow {
          display: inline-block;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          text-rendering: auto;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
        }
      #article-list-stacks_in_184107 .article-image img {
        width: 100%;
        z-index: 3;
        height: auto;
        position: relative;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        border-radius: 16px; }
    #article-list-stacks_in_184107 .article-content {
      margin: 32px 0 0 0;
      padding: 24.000000px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.10);
    }
    /*  */
    #article-list-stacks_in_184107 .article-content {
      width: 1200px;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
    }
    #article-list-stacks_in_184107 .article-content,
    #article-list-stacks_in_184107 .article-content * {
      visibility: hidden;
    }
    /*  */
      #article-list-stacks_in_184107.hide-divider .article-content {
        margin: 0;
        border-top: 0px solid transparent;
      }
      #article-list-stacks_in_184107 .article h1, #article-list-stacks_in_184107 .article h2, #article-list-stacks_in_184107 .article h3, #article-list-stacks_in_184107 .article h4, #article-list-stacks_in_184107 .article h5, #article-list-stacks_in_184107 .article h6 {
        color: rgba(128, 0, 128, 1.00);
      }
      #article-list-stacks_in_184107 .article-content p a,
      #article-list-stacks_in_184107 .article-content p a:visited {
        text-decoration: underline;
        color: rgba(251, 2, 128, 1.00);
      }
      #article-list-stacks_in_184107 .article-content p a:hover {
        color: rgba(255, 255, 255, 1.00);
      }
    #article-list-stacks_in_184107 .article-close {
      color: rgba(128, 0, 64, 1.00);
      padding-bottom: 16px;
      width: 100%;
      display: none;
      cursor: pointer;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-transform: uppercase;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      #article-list-stacks_in_184107 .article-close .article-back-arrow {
        margin-right: 10px;
        width: 32px;
        height: 32px;
      }
      #article-list-stacks_in_184107 .article-close .article-back-arrow svg {
        stroke: rgba(128, 0, 64, 1.00);
        color: rgba(128, 0, 64, 1.00);
      }
  #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover {
    cursor: pointer; }
    #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-title, #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-description {
      text-decoration: underline; }
    #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-image {
      overflow: hidden; }
      #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-image::before {
        opacity: 0.5;
        background: rgba(51, 51, 51, 1.00);
      }
      #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-image .article-image-icon {
        opacity: 0;
      }
      #article-list-stacks_in_184107 .article-list-grid-item:not(.active):hover .article-image .article-image-icon-hover {
        opacity: 1;
        z-index: 4;
        color: rgba(255, 255, 255, 1.00);
      }
  #article-list-stacks_in_184107 .article-list-grid-item.active .article-outer::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 5;
    display: block;
    position: fixed;
    transition: all 0.3s ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-animation: article-bg-expand 0.5s 0.5s;
            animation: article-bg-expand 0.5s 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    pointer-events: none;}
    #article-list-stacks_in_184107 .article-list-grid-item.active .article-outer::before {
      
      background-color : rgba(204, 255, 102, 1.00);
    }
    
  #article-list-stacks_in_184107 .article-list-grid-item.active .article {
    -webkit-animation: article-active 0.3s, article-open 0.5s 0.6s;
            animation: article-active 0.3s, article-open 0.5s 0.6s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-outer {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    overflow-y: scroll;
    z-index: 9999;
    padding: 16px 0px; }
  #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article {
    z-index: 7;
    margin: 0 auto;
    position: relative;
            flex-direction: column;
     }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article .article-close,
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article .article-header,
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article .article-content {
      width: 1200px;
      max-width: calc(100% -  48px);
    }
    #article-list-stacks_in_184107 .article-list-grid-item .article-links,
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article-thumbnail,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article-thumbnail,
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article-thumbnail.article-has-image,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article-thumbnail.article-has-image,
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-featured-image + .article-thumbnail,
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-featured-image + .article-thumbnail {
      display: none;
    }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-links {
      display: flex;
    }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-featured-image {
      display: block;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article-image {
      width: 200px;
      height: 200px;
      border-radius: 200px;
    }
    
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article-image.article-featured-image {
      border-radius: 16px;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article-image {
      border-radius: 32px;
    }
    
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top {
      grid-template-columns: 200px 1fr;
      justify-items: stretch;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top > .article-header:first-child {
      grid-column: -1/1;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top {
      grid-template-columns: 1fr 200px;
      justify-items: stretch;
      align-items: stretch;
    }
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-column: 2;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-column: 1;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top > .article-header:first-child {
      grid-column: -1/1;
      grid-row: 1;
    }
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article-top {
      width: 880px;
      max-width: 100%;
    }
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article-top {
      width: 1200px;
      max-width: 100%;
    }
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article-image,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article-image {
      width: 100%;
      padding-top: 25%;
    }
    @media all and (max-width: 756px) {
      #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top,
      #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top {
          grid-template-columns: 1fr;
      }
      #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top > .article-image,
      #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top > .article-image {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
     }
      #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article .article-top > .article-header,
      #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article .article-top > .article-header {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        padding-left: 0;
        max-width: 100%; }
    }
    @media all and (max-width: 880px) {
      #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article-image.article-featured-image {
        border-radius: 0px;
      }
    }
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article .article-top,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article .article-top {
      display: flex;
      flex-direction: column;
    }
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article .article-top > .article-image,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article .article-top > .article-image {
      grid-row: 1;
      grid-column: 1;
    }
    #article-list-stacks_in_184107.fill-header .article-list-grid-item.active-expand .article .article-top > .article-header,
    #article-list-stacks_in_184107.full-width .article-list-grid-item.active-expand .article .article-top > .article-header {
      grid-row: 2;
      grid-column: 1;
    }

    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-info.info-2::before {
      margin-left: 0; }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand {
      font-size: 18px;
    }
    #article-list-stacks_in_184107 .active-expand .article-title {
      font-size: 32px;
    }
    #article-list-stacks_in_184107 .active-expand .article-info {
      font-size: 15px;
    }
    #article-list-stacks_in_184107 .article-links {
      font-size: 14px;
      margin-top: 12px;
    }
    #article-list-stacks_in_184107 .article-links i {
      font-size: 22px;
    }
    #article-list-stacks_in_184107 .article-links > div[tag="node"],
    #article-list-stacks_in_184107 .article-links {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
    }
    #article-list-stacks_in_184107 .article-links svg {
      height: 22px;
      width: 22px;
    }
    #article-list-stacks_in_184107 .article-links .content-1ld-button {
      margin-right: 12px;
    }
    #article-list-stacks_in_184107 .article-description {
      margin: 0;
    }
    #article-list-stacks_in_184107 .active-expand .article-description {
      overflow: hidden;
      white-space: normal;
      text-overflow: clip;
      -webkit-line-clamp: 999;
      margin: 0 0 4px 0;
      font-size: 20px;
      font-style: italic;
    }
    #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article-header,
    #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article-header {
      padding-right: 0;
    }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-content {
      position: relative;
      pointer-events: auto;
      display: block;
      height: 100%;
      width: 100%;
    }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-content,
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-content * {
      visibility: visible;
    }
      #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-image img {
        transition: none; }
      #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article-image .article-image-icon,
      #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article-image .article-image-icon {
        width: 200px;
        height: 200px;
      }
      #article-list-stacks_in_184107.float-left .article-list-grid-item.active-expand .article-image .article-image-icon i,
      #article-list-stacks_in_184107.float-right .article-list-grid-item.active-expand .article-image .article-image-icon i {
        line-height: 200px;
        font-size: 100.000000px;
      }
    #article-list-stacks_in_184107 .article-list-grid-item.active-expand .article-close {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  #article-list-stacks_in_184107 .article-list-grid-item.active-close .article-outer {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  #article-list-stacks_in_184107 .article-list-grid-item:not(.active-expand) .article-title,
  #article-list-stacks_in_184107.ellipsed .article-list-grid-item:not(.active-expand) .article-description {
    /*  */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /*  */
  }
  #article-list-stacks_in_184107 .article-list-grid-item:not(.active-expand) .article-title {
    -webkit-line-clamp: 1;
  }





#article-list-stacks_in_184107 .article-title {
  font-size: 30px;
  line-height: 1.20;
}
#article-list-stacks_in_184107 .active-expand .article-title {
  font-size: 32px;
}



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

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

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

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

@-webkit-keyframes article-bg-expand {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes article-bg-expand {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }
/*  */
#stacks_in_184109 h3,#stacks_in_184109 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_184109 h3 a,#stacks_in_184109 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_184109 h3 a:hover,#stacks_in_184109 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_184109 small,#stacks_in_184109 small div{color:rgba(111, 111, 111, 1.00)}

#c1ld_stacks_in_184123,#c1ld_stacks_in_184123 > svg,.mez p#c1ld_stacks_in_184123 + div {}#c1ld_stacks_in_184123.content-1ld-button a {grid-gap: 2px;border: 0px solid rgba(0, 0, 0, 0.15);border-radius: 4px;background-color: rgba(255, 255, 255, 0.00);color: rgba(0, 0, 0, 0.60);margin-left: 0;margin-right: 0;padding: 0px 0px;}#c1ld_stacks_in_184123.content-1ld-button a div {line-height: 1;}#c1ld_stacks_in_184123.content-1ld-button a:hover {border-color: rgba(0, 0, 0, 0.00);background-color: rgba(255, 255, 255, 0.00);color: rgba(0, 0, 0, 0.75);}#c1ld_stacks_in_184123.content-1ld-button.content-1ld-content a > svg {fill: rgba(0, 0, 0, 0.60);stroke: rgba(0, 0, 0, 0.60);}#c1ld_stacks_in_184123.content-1ld-button.content-1ld-content a:hover > svg {fill: rgba(0, 0, 0, 0.75);stroke: rgba(0, 0, 0, 0.75);}.mez #c1ld_stacks_in_184123 a {margin-top: 1px;}#c1ld_stacks_in_184123.content-1ld-content {margin: 0;}
#c1ld_stacks_in_184115,#c1ld_stacks_in_184115 > svg,.mez p#c1ld_stacks_in_184115 + div {text-align: left;}#c1ld_stacks_in_184115 {clear: both;}#c1ld_stacks_in_184115.content-1ld-content {margin-top: 16px;margin-bottom: 16px;}div#stacks_out_184115[tag="slice"]:has(>div>.com_onelittledesigner_stacks_Layouts_2_Content_stack) {margin-top: 16px;margin-bottom: 16px;}

#stacks_in_184117 {
	font-size: 150%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_184203shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start dooMontage 2 stack each CSS code */.stacks_in_184164sl-overlay{position:fixed;left:0;right:0;top:0;bottom:0;background:#000;opacity:.9;display:none;z-index:100006}.stacks_in_184164sl-wrapper{z-index:1000000}.stacks_in_184164sl-wrapper button{border:0;background:0 0;font-size:24px;padding:0;cursor:pointer}.stacks_in_184164sl-wrapper button:hover{opacity:.7}.stacks_in_184164sl-wrapper .stacks_in_184164sl-close{display:none;position:fixed;right:30px;top:30px;z-index:100015;color:#fff}.stacks_in_184164sl-wrapper .stacks_in_184164sl-counter{display:none;position:fixed;top:30px;left:30px;z-index:100015;color:#fff}.stacks_in_184164sl-wrapper .stacks_in_184164sl-navigation{width:100%;display:none}.stacks_in_184164sl-wrapper .stacks_in_184164sl-navigation button{position:fixed;top:50%;margin-top:-10px;height:30px;width:30px;line-height:30px;text-algin:center;display:block;z-index:100015}.stacks_in_184164sl-wrapper .stacks_in_184164sl-navigation button.stacks_in_184164sl-next{right:40px;color:#fff}.stacks_in_184164sl-wrapper .stacks_in_184164sl-navigation button.stacks_in_184164sl-prev{left:40px;color:#fff}.stacks_in_184164sl-wrapper .stacks_in_184164sl-image{position:fixed;-ms-touch-action:none;touch-action:none;z-index:1000000}.stacks_in_184164sl-wrapper .stacks_in_184164sl-image img{margin:0;padding:0;display:block}.stacks_in_184164sl-wrapper .stacks_in_184164sl-image .stacks_in_184164sl-caption{display:none;padding:10px;color:#fff;background:#000;opacity:0;position:absolute;bottom:0;left:0;right:0;-webkit-transition: opacity 300ms ease-out;-moz-transition: opacity 300ms ease-out;-o-transition: opacity 300ms ease-out;transition: opacity 300ms ease-out;}.stacks_in_184164sl-wrapper .stacks_in_184164sl-image .stacks_in_184164sl-download{display:none;position:absolute;bottom:5px;right:5px;color:#fff;z-index:100005}.stacks_in_184164sl-spinner{display:none;border:5px solid #333;border-radius:40px;height:40px;left:50%;margin:-20px 0 0 -20px;opacity:0;position:fixed;top:50%;width:40px;z-index:100007;-webkit-animation:pulsate 1s ease-out infinite;-moz-animation:pulsate 1s ease-out infinite;-ms-animation:pulsate 1s ease-out infinite;-o-animation:pulsate 1s ease-out infinite;animation:pulsate 1s ease-out infinite}@-webkit-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-moz-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-o-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-ms-keyframes pulsate{0%,100%{opacity:0}0%{transform:scale(.1)}50%{opacity:1}100%{transform:scale(1.2)}}.stacks_in_184164sl-image:hover > .stacks_in_184164sl-caption{	opacity: 0.8;}.dooMasterImage, .jg-entry, .followMontageLink{-webkit-transform-style: preserve-3d;-webkit-transform:translate3d(0,0,0);-webkit-backface-visibility: hidden;-webkit-font-smoothing: antialiased}#stacks_in_184164Montage{	background: rgba(255, 255, 255, 1.00);	z-index: 100;}#stacks_in_184164 .montageImageTitle{	display: none;}.stacks_in_184164green{	background: #37332f;	color: #fff;	padding: 0 5px 0 5px;}.stacks_in_184164centerbox {	background-color: #ffffff;	-webkit-border-radius: 3px;	padding: 10px;	border: 1px solid #D3D3D3;}#stacks_in_184164 .montageImageTitle{	display: none !important;}/* End Edit Mode UI Style                  *//* ####################################### *//* %[endif]% *//* End dooMontage 2 stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */#c1ld_stacks_in_184204,#c1ld_stacks_in_184204 > svg,.mez p#c1ld_stacks_in_184204 + div {text-align: left;}#c1ld_stacks_in_184204 {clear: both;}#c1ld_stacks_in_184204.content-1ld-content {margin-top: 16px;margin-bottom: 16px;}div#stacks_out_184204[tag="slice"]:has(>div>.com_onelittledesigner_stacks_Layouts_2_Content_stack) {margin-top: 16px;margin-bottom: 16px;}
.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;-o-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;-o-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:top,left,opacity;transition-property:transform,opacity}.isotope.no-transition,.isotope.no-transition .isotope-item,.isotope .isotope-item.no-transition{-webkit-transition-duration:0s;-moz-transition-duration:0s;-o-transition-duration:0s;transition-duration:0s}#stacks_in_184210_180455 .fluid_cell{margin:5px;float:left;overflow:hidden;position:relative;-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px} #stacks_in_184210_180455 .stamp{float:right;width:250px;height:200px}  #stacks_in_184210_180455 .fluid_cell{width:48%} 
@media only screen and (min-width:0px){#stacks_in_184210_180459{}}


#stacks_in_184210_180459 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

#stacks_in_184210_180461 {
	line-height: 2em;
}

#stacks_in_184118 {
	font-size: 80%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_184129shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_183370shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code */ @media(hover:hover){#stacks_in_183272.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_183272.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_183272.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_183272.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_183272.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_183272.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_183272.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_183272.blu-sidebar.full-height{height:100vh}#stacks_in_183272.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_183272.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_183272.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_183272.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_183272.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_183272.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_183272.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_183272.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:16.35px;margin-right:16.35px}#stacks_in_183272.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_183272.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_183272.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_183272.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_183272.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_183272.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_183272.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_183272.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_183272.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_183272.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_183272.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_183272.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_183272.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_183272.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_183272.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_183272.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_183272.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_183272.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(40% - 0px);flex-basis:calc(40% - 0px);max-width:9999px;min-width:100px}
#stacks_in_183272.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_183272.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_183272.blu-sidebar>.blu-content::before,#stacks_in_183272.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_183272.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_183272.blu-sidebar>.blu-side::before,#stacks_in_183272.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
/* Start Responsive Shim stack CSS code */.stacks_in_183615shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_184106shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start dooFaq2 stack each CSS code */

#stacks_in_182817 .faq-question{
	position: relative;
	font-size: 110% !important;
	line-height: normal !important;
	font-weight: bold;
	padding: 10px 14px 10px 12px;
	padding-right: 50px;
	margin-top: 1px;
	border-radius: 8px;
	cursor: pointer;
}

#stacks_in_182817 .faq-icon{
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 14px 10px 12px;
}

/* Hack to stop text flickr */
#stacks_in_182817 .faq-icon i{
	position: relative;
	z-index: 100;
}



#stacks_in_182817 .fa-bars, #stacks_in_182817 .fa-toggle-off, #stacks_in_182817 .fa-question, #stacks_in_182817 .fa-angle-right{
	display: none;
}

#stacks_in_182817 .fa-bars{
	display: inline;
}

#stacks_in_182817 .faq-answer{
	margin: 0 4px 0 4px;
	padding: 20px 0px 20px 0px;
}


/* THEME */
#stacks_in_182817 .faqQuestionClosed{
	background-color: rgba(249, 106, 9, 1.00) !important;
	color: rgba(85, 39, 0, 1.00) !important;
	-webkit-transition: background 500ms ease-out;
    -moz-transition: background 500ms ease-out;
    -o-transition: background 500ms ease-out;
    transition: background 500ms ease-out;
    
}

#stacks_in_182817 .faqQuestionOpen{
	background: rgba(85, 39, 0, 1.00) !important;
	color: rgba(249, 106, 9, 1.00) !important;
	-webkit-transition: background 500ms ease-out;
    -moz-transition: background 500ms ease-out;
    -o-transition: background 500ms ease-out;
    transition: background 500ms ease-out;
}

#stacks_in_182817 .faqQuestionOpen:hover{
	background: rgba(85, 39, 0, 1.00) !important;
}

#stacks_in_182817 .faqQuestionClosed:hover{
	background: rgba(255, 141, 44, 1.00) !important;
	
}



#stacks_in_182817 .faq-answer {
  display: none;
}





/* End dooFaq2 stack each CSS code */
#stacks_in_182817 {
	-moz-border-radius:  5px;
	-webkit-border-radius:  5px;
	border-radius:  5px;
	margin: 20px 0px 0px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */
#stacks_in_182823 {
	margin: 0px 0px 15px 0px;
}




#stacks_in_182826_81130 {
	margin: 25px 0px 0px 0px;
}

#stacks_out_182826_81130 {
	margin-left:0;
}

#stacks_in_182826_81132 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81134 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81134 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81134 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81134 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81134 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81134 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81134 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81134 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81134 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81134 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81134 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81134 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81134 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81134 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81134 {
	padding:  10px;
}

#stacks_in_182826_81135 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81137 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81137 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81137 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81137 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81137 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81137 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81137 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81137 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81137 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81137 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81137 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81137 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81137 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81137 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81137 {
	padding:  10px;
}

#stacks_in_182826_81138 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81140 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81140 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81140 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81140 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81140 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81140 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81140 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81140 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81140 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81140 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81140 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81140 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81140 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81140 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81140 {
	padding:  10px;
}

#stacks_in_182826_81141 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81143 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81143 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81143 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81143 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81143 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81143 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81143 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81143 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81143 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81143 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81143 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81143 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81143 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81143 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81143 {
	padding:  10px;
}

#stacks_in_182826_81144 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81146 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81146 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81146 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81146 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81146 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81146 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81146 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81146 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81146 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81146 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81146 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81146 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81146 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81146 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81146 {
	padding:  10px;
}

#stacks_in_182826_81147 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81149 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81149 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81149 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81149 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81149 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81149 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81149 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81149 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81149 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81149 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81149 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81149 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81149 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81149 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81149 {
	padding:  10px;
}

#stacks_in_182826_81150 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81152 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81152 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81152 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81152 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81152 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81152 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81152 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81152 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81152 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81152 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81152 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81152 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81152 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81152 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81152 {
	padding:  10px;
}

#stacks_in_182826_81153 {
	margin: 0px 0px 20px 0px;
}



#stacks_in_182826_81155 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182826_81155 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182826_81155 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182826_81155 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182826_81155 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182826_81155 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182826_81155 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182826_81155 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182826_81155 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182826_81155 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182826_81155 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182826_81155 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182826_81155 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182826_81155 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182826_81155 {
	padding:  10px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */


#stacks_in_182835_81249 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182835_81249 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182835_81249 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182835_81249 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182835_81249 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182835_81249 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182835_81249 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182835_81249 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182835_81249 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182835_81249 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182835_81249 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182835_81249 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182835_81249 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182835_81249 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182835_81249 {
	margin: 50px 0px 20px 0px;
	padding:  10px;
}



#stacks_in_182835_81250 .button_label {
	font: 500 18px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_182835_81250 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_182835_81250 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_182835_81250 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_182835_81250 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 15px;
	text-decoration:none;
	text-align:center;
	color:rgba(249, 106, 9, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(85, 39, 0, 1.00);
	border-radius:10px;
	background:rgba(85, 39, 0, 1.00);
}
#stacks_in_182835_81250 .sweet_button:visited {
	color:rgba(249, 106, 9, 1.00);
}

#stacks_in_182835_81250 .sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}







	#stacks_in_182835_81250 .sweet_button {
		-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 10px rgba(0,0,0,0.75);
		box-shadow: 0px 2px 10px rgba(0,0,0,0.75);
	}
	#stacks_in_182835_81250 .sweet_button_wrapper{padding-bottom:18px;}


#stacks_in_182835_81250 .sweet_button:hover {
	color:rgba(249, 106, 9, 1.00);
	background: rgba(105, 59, 20, 1.00);
}
#stacks_in_182835_81250 .sweet_button:active{
	background: rgba(65, 19, 0, 1.00);
}
#stacks_in_182835_81250 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_182835_81250 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_182835_81250 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_182835_81250 {
	margin: 0px 0px 25px 0px;
	padding:  10px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */#stacks_in_183234 .overlay {
    position: absolute;
    width:  100% ;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    
}

#stacks_in_183234 video.video {
    display: block;
}
#stacks_in_183234 {
	margin: 10px 0px 10px 0px;
}

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

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

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

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


	#stacks_in_182842 {
		text-align: left;
	}







	@media only screen and (max-width: 480px) {
		#stacks_in_182842 {
			text-align: center;
		}

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



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


/* Color picker options */
	
	#stacks_in_182842 .stacks_in_182842-button {
		
			background-color: #552700;
		
	}

	#stacks_in_182842 a.stacks_in_182842-button, #stacks_in_182842 a.stacks_in_182842-button:visited {
		
			color: #F96A09 !important;
			
	}

	#stacks_in_182842 a.stacks_in_182842-button:hover, #stacks_in_182842 a.stacks_in_182842-button:active {
		
			text-decoration: none;
			color: #F96A09 !important;
			background-color: #693B14;
		
	}

	
	#stacks_in_182842 .button_icon {
		
			background-color: #552700;
		
	}

	#stacks_in_182842 a.stacks_in_182842-button:hover .button_icon, #stacks_in_182842 a.stacks_in_182842-button:active .button_icon {
		
			background-color: #693B14;
				
	}
	



#stacks_in_182842 {
	margin: 15px 0px 15px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */@media only screen and (min-width:0px){#stacks_in_182849{}}

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

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

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

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


	#stacks_in_182852 {
		text-align: left;
	}







	@media only screen and (max-width: 480px) {
		#stacks_in_182852 {
			text-align: center;
		}

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



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


/* Color picker options */
	
	#stacks_in_182852 .stacks_in_182852-button {
		
			background-color: #552700;
		
	}

	#stacks_in_182852 a.stacks_in_182852-button, #stacks_in_182852 a.stacks_in_182852-button:visited {
		
			color: #F96A09 !important;
			
	}

	#stacks_in_182852 a.stacks_in_182852-button:hover, #stacks_in_182852 a.stacks_in_182852-button:active {
		
			text-decoration: none;
			color: #F96A09 !important;
			background-color: #693B14;
		
	}

	
	#stacks_in_182852 .button_icon {
		
			background-color: #552700;
		
	}

	#stacks_in_182852 a.stacks_in_182852-button:hover .button_icon, #stacks_in_182852 a.stacks_in_182852-button:active .button_icon {
		
			background-color: #693B14;
				
	}
	



#stacks_in_182852 {
	margin: 15px 0px 15px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */#stacks_in_182859 .stacks_in_182859-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

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

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

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


	#stacks_in_182859 {
		text-align: left;
	}







	@media only screen and (max-width: 480px) {
		#stacks_in_182859 {
			text-align: center;
		}

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



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


/* Color picker options */
	
	#stacks_in_182859 .stacks_in_182859-button {
		
			background-color: #552700;
		
	}

	#stacks_in_182859 a.stacks_in_182859-button, #stacks_in_182859 a.stacks_in_182859-button:visited {
		
			color: #F96A09 !important;
			
	}

	#stacks_in_182859 a.stacks_in_182859-button:hover, #stacks_in_182859 a.stacks_in_182859-button:active {
		
			text-decoration: none;
			color: #F96A09 !important;
			background-color: #693B14;
		
	}

	
	#stacks_in_182859 .button_icon {
		
			background-color: #552700;
		
	}

	#stacks_in_182859 a.stacks_in_182859-button:hover .button_icon, #stacks_in_182859 a.stacks_in_182859-button:active .button_icon {
		
			background-color: #693B14;
				
	}
	



#stacks_in_182859 {
	margin: 15px 0px 15px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */
/* START QUARENTINE CSS */





     
/* END QUARENTINE CSS */      
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code */


#stacks_in_183121 {
	margin: 0px 0px 10px 0px;
}
/* Start Liquid Columns stack CSS code */ .stacks_in_183134column { float:left; display:inline; }.stacks_in_183134one-third.stacks_in_183134column { 	width: 33.333333333% /* 320px / 960px */;}.stacks_in_183134first{	padding-left: 0;	padding-right: 13px;	padding-bottom: 0;}.stacks_in_183134middle{	padding-left: 7px;	padding-right: 6px;	padding-bottom: 0;}.stacks_in_183134last{	padding-left: 13px;	padding-right: 0;	padding-bottom: 0;}@media only screen and (max-width: 979px) {	.stacks_in_183134first{	padding-left: 0;	padding-right: 0;	padding-bottom: 20px;	}	.stacks_in_183134middle{		padding-left: 0;		padding-right: 10px;		padding-bottom: 0;	}		.stacks_in_183134last{		padding-left: 10px;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183134one-third.stacks_in_183134column {     	width: 50%;     }    .stacks_in_183134one-third.stacks_in_183134column.stacks_in_183134more-important {     	width:100%;     }    }@media only screen and (max-width: 480px) {	.stacks_in_183134first{	padding-left: 0;	padding-right: 0;	padding-bottom: 10px;	}	.stacks_in_183134middle{		padding-left: 0;		padding-right: 0;		padding-bottom: 10px;	}		.stacks_in_183134last{		padding-left: 0;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183134one-third.stacks_in_183134column {     	width: 100%;    }        .stacks_in_183134one-third.stacks_in_183134column.stacks_in_183134more-important {     	width:100%;     }    }/* End Liquid Columns stack CSS code */
#stacks_in_183134 {
	margin: 10px 0px 0px 0px;
}
#stacks_in_183138 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

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

}


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


#stacks_in_183138 a i,
#stacks_in_183138 a:visited i {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_183138 a,
  #stacks_in_183138 a:visited {
    background-color: rgba(85, 39, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_183138 a:hover,
  #stacks_in_183138 a:active {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00) !important;
  }

  #stacks_in_183138 a i,
  #stacks_in_183138 a:visited i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00);
  }

  #stacks_in_183138 a:hover i,
  #stacks_in_183138 a:active i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_183138 a,
    #stacks_in_183138 a:visited {
      width: 100%;
    }
  }

  




/* Start Liquid Columns stack CSS code */ .stacks_in_183147column { float:left; display:inline; }.stacks_in_183147one-third.stacks_in_183147column { 	width: 33.333333333% /* 320px / 960px */;}.stacks_in_183147first{	padding-left: 0;	padding-right: 13px;	padding-bottom: 0;}.stacks_in_183147middle{	padding-left: 7px;	padding-right: 6px;	padding-bottom: 0;}.stacks_in_183147last{	padding-left: 13px;	padding-right: 0;	padding-bottom: 0;}@media only screen and (max-width: 979px) {	.stacks_in_183147first{	padding-left: 0;	padding-right: 0;	padding-bottom: 20px;	}	.stacks_in_183147middle{		padding-left: 0;		padding-right: 10px;		padding-bottom: 0;	}		.stacks_in_183147last{		padding-left: 10px;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183147one-third.stacks_in_183147column {     	width: 50%;     }    .stacks_in_183147one-third.stacks_in_183147column.stacks_in_183147more-important {     	width:100%;     }    }@media only screen and (max-width: 480px) {	.stacks_in_183147first{	padding-left: 0;	padding-right: 0;	padding-bottom: 10px;	}	.stacks_in_183147middle{		padding-left: 0;		padding-right: 0;		padding-bottom: 10px;	}		.stacks_in_183147last{		padding-left: 0;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183147one-third.stacks_in_183147column {     	width: 100%;    }        .stacks_in_183147one-third.stacks_in_183147column.stacks_in_183147more-important {     	width:100%;     }    }/* End Liquid Columns stack CSS code */
#stacks_in_183147 {
	margin: 10px 0px 0px 0px;
}
#stacks_in_183148 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

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

}


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


#stacks_in_183148 a i,
#stacks_in_183148 a:visited i {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_183148 a,
  #stacks_in_183148 a:visited {
    background-color: rgba(85, 39, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_183148 a:hover,
  #stacks_in_183148 a:active {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00) !important;
  }

  #stacks_in_183148 a i,
  #stacks_in_183148 a:visited i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00);
  }

  #stacks_in_183148 a:hover i,
  #stacks_in_183148 a:active i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_183148 a,
    #stacks_in_183148 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_183150 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

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

}


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


#stacks_in_183150 a i,
#stacks_in_183150 a:visited i {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_183150 a,
  #stacks_in_183150 a:visited {
    background-color: rgba(85, 39, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_183150 a:hover,
  #stacks_in_183150 a:active {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00) !important;
  }

  #stacks_in_183150 a i,
  #stacks_in_183150 a:visited i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00);
  }

  #stacks_in_183150 a:hover i,
  #stacks_in_183150 a:active i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_183150 a,
    #stacks_in_183150 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_183152 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

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

}


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


#stacks_in_183152 a i,
#stacks_in_183152 a:visited i {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_183152 a,
  #stacks_in_183152 a:visited {
    background-color: rgba(85, 39, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_183152 a:hover,
  #stacks_in_183152 a:active {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00) !important;
  }

  #stacks_in_183152 a i,
  #stacks_in_183152 a:visited i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00);
  }

  #stacks_in_183152 a:hover i,
  #stacks_in_183152 a:active i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_183152 a,
    #stacks_in_183152 a:visited {
      width: 100%;
    }
  }

  




/* Start Liquid Columns stack CSS code */ .stacks_in_183140column { float:left; display:inline; }.stacks_in_183140one-third.stacks_in_183140column { 	width: 33.333333333% /* 320px / 960px */;}.stacks_in_183140first{	padding-left: 0;	padding-right: 13px;	padding-bottom: 0;}.stacks_in_183140middle{	padding-left: 7px;	padding-right: 6px;	padding-bottom: 0;}.stacks_in_183140last{	padding-left: 13px;	padding-right: 0;	padding-bottom: 0;}@media only screen and (max-width: 979px) {	.stacks_in_183140first{	padding-left: 0;	padding-right: 0;	padding-bottom: 20px;	}	.stacks_in_183140middle{		padding-left: 0;		padding-right: 10px;		padding-bottom: 0;	}		.stacks_in_183140last{		padding-left: 10px;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183140one-third.stacks_in_183140column {     	width: 50%;     }    .stacks_in_183140one-third.stacks_in_183140column.stacks_in_183140more-important {     	width:100%;     }    }@media only screen and (max-width: 480px) {	.stacks_in_183140first{	padding-left: 0;	padding-right: 0;	padding-bottom: 10px;	}	.stacks_in_183140middle{		padding-left: 0;		padding-right: 0;		padding-bottom: 10px;	}		.stacks_in_183140last{		padding-left: 0;		padding-right: 0;		padding-bottom: 0;	}	    .stacks_in_183140one-third.stacks_in_183140column {     	width: 100%;    }        .stacks_in_183140one-third.stacks_in_183140column.stacks_in_183140more-important {     	width:100%;     }    }/* End Liquid Columns stack CSS code */
#stacks_in_183140 {
	margin: 10px 0px 0px 0px;
}
#stacks_in_183139 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

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

}


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


#stacks_in_183139 a i,
#stacks_in_183139 a:visited i {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_183139 a,
  #stacks_in_183139 a:visited {
    background-color: rgba(85, 39, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_183139 a:hover,
  #stacks_in_183139 a:active {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00) !important;
  }

  #stacks_in_183139 a i,
  #stacks_in_183139 a:visited i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(85, 39, 0, 1.00);
  }

  #stacks_in_183139 a:hover i,
  #stacks_in_183139 a:active i {
    background-color: rgba(249, 106, 9, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_183139 a,
    #stacks_in_183139 a:visited {
      width: 100%;
    }
  }

  




/* Start Responsive Shim stack CSS code */.stacks_in_182319shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* LiftedCorners Stack 1.2.2 */#stacks_in_183284 {	padding: 16px 6px;	z-index: 1;}#stacks_in_183284, #stacks_in_183284 * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_183284 .page-curl {	background: #FFFFFF;	background: -webkit-linear-gradient(0deg, #EEEEEE 0%, #FFF 25%, #FFF 75%, #EEEEEE 100%);	background:    -moz-linear-gradient(0deg, #EEEEEE 0%, #FFF 25%, #FFF 75%, #EEEEEE 100%);	background:     -ms-linear-gradient(0deg, #EEEEEE 0%, #FFF 25%, #FFF 75%, #EEEEEE 100%);	background:         linear-gradient(0deg, #EEEEEE 0%, #FFF 25%, #FFF 75%, #EEEEEE 100%);		border: 1px solid #F96A09;	-webkit-border-radius: 6px;	   -moz-border-radius: 6px;	        border-radius: 6px;	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);	   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);	        box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);	position: relative;	}#stacks_in_183284 .page-curl:before, #stacks_in_183284 .page-curl:after {	background: none;	bottom: 12px;	-webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);	   -moz-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);	        box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);	content: "";	height: 10px;	left: 12px;	position: absolute;	width: 30%;	z-index: -1;	-webkit-transform: skew(-4deg) rotate(-4deg);	   -moz-transform: skew(-4deg) rotate(-4deg);	    -ms-transform: skew(-4deg) rotate(-4deg);	        transform: skew(-4deg) rotate(-4deg);}#stacks_in_183284 .page-curl:after {	-webkit-transform: skew(4deg) rotate(4deg);	   -moz-transform: skew(4deg) rotate(4deg);	    -ms-transform: skew(4deg) rotate(4deg);	        transform: skew(4deg) rotate(4deg);	left: auto;	right: 12px;}#stacks_in_183284 .page-curl.shadow-left {	background: #FFFFFF;	background: -webkit-linear-gradient(0deg, #EEEEEE 0%, #FFF 50%) !important;	background:    -moz-linear-gradient(0deg, #EEEEEE 0%, #FFF 50%) !important;	background:     -ms-linear-gradient(0deg, #EEEEEE 0%, #FFF 50%) !important;	background:         linear-gradient(0deg, #EEEEEE 0%, #FFF 50%) !important;	}#stacks_in_183284 .page-curl.shadow-right {	background: #FFFFFF;	background: -webkit-linear-gradient(0deg, #FFF 50%, #EEEEEE 100%) !important;	background:    -moz-linear-gradient(0deg, #FFF 50%, #EEEEEE 100%) !important;	background:     -ms-linear-gradient(0deg, #FFF 50%, #EEEEEE 100%) !important;	background:         linear-gradient(0deg, #FFF 50%, #EEEEEE 100%) !important;	}#stacks_in_183284 .shadow-bottom:before, #stacks_in_183284 .shadow-bottom:after {	top: auto;	bottom: 12px;	-webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);	   -moz-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);	        box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);}#stacks_in_183284 .shadow-left:after {	display: none;}doesnotexist:-o-prefocus, #stacks_in_183284 .shadow-left:after {	display: block;}#stacks_in_183284 .shadow-right:before {	display: none;}#stacks_in_183284 .shadow-top-bottom.shadow-left:after {	display: block;	bottom: auto;	top: 15px;	right: auto;	left: 12px;	-webkit-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);	   -moz-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);	        box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);}doesnotexist:-o-prefocus, #stacks_in_183284 .shadow-top-bottom.shadow-left:after {	bottom: -100px;	top:  auto;}#stacks_in_183284 .shadow-top-bottom.shadow-right:before {	display: block;	bottom: auto;	top: 15px;	right: 12px;	left: auto;	-webkit-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);	   -moz-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);	        box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);}/* End of LiftedCorners stack */