.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}
.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}}
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

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

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

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

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

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

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

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

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

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

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

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

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

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

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_1407 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_1407 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_1407 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_1407 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 70%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  top: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(164, 3, 0, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  border-width: 0px 0px 5px 0px;
  border-style: solid;
  border-color: rgba(235, 226, 206, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(235, 226, 206, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_1407.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_1407.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_1407.cookie-hide {
    display: none; }

#notice_stacks_in_1407 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_1407 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_1407 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 24px;
    line-height: 24px; }
  #notice_stacks_in_1407 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_1407 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_1407 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(235, 226, 206, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_1407 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_1407 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_1407 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_1407 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_1407 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_1407 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_1407 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_1407 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_1407 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_1407 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_1407 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_1407 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_1407 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_1407 {
    width: 100%; }
    #notice_stacks_in_1407 *::-ms-backdrop, #notice_stacks_in_1407 #notice_stacks_in_1407 {
      width: 100%; } }

/*  */



#stacks_in_1521 {
	margin: 20px 0px 0px 0px;
}
#listifyContainer_stacks_in_1482 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  box-sizing: border-box;
  padding: 30px 25px 30px 25px;
  border-radius: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/list_group_bg_image_choice-1482.png) no-repeat center center;
  background-size: cover;
  /*  */ }
  #listifyContainer_stacks_in_1482 [id*="listify"] {
    /*  */
    /*  */
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */ }

/*  */
/*  */
/*  */
@media (max-width: 767px) {
  #listifyContainer_stacks_in_1482 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #listifyContainer_stacks_in_1482 [id*="listify"] {
      width: 100% !important;
      min-width: auto !important;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyContainer_stacks_in_1482.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyContainer_stacks_in_1482.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyContainer_stacks_in_1482.hide-d {
    display: none; } }

/*  */
/*  */
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_1483 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_1483 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_1483 body {
    margin: 0; }
  #listify_stacks_in_1483 article, #listify_stacks_in_1483 aside, #listify_stacks_in_1483 details, #listify_stacks_in_1483 figcaption, #listify_stacks_in_1483 figure, #listify_stacks_in_1483 footer, #listify_stacks_in_1483 header, #listify_stacks_in_1483 hgroup, #listify_stacks_in_1483 main, #listify_stacks_in_1483 menu, #listify_stacks_in_1483 nav, #listify_stacks_in_1483 section, #listify_stacks_in_1483 summary {
    display: block; }
  #listify_stacks_in_1483 audio, #listify_stacks_in_1483 canvas, #listify_stacks_in_1483 progress, #listify_stacks_in_1483 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_1483 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_1483 [hidden], #listify_stacks_in_1483 template {
    display: none; }
  #listify_stacks_in_1483 a {
    background-color: transparent; }
    #listify_stacks_in_1483 a:active, #listify_stacks_in_1483 a:hover {
      outline: 0; }
  #listify_stacks_in_1483 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_1483 b, #listify_stacks_in_1483 strong {
    font-weight: bold; }
  #listify_stacks_in_1483 dfn {
    font-style: italic; }
  #listify_stacks_in_1483 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_1483 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_1483 small {
    font-size: 80%; }
  #listify_stacks_in_1483 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_1483 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_1483 sub {
    bottom: -0.25em; }
  #listify_stacks_in_1483 img {
    border: 0; }
  #listify_stacks_in_1483 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_1483 figure {
    margin: 1em 40px; }
  #listify_stacks_in_1483 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_1483 pre {
    overflow: auto; }
  #listify_stacks_in_1483 code, #listify_stacks_in_1483 kbd, #listify_stacks_in_1483 pre, #listify_stacks_in_1483 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_1483 button, #listify_stacks_in_1483 input, #listify_stacks_in_1483 optgroup, #listify_stacks_in_1483 select, #listify_stacks_in_1483 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_1483 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_1483 select {
    text-transform: none; }
  #listify_stacks_in_1483 button, #listify_stacks_in_1483 html input[type="button"], #listify_stacks_in_1483 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_1483 button[disabled], #listify_stacks_in_1483 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_1483 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_1483 input {
    line-height: normal; }
    #listify_stacks_in_1483 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_1483 input[type="checkbox"], #listify_stacks_in_1483 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_1483 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_1483 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_1483 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_1483 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_1483 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_1483 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_1483 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_1483 textarea {
    overflow: auto; }
  #listify_stacks_in_1483 optgroup {
    font-weight: bold; }
  #listify_stacks_in_1483 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_1483 td, #listify_stacks_in_1483 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_1483 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_1483 [class^="w-icon-"], #listify_stacks_in_1483 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_1483 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_1483 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_1483 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_1483 .w-icon-arrow-down:before, #listify_stacks_in_1483 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_1483 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_1483 html {
    height: 100%; }
  #listify_stacks_in_1483 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_1483 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_1483 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_1483 .w-block {
    display: block; }
  #listify_stacks_in_1483 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_1483 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1483 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1483 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_1483 .w-hidden {
    display: none; }
  #listify_stacks_in_1483 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_1483 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_1483 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_1483 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_1483 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_1483 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_1483 h1, #listify_stacks_in_1483 h2, #listify_stacks_in_1483 h3, #listify_stacks_in_1483 h4, #listify_stacks_in_1483 h5, #listify_stacks_in_1483 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_1483 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_1483 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_1483 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_1483 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_1483 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_1483 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_1483 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1483 a:focus {
    outline: 0; }
  #listify_stacks_in_1483 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_1483 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1483 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_1483 ul, #listify_stacks_in_1483 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_1483 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_1483 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1483 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1483 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_1483 .w-video iframe, #listify_stacks_in_1483 .w-video object, #listify_stacks_in_1483 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_1483 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_1483 button, #listify_stacks_in_1483 html input[type="button"], #listify_stacks_in_1483 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_1483 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_1483 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_1483 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_1483 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_1483 .w-input, #listify_stacks_in_1483 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_1483 .w-input:-moz-placeholder, #listify_stacks_in_1483 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_1483 .w-input::-moz-placeholder, #listify_stacks_in_1483 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_1483 .w-input:-ms-input-placeholder, #listify_stacks_in_1483 .w-select:-ms-input-placeholder, #listify_stacks_in_1483 .w-input::-webkit-input-placeholder, #listify_stacks_in_1483 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_1483 .w-input:focus, #listify_stacks_in_1483 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_1483 .w-input[disabled], #listify_stacks_in_1483 .w-select[disabled], #listify_stacks_in_1483 .w-input[readonly], #listify_stacks_in_1483 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1483 fieldset[disabled] .w-input, #listify_stacks_in_1483 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1483 textarea.w-input, #listify_stacks_in_1483 textarea.w-select {
    height: auto; }
  #listify_stacks_in_1483 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_1483 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_1483 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_1483 .w-checkbox, #listify_stacks_in_1483 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_1483 .w-checkbox:before, #listify_stacks_in_1483 .w-radio:before, #listify_stacks_in_1483 .w-checkbox:after, #listify_stacks_in_1483 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_1483 .w-checkbox:after, #listify_stacks_in_1483 .w-radio:after {
    clear: both; }
  #listify_stacks_in_1483 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_1483 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_1483 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_1483 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1483 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_1483 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_1483 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1483 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1483 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_1483 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_1483 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_1483 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_1483 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_1483 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_1483 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_1483 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_1483 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_1483 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_1483 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_1483 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_1483 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_1483 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_1483 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_1483 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1483 .w-container {
      max-width: 728px; }
    #listify_stacks_in_1483 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_1483 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_1483 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1483 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1483 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_1483 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1483 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1483 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_1483 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1483 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1483 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_1483 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1483 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1483 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_1483 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1483 .w-hidden-main, #listify_stacks_in_1483 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_1483 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_1483 .w-row, #listify_stacks_in_1483 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_1483 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_1483 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1483 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1483 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_1483 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1483 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1483 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_1483 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1483 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1483 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_1483 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1483 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1483 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1483 .w-container {
      max-width: none; }
    #listify_stacks_in_1483 .w-hidden-main, #listify_stacks_in_1483 .w-hidden-medium, #listify_stacks_in_1483 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_1483 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_1483 .w-col {
      width: 100%; }
    #listify_stacks_in_1483 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1483 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1483 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_1483 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1483 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1483 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_1483 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1483 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1483 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_1483 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1483 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1483 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_1483 .w-widget {
    position: relative; }
  #listify_stacks_in_1483 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_1483 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_1483 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_1483 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_1483 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_1483 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_1483 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_1483 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_1483 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_1483 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_1483 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_1483 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_1483 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_1483 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_1483 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_1483 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_1483 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_1483 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_1483 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_1483 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_1483 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_1483 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_1483 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_1483 .w-slider-arrow-left, #listify_stacks_in_1483 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_1483 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_1483 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_1483 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_1483 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_1483 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_1483 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_1483 .w-icon-slider-left, #listify_stacks_in_1483 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1483 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_1483 .w-dropdown-btn, #listify_stacks_in_1483 .w-dropdown-toggle, #listify_stacks_in_1483 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_1483 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_1483 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_1483 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1483 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_1483 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_1483 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_1483 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1483 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_1483 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_1483 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_1483 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1483 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_1483 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1483 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_1483 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_1483 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1483 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_1483 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1483 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1483 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_1483 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_1483 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_1483 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_1483 .w-lightbox-frame, #listify_stacks_in_1483 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_1483 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_1483 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_1483 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_1483 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_1483 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_1483 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_1483 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_1483 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_1483 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_1483 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_1483 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_1483 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_1483 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_1483 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_1483 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_1483 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_1483 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_1483 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_1483 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_1483 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_1483 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_1483 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_1483 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_1483 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_1483 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_1483 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_1483 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_1483 .w-lightbox-left, #listify_stacks_in_1483 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_1483 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_1483 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_1483 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_1483 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_1483 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1483 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1483 .w-richtext ol, #listify_stacks_in_1483 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_1483 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_1483 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_1483 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_1483 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_1483 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_1483 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_1483 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_1483 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_1483 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_1483 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_1483 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_1483 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_1483 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1483 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1483 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_1483 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_1483 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1483 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_1483 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_1483 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_1483 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_1483 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_1483 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1483 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1483 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1483 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1483 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_1483 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_1483 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_1483 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1483 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1483 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_1483 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1483 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1483 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_1483 .w-tabs {
    position: relative; }
    #listify_stacks_in_1483 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1483 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1483 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_1483 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_1483 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_1483 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_1483 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_1483 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1483 .w-tab-link {
      display: block; } }
  #listify_stacks_in_1483 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_1483 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_1483 .w-dyn-bind-empty, #listify_stacks_in_1483 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_1483 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_1483 .list {
    overflow: hidden;
    margin: 10px 50px 10px 50px;
    padding: 10px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(164, 3, 0, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    border-width: 5px 10px 5px 10px;
    border-style: double;
    border-color: rgba(251, 254, 255, 1.00);
    /*  */
    /*  */ }
  #listify_stacks_in_1483 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_1483 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1483 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_1483 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*  */ }
  #listify_stacks_in_1483 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-left: 5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1483 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_1483 .list-item-icon i {
    color: rgba(235, 226, 206, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_1483 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(251, 254, 255, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1483 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_1483 .list-item-inner {
  margin: 10px 50px 10px 50px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_1483.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_1483.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_1483.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1484.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_1484.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_1484.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_1484.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_1484.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_1484.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1484.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_1484.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(235, 226, 206, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1484.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1484.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1484.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1484.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1486.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1486.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1486.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1486.hide-d {
    display: none; } }

/*  */
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_1493 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_1493 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_1493 body {
    margin: 0; }
  #listify_stacks_in_1493 article, #listify_stacks_in_1493 aside, #listify_stacks_in_1493 details, #listify_stacks_in_1493 figcaption, #listify_stacks_in_1493 figure, #listify_stacks_in_1493 footer, #listify_stacks_in_1493 header, #listify_stacks_in_1493 hgroup, #listify_stacks_in_1493 main, #listify_stacks_in_1493 menu, #listify_stacks_in_1493 nav, #listify_stacks_in_1493 section, #listify_stacks_in_1493 summary {
    display: block; }
  #listify_stacks_in_1493 audio, #listify_stacks_in_1493 canvas, #listify_stacks_in_1493 progress, #listify_stacks_in_1493 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_1493 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_1493 [hidden], #listify_stacks_in_1493 template {
    display: none; }
  #listify_stacks_in_1493 a {
    background-color: transparent; }
    #listify_stacks_in_1493 a:active, #listify_stacks_in_1493 a:hover {
      outline: 0; }
  #listify_stacks_in_1493 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_1493 b, #listify_stacks_in_1493 strong {
    font-weight: bold; }
  #listify_stacks_in_1493 dfn {
    font-style: italic; }
  #listify_stacks_in_1493 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_1493 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_1493 small {
    font-size: 80%; }
  #listify_stacks_in_1493 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_1493 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_1493 sub {
    bottom: -0.25em; }
  #listify_stacks_in_1493 img {
    border: 0; }
  #listify_stacks_in_1493 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_1493 figure {
    margin: 1em 40px; }
  #listify_stacks_in_1493 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_1493 pre {
    overflow: auto; }
  #listify_stacks_in_1493 code, #listify_stacks_in_1493 kbd, #listify_stacks_in_1493 pre, #listify_stacks_in_1493 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_1493 button, #listify_stacks_in_1493 input, #listify_stacks_in_1493 optgroup, #listify_stacks_in_1493 select, #listify_stacks_in_1493 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_1493 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_1493 select {
    text-transform: none; }
  #listify_stacks_in_1493 button, #listify_stacks_in_1493 html input[type="button"], #listify_stacks_in_1493 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_1493 button[disabled], #listify_stacks_in_1493 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_1493 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_1493 input {
    line-height: normal; }
    #listify_stacks_in_1493 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_1493 input[type="checkbox"], #listify_stacks_in_1493 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_1493 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_1493 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_1493 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_1493 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_1493 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_1493 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_1493 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_1493 textarea {
    overflow: auto; }
  #listify_stacks_in_1493 optgroup {
    font-weight: bold; }
  #listify_stacks_in_1493 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_1493 td, #listify_stacks_in_1493 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_1493 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_1493 [class^="w-icon-"], #listify_stacks_in_1493 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_1493 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_1493 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_1493 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_1493 .w-icon-arrow-down:before, #listify_stacks_in_1493 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_1493 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_1493 html {
    height: 100%; }
  #listify_stacks_in_1493 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_1493 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_1493 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_1493 .w-block {
    display: block; }
  #listify_stacks_in_1493 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_1493 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1493 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1493 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_1493 .w-hidden {
    display: none; }
  #listify_stacks_in_1493 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_1493 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_1493 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_1493 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_1493 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_1493 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_1493 h1, #listify_stacks_in_1493 h2, #listify_stacks_in_1493 h3, #listify_stacks_in_1493 h4, #listify_stacks_in_1493 h5, #listify_stacks_in_1493 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_1493 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_1493 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_1493 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_1493 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_1493 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_1493 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_1493 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1493 a:focus {
    outline: 0; }
  #listify_stacks_in_1493 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_1493 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1493 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_1493 ul, #listify_stacks_in_1493 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_1493 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_1493 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1493 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1493 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_1493 .w-video iframe, #listify_stacks_in_1493 .w-video object, #listify_stacks_in_1493 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_1493 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_1493 button, #listify_stacks_in_1493 html input[type="button"], #listify_stacks_in_1493 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_1493 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_1493 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_1493 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_1493 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_1493 .w-input, #listify_stacks_in_1493 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_1493 .w-input:-moz-placeholder, #listify_stacks_in_1493 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_1493 .w-input::-moz-placeholder, #listify_stacks_in_1493 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_1493 .w-input:-ms-input-placeholder, #listify_stacks_in_1493 .w-select:-ms-input-placeholder, #listify_stacks_in_1493 .w-input::-webkit-input-placeholder, #listify_stacks_in_1493 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_1493 .w-input:focus, #listify_stacks_in_1493 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_1493 .w-input[disabled], #listify_stacks_in_1493 .w-select[disabled], #listify_stacks_in_1493 .w-input[readonly], #listify_stacks_in_1493 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1493 fieldset[disabled] .w-input, #listify_stacks_in_1493 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1493 textarea.w-input, #listify_stacks_in_1493 textarea.w-select {
    height: auto; }
  #listify_stacks_in_1493 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_1493 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_1493 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_1493 .w-checkbox, #listify_stacks_in_1493 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_1493 .w-checkbox:before, #listify_stacks_in_1493 .w-radio:before, #listify_stacks_in_1493 .w-checkbox:after, #listify_stacks_in_1493 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_1493 .w-checkbox:after, #listify_stacks_in_1493 .w-radio:after {
    clear: both; }
  #listify_stacks_in_1493 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_1493 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_1493 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_1493 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1493 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_1493 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_1493 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1493 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1493 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_1493 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_1493 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_1493 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_1493 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_1493 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_1493 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_1493 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_1493 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_1493 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_1493 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_1493 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_1493 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_1493 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_1493 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_1493 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1493 .w-container {
      max-width: 728px; }
    #listify_stacks_in_1493 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_1493 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_1493 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1493 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1493 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_1493 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1493 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1493 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_1493 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1493 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1493 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_1493 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1493 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1493 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_1493 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1493 .w-hidden-main, #listify_stacks_in_1493 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_1493 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_1493 .w-row, #listify_stacks_in_1493 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_1493 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_1493 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1493 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1493 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_1493 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1493 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1493 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_1493 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1493 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1493 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_1493 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1493 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1493 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1493 .w-container {
      max-width: none; }
    #listify_stacks_in_1493 .w-hidden-main, #listify_stacks_in_1493 .w-hidden-medium, #listify_stacks_in_1493 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_1493 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_1493 .w-col {
      width: 100%; }
    #listify_stacks_in_1493 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1493 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1493 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_1493 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1493 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1493 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_1493 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1493 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1493 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_1493 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1493 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1493 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_1493 .w-widget {
    position: relative; }
  #listify_stacks_in_1493 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_1493 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_1493 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_1493 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_1493 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_1493 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_1493 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_1493 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_1493 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_1493 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_1493 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_1493 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_1493 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_1493 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_1493 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_1493 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_1493 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_1493 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_1493 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_1493 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_1493 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_1493 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_1493 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_1493 .w-slider-arrow-left, #listify_stacks_in_1493 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_1493 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_1493 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_1493 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_1493 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_1493 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_1493 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_1493 .w-icon-slider-left, #listify_stacks_in_1493 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1493 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_1493 .w-dropdown-btn, #listify_stacks_in_1493 .w-dropdown-toggle, #listify_stacks_in_1493 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_1493 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_1493 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_1493 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1493 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_1493 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_1493 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_1493 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1493 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_1493 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_1493 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_1493 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1493 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_1493 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1493 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_1493 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_1493 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1493 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_1493 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1493 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1493 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_1493 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_1493 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_1493 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_1493 .w-lightbox-frame, #listify_stacks_in_1493 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_1493 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_1493 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_1493 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_1493 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_1493 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_1493 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_1493 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_1493 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_1493 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_1493 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_1493 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_1493 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_1493 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_1493 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_1493 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_1493 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_1493 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_1493 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_1493 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_1493 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_1493 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_1493 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_1493 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_1493 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_1493 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_1493 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_1493 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_1493 .w-lightbox-left, #listify_stacks_in_1493 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_1493 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_1493 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_1493 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_1493 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_1493 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1493 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1493 .w-richtext ol, #listify_stacks_in_1493 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_1493 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_1493 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_1493 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_1493 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_1493 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_1493 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_1493 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_1493 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_1493 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_1493 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_1493 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_1493 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_1493 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1493 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1493 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_1493 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_1493 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1493 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_1493 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_1493 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_1493 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_1493 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_1493 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1493 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1493 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1493 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1493 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_1493 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_1493 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_1493 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1493 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1493 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_1493 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1493 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1493 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_1493 .w-tabs {
    position: relative; }
    #listify_stacks_in_1493 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1493 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1493 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_1493 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_1493 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_1493 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_1493 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_1493 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1493 .w-tab-link {
      display: block; } }
  #listify_stacks_in_1493 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_1493 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_1493 .w-dyn-bind-empty, #listify_stacks_in_1493 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_1493 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_1493 .list {
    overflow: hidden;
    margin: 10px 50px 10px 50px;
    padding: 10px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(164, 3, 0, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    border-width: 5px 10px 5px 10px;
    border-style: double;
    border-color: rgba(251, 254, 255, 1.00);
    /*  */
    /*  */ }
  #listify_stacks_in_1493 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_1493 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1493 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_1493 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*  */ }
  #listify_stacks_in_1493 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-left: 5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1493 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_1493 .list-item-icon i {
    color: rgba(235, 226, 206, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_1493 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(251, 254, 255, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1493 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_1493 .list-item-inner {
  margin: 10px 50px 10px 50px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_1493.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_1493.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_1493.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1494.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_1494.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_1494.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_1494.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_1494.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_1494.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1494.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_1494.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(235, 226, 206, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1494.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1494.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1494.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1494.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1496.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1496.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1496.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1496.hide-d {
    display: none; } }

/*  */



#stacks_in_1514 {
	margin: 20px 0px 0px 0px;
}
#listifyContainer_stacks_in_1381 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  box-sizing: border-box;
  padding: 10px 25px 10px 25px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyContainer_stacks_in_1381 [id*="listify"] {
    /*  */
    /*  */
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */ }

/*  */
/*  */
/*  */
@media (max-width: 767px) {
  #listifyContainer_stacks_in_1381 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #listifyContainer_stacks_in_1381 [id*="listify"] {
      width: 100% !important;
      min-width: auto !important;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyContainer_stacks_in_1381.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyContainer_stacks_in_1381.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyContainer_stacks_in_1381.hide-d {
    display: none; } }

/*  */
/*  */
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_1372 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_1372 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_1372 body {
    margin: 0; }
  #listify_stacks_in_1372 article, #listify_stacks_in_1372 aside, #listify_stacks_in_1372 details, #listify_stacks_in_1372 figcaption, #listify_stacks_in_1372 figure, #listify_stacks_in_1372 footer, #listify_stacks_in_1372 header, #listify_stacks_in_1372 hgroup, #listify_stacks_in_1372 main, #listify_stacks_in_1372 menu, #listify_stacks_in_1372 nav, #listify_stacks_in_1372 section, #listify_stacks_in_1372 summary {
    display: block; }
  #listify_stacks_in_1372 audio, #listify_stacks_in_1372 canvas, #listify_stacks_in_1372 progress, #listify_stacks_in_1372 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_1372 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_1372 [hidden], #listify_stacks_in_1372 template {
    display: none; }
  #listify_stacks_in_1372 a {
    background-color: transparent; }
    #listify_stacks_in_1372 a:active, #listify_stacks_in_1372 a:hover {
      outline: 0; }
  #listify_stacks_in_1372 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_1372 b, #listify_stacks_in_1372 strong {
    font-weight: bold; }
  #listify_stacks_in_1372 dfn {
    font-style: italic; }
  #listify_stacks_in_1372 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_1372 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_1372 small {
    font-size: 80%; }
  #listify_stacks_in_1372 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_1372 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_1372 sub {
    bottom: -0.25em; }
  #listify_stacks_in_1372 img {
    border: 0; }
  #listify_stacks_in_1372 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_1372 figure {
    margin: 1em 40px; }
  #listify_stacks_in_1372 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_1372 pre {
    overflow: auto; }
  #listify_stacks_in_1372 code, #listify_stacks_in_1372 kbd, #listify_stacks_in_1372 pre, #listify_stacks_in_1372 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_1372 button, #listify_stacks_in_1372 input, #listify_stacks_in_1372 optgroup, #listify_stacks_in_1372 select, #listify_stacks_in_1372 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_1372 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_1372 select {
    text-transform: none; }
  #listify_stacks_in_1372 button, #listify_stacks_in_1372 html input[type="button"], #listify_stacks_in_1372 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_1372 button[disabled], #listify_stacks_in_1372 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_1372 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_1372 input {
    line-height: normal; }
    #listify_stacks_in_1372 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_1372 input[type="checkbox"], #listify_stacks_in_1372 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_1372 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_1372 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_1372 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_1372 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_1372 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_1372 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_1372 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_1372 textarea {
    overflow: auto; }
  #listify_stacks_in_1372 optgroup {
    font-weight: bold; }
  #listify_stacks_in_1372 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_1372 td, #listify_stacks_in_1372 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_1372 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_1372 [class^="w-icon-"], #listify_stacks_in_1372 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_1372 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_1372 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_1372 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_1372 .w-icon-arrow-down:before, #listify_stacks_in_1372 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_1372 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_1372 html {
    height: 100%; }
  #listify_stacks_in_1372 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_1372 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_1372 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_1372 .w-block {
    display: block; }
  #listify_stacks_in_1372 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_1372 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1372 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1372 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_1372 .w-hidden {
    display: none; }
  #listify_stacks_in_1372 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_1372 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_1372 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_1372 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_1372 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_1372 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_1372 h1, #listify_stacks_in_1372 h2, #listify_stacks_in_1372 h3, #listify_stacks_in_1372 h4, #listify_stacks_in_1372 h5, #listify_stacks_in_1372 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_1372 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_1372 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_1372 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_1372 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_1372 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_1372 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_1372 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1372 a:focus {
    outline: 0; }
  #listify_stacks_in_1372 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_1372 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1372 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_1372 ul, #listify_stacks_in_1372 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_1372 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_1372 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1372 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1372 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_1372 .w-video iframe, #listify_stacks_in_1372 .w-video object, #listify_stacks_in_1372 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_1372 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_1372 button, #listify_stacks_in_1372 html input[type="button"], #listify_stacks_in_1372 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_1372 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_1372 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_1372 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_1372 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_1372 .w-input, #listify_stacks_in_1372 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_1372 .w-input:-moz-placeholder, #listify_stacks_in_1372 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_1372 .w-input::-moz-placeholder, #listify_stacks_in_1372 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_1372 .w-input:-ms-input-placeholder, #listify_stacks_in_1372 .w-select:-ms-input-placeholder, #listify_stacks_in_1372 .w-input::-webkit-input-placeholder, #listify_stacks_in_1372 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_1372 .w-input:focus, #listify_stacks_in_1372 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_1372 .w-input[disabled], #listify_stacks_in_1372 .w-select[disabled], #listify_stacks_in_1372 .w-input[readonly], #listify_stacks_in_1372 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1372 fieldset[disabled] .w-input, #listify_stacks_in_1372 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1372 textarea.w-input, #listify_stacks_in_1372 textarea.w-select {
    height: auto; }
  #listify_stacks_in_1372 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_1372 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_1372 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_1372 .w-checkbox, #listify_stacks_in_1372 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_1372 .w-checkbox:before, #listify_stacks_in_1372 .w-radio:before, #listify_stacks_in_1372 .w-checkbox:after, #listify_stacks_in_1372 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_1372 .w-checkbox:after, #listify_stacks_in_1372 .w-radio:after {
    clear: both; }
  #listify_stacks_in_1372 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_1372 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_1372 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_1372 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1372 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_1372 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_1372 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1372 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1372 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_1372 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_1372 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_1372 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_1372 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_1372 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_1372 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_1372 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_1372 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_1372 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_1372 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_1372 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_1372 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_1372 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_1372 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_1372 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1372 .w-container {
      max-width: 728px; }
    #listify_stacks_in_1372 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_1372 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_1372 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1372 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1372 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_1372 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1372 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1372 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_1372 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1372 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1372 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_1372 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1372 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1372 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_1372 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1372 .w-hidden-main, #listify_stacks_in_1372 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_1372 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_1372 .w-row, #listify_stacks_in_1372 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_1372 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_1372 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1372 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1372 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_1372 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1372 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1372 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_1372 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1372 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1372 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_1372 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1372 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1372 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1372 .w-container {
      max-width: none; }
    #listify_stacks_in_1372 .w-hidden-main, #listify_stacks_in_1372 .w-hidden-medium, #listify_stacks_in_1372 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_1372 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_1372 .w-col {
      width: 100%; }
    #listify_stacks_in_1372 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1372 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1372 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_1372 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1372 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1372 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_1372 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1372 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1372 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_1372 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1372 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1372 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_1372 .w-widget {
    position: relative; }
  #listify_stacks_in_1372 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_1372 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_1372 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_1372 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_1372 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_1372 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_1372 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_1372 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_1372 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_1372 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_1372 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_1372 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_1372 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_1372 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_1372 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_1372 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_1372 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_1372 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_1372 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_1372 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_1372 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_1372 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_1372 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_1372 .w-slider-arrow-left, #listify_stacks_in_1372 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_1372 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_1372 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_1372 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_1372 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_1372 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_1372 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_1372 .w-icon-slider-left, #listify_stacks_in_1372 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1372 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_1372 .w-dropdown-btn, #listify_stacks_in_1372 .w-dropdown-toggle, #listify_stacks_in_1372 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_1372 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_1372 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_1372 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1372 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_1372 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_1372 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_1372 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1372 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_1372 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_1372 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_1372 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1372 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_1372 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1372 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_1372 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_1372 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1372 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_1372 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1372 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1372 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_1372 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_1372 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_1372 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_1372 .w-lightbox-frame, #listify_stacks_in_1372 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_1372 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_1372 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_1372 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_1372 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_1372 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_1372 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_1372 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_1372 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_1372 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_1372 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_1372 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_1372 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_1372 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_1372 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_1372 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_1372 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_1372 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_1372 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_1372 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_1372 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_1372 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_1372 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_1372 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_1372 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_1372 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_1372 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_1372 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_1372 .w-lightbox-left, #listify_stacks_in_1372 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_1372 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_1372 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_1372 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_1372 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_1372 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1372 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1372 .w-richtext ol, #listify_stacks_in_1372 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_1372 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_1372 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_1372 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_1372 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_1372 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_1372 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_1372 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_1372 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_1372 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_1372 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_1372 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_1372 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_1372 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1372 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1372 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_1372 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_1372 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1372 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_1372 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_1372 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_1372 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_1372 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_1372 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1372 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1372 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1372 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1372 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_1372 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_1372 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_1372 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1372 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1372 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_1372 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1372 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1372 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_1372 .w-tabs {
    position: relative; }
    #listify_stacks_in_1372 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1372 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1372 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_1372 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_1372 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_1372 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_1372 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_1372 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1372 .w-tab-link {
      display: block; } }
  #listify_stacks_in_1372 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_1372 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_1372 .w-dyn-bind-empty, #listify_stacks_in_1372 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_1372 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_1372 .list {
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    padding: 10px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(164, 3, 0, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    border-width: 5px 5px 5px 5px;
    border-style: solid;
    border-color: rgba(251, 254, 255, 1.00);
    /*  */
    /*  */ }
  #listify_stacks_in_1372 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_1372 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1372 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_1372 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*  */ }
  #listify_stacks_in_1372 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-left: 5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1372 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_1372 .list-item-icon i {
    color: rgba(255, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_1372 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(251, 254, 255, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1372 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_1372 .list-item-inner {
  margin: 10px 10px 10px 10px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_1372.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_1372.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_1372.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1373.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_1373.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_1373.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_1373.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_1373.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_1373.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1373.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_1373.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(235, 226, 206, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1373.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1373.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1373.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1373.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1376.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1376.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1376.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1376.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1378.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1378.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1378.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1378.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1411.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1411.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1411.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1411.hide-d {
    display: none; } }

/*  */
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_1415 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_1415 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_1415 body {
    margin: 0; }
  #listify_stacks_in_1415 article, #listify_stacks_in_1415 aside, #listify_stacks_in_1415 details, #listify_stacks_in_1415 figcaption, #listify_stacks_in_1415 figure, #listify_stacks_in_1415 footer, #listify_stacks_in_1415 header, #listify_stacks_in_1415 hgroup, #listify_stacks_in_1415 main, #listify_stacks_in_1415 menu, #listify_stacks_in_1415 nav, #listify_stacks_in_1415 section, #listify_stacks_in_1415 summary {
    display: block; }
  #listify_stacks_in_1415 audio, #listify_stacks_in_1415 canvas, #listify_stacks_in_1415 progress, #listify_stacks_in_1415 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_1415 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_1415 [hidden], #listify_stacks_in_1415 template {
    display: none; }
  #listify_stacks_in_1415 a {
    background-color: transparent; }
    #listify_stacks_in_1415 a:active, #listify_stacks_in_1415 a:hover {
      outline: 0; }
  #listify_stacks_in_1415 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_1415 b, #listify_stacks_in_1415 strong {
    font-weight: bold; }
  #listify_stacks_in_1415 dfn {
    font-style: italic; }
  #listify_stacks_in_1415 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_1415 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_1415 small {
    font-size: 80%; }
  #listify_stacks_in_1415 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_1415 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_1415 sub {
    bottom: -0.25em; }
  #listify_stacks_in_1415 img {
    border: 0; }
  #listify_stacks_in_1415 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_1415 figure {
    margin: 1em 40px; }
  #listify_stacks_in_1415 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_1415 pre {
    overflow: auto; }
  #listify_stacks_in_1415 code, #listify_stacks_in_1415 kbd, #listify_stacks_in_1415 pre, #listify_stacks_in_1415 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_1415 button, #listify_stacks_in_1415 input, #listify_stacks_in_1415 optgroup, #listify_stacks_in_1415 select, #listify_stacks_in_1415 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_1415 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_1415 select {
    text-transform: none; }
  #listify_stacks_in_1415 button, #listify_stacks_in_1415 html input[type="button"], #listify_stacks_in_1415 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_1415 button[disabled], #listify_stacks_in_1415 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_1415 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_1415 input {
    line-height: normal; }
    #listify_stacks_in_1415 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_1415 input[type="checkbox"], #listify_stacks_in_1415 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_1415 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_1415 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_1415 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_1415 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_1415 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_1415 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_1415 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_1415 textarea {
    overflow: auto; }
  #listify_stacks_in_1415 optgroup {
    font-weight: bold; }
  #listify_stacks_in_1415 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_1415 td, #listify_stacks_in_1415 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_1415 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_1415 [class^="w-icon-"], #listify_stacks_in_1415 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_1415 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_1415 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_1415 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_1415 .w-icon-arrow-down:before, #listify_stacks_in_1415 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_1415 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_1415 html {
    height: 100%; }
  #listify_stacks_in_1415 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_1415 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_1415 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_1415 .w-block {
    display: block; }
  #listify_stacks_in_1415 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_1415 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1415 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1415 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_1415 .w-hidden {
    display: none; }
  #listify_stacks_in_1415 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_1415 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_1415 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_1415 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_1415 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_1415 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_1415 h1, #listify_stacks_in_1415 h2, #listify_stacks_in_1415 h3, #listify_stacks_in_1415 h4, #listify_stacks_in_1415 h5, #listify_stacks_in_1415 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_1415 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_1415 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_1415 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_1415 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_1415 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_1415 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_1415 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1415 a:focus {
    outline: 0; }
  #listify_stacks_in_1415 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_1415 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_1415 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_1415 ul, #listify_stacks_in_1415 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_1415 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_1415 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1415 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1415 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_1415 .w-video iframe, #listify_stacks_in_1415 .w-video object, #listify_stacks_in_1415 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_1415 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_1415 button, #listify_stacks_in_1415 html input[type="button"], #listify_stacks_in_1415 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_1415 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_1415 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_1415 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_1415 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_1415 .w-input, #listify_stacks_in_1415 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_1415 .w-input:-moz-placeholder, #listify_stacks_in_1415 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_1415 .w-input::-moz-placeholder, #listify_stacks_in_1415 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_1415 .w-input:-ms-input-placeholder, #listify_stacks_in_1415 .w-select:-ms-input-placeholder, #listify_stacks_in_1415 .w-input::-webkit-input-placeholder, #listify_stacks_in_1415 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_1415 .w-input:focus, #listify_stacks_in_1415 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_1415 .w-input[disabled], #listify_stacks_in_1415 .w-select[disabled], #listify_stacks_in_1415 .w-input[readonly], #listify_stacks_in_1415 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1415 fieldset[disabled] .w-input, #listify_stacks_in_1415 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_1415 textarea.w-input, #listify_stacks_in_1415 textarea.w-select {
    height: auto; }
  #listify_stacks_in_1415 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_1415 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_1415 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_1415 .w-checkbox, #listify_stacks_in_1415 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_1415 .w-checkbox:before, #listify_stacks_in_1415 .w-radio:before, #listify_stacks_in_1415 .w-checkbox:after, #listify_stacks_in_1415 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_1415 .w-checkbox:after, #listify_stacks_in_1415 .w-radio:after {
    clear: both; }
  #listify_stacks_in_1415 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_1415 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_1415 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_1415 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1415 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_1415 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_1415 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1415 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1415 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_1415 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_1415 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_1415 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_1415 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_1415 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_1415 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_1415 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_1415 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_1415 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_1415 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_1415 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_1415 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_1415 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_1415 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_1415 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1415 .w-container {
      max-width: 728px; }
    #listify_stacks_in_1415 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_1415 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_1415 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1415 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1415 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_1415 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1415 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1415 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_1415 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1415 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1415 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_1415 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1415 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1415 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_1415 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1415 .w-hidden-main, #listify_stacks_in_1415 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_1415 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_1415 .w-row, #listify_stacks_in_1415 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_1415 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_1415 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1415 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1415 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_1415 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1415 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1415 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_1415 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1415 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1415 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_1415 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1415 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1415 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1415 .w-container {
      max-width: none; }
    #listify_stacks_in_1415 .w-hidden-main, #listify_stacks_in_1415 .w-hidden-medium, #listify_stacks_in_1415 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_1415 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_1415 .w-col {
      width: 100%; }
    #listify_stacks_in_1415 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_1415 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_1415 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_1415 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_1415 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_1415 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_1415 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_1415 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_1415 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_1415 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_1415 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_1415 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_1415 .w-widget {
    position: relative; }
  #listify_stacks_in_1415 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_1415 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_1415 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_1415 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_1415 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_1415 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_1415 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_1415 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_1415 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_1415 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_1415 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_1415 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_1415 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_1415 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_1415 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_1415 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_1415 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_1415 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_1415 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_1415 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_1415 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_1415 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_1415 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_1415 .w-slider-arrow-left, #listify_stacks_in_1415 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_1415 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_1415 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_1415 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_1415 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_1415 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_1415 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_1415 .w-icon-slider-left, #listify_stacks_in_1415 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1415 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_1415 .w-dropdown-btn, #listify_stacks_in_1415 .w-dropdown-toggle, #listify_stacks_in_1415 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_1415 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_1415 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_1415 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_1415 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_1415 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_1415 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_1415 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1415 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_1415 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_1415 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_1415 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1415 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_1415 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1415 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_1415 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_1415 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_1415 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_1415 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1415 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_1415 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_1415 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_1415 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_1415 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_1415 .w-lightbox-frame, #listify_stacks_in_1415 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_1415 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_1415 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_1415 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_1415 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_1415 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_1415 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_1415 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_1415 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_1415 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_1415 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_1415 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_1415 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_1415 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_1415 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_1415 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_1415 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_1415 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_1415 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_1415 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_1415 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_1415 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_1415 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_1415 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_1415 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_1415 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_1415 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_1415 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_1415 .w-lightbox-left, #listify_stacks_in_1415 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_1415 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_1415 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_1415 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_1415 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_1415 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_1415 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_1415 .w-richtext ol, #listify_stacks_in_1415 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_1415 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_1415 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_1415 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_1415 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_1415 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_1415 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_1415 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_1415 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_1415 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_1415 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_1415 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_1415 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_1415 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1415 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1415 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_1415 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_1415 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_1415 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_1415 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_1415 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_1415 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_1415 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_1415 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1415 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1415 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1415 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_1415 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_1415 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_1415 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_1415 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1415 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1415 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_1415 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1415 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_1415 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_1415 .w-tabs {
    position: relative; }
    #listify_stacks_in_1415 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_1415 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_1415 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_1415 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_1415 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_1415 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_1415 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_1415 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_1415 .w-tab-link {
      display: block; } }
  #listify_stacks_in_1415 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_1415 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_1415 .w-dyn-bind-empty, #listify_stacks_in_1415 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_1415 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_1415 .list {
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    padding: 10px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(164, 3, 0, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    border-width: 5px 5px 5px 5px;
    border-style: solid;
    border-color: rgba(251, 254, 255, 1.00);
    /*  */
    /*  */ }
  #listify_stacks_in_1415 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_1415 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_1415 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_1415 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*  */ }
  #listify_stacks_in_1415 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-left: 5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1415 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_1415 .list-item-icon i {
    color: rgba(255, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_1415 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(251, 254, 255, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_1415 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_1415 .list-item-inner {
  margin: 10px 10px 10px 10px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_1415.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_1415.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_1415.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1416.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_1416.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_1416.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_1416.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_1416.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_1416.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1416.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_1416.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(235, 226, 206, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_1416.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1416.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1416.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1416.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1418.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1418.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1418.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1418.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1420.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1420.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1420.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1420.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_1422.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_1422.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_1422.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_1422.hide-d {
    display: none; } }

/*  */
#stacks_in_1584 .onthelineouterspace
{
display:block;
padding: 30px 0px 30px 0px;
}
#stacks_in_1584 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:0px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#A40300; 
font-size:1%;
-webkit-box-shadow: 0px 0px 0px #DDDDDC;
-moz-box-shadow: 0px 0px 0px #DDDDDC;
box-shadow: 0px 0px 0px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}





/*
#stacks_in_1310 {
	display: inline-block;
	width: 100%;
}*/

/* Particle Theme Specific Styles*/

.com_bigwhiteduck_stacks_paragraphpro_stack{padding-top:1.00%;padding-bottom:2.00%}@media screen and (min-width:480px){#stacks_in_1311 p.columnize{-webkit-column-count:1;column-count:1;-webkit-column-gap:0px;column-gap:0px}}@media screen and (min-width:640px){#stacks_in_1311 p.columnize{-webkit-column-count:2;column-count:2;-webkit-column-gap:40px;column-gap:40px}}@media screen and (min-width:1000px){#stacks_in_1311 p.columnize{-webkit-column-count:2;column-count:2;-webkit-column-gap:40px;column-gap:40px}}@media screen and (min-width:2000px){#stacks_in_1311 p.columnize{-webkit-column-count:3;column-count:3;-webkit-column-gap:40px;column-gap:40px}}#stacks_in_1311 p.columnize.col-dividers{-webkit-column-rule:1.50px solid rgba(51, 51, 51, 0.80);column-rule:1.50px solid rgba(51, 51, 51, 0.80)}@media only screen and (min-width:0px){#stacks_in_1311{}}


#stacks_in_1311 {
	margin:  20px;
	padding:  20px;
}
.com_bigwhiteduck_stacks_paragraphpro_stack{padding-top:1.00%;padding-bottom:2.00%}@media only screen and (min-width:0px){#stacks_in_1585{}}


#stacks_in_1585 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_1526 .onthelineouterspace
{
display:block;
padding: 30px 50px 30px 50px;
}
#stacks_in_1526 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:0px; 
border-bottom-color:#FFFFFF; 
border-top-style:dashed; 
border-top-width:1px; 
border-top-color:#A40300; 
font-size:1%;
-webkit-box-shadow: 0px 0px 0px #DDDDDC;
-moz-box-shadow: 0px 0px 0px #DDDDDC;
box-shadow: 0px 0px 0px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}





/*
#stacks_in_1579 {
	display: inline-block;
	width: 100%;
}*/

/* Particle Theme Specific Styles*/

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

#stacks_in_1551>.s3_row>.s3_column_left {
	width: 33.30%;
}

#stacks_in_1551>.s3_row>.s3_column_right {
	width: 66.699997%;
}




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










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


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


}



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


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


}






#stacks_in_1551 {
	margin:  20px;
	padding:  20px;
}
