/* Grow */
.bp-grow {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-grow:hover, .bp-grow:focus, .bp-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.bp-shrink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-shrink:hover, .bp-shrink:focus, .bp-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.bp-pulse {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-pulse:hover, .bp-pulse:focus, .bp-pulse:active {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.bp-pulse-grow {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-pulse-grow:hover, .bp-pulse-grow:focus, .bp-pulse-grow:active {
  -webkit-animation-name: pulse-grow;
  animation-name: pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.bp-pulse-shrink {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-pulse-shrink:hover, .bp-pulse-shrink:focus, .bp-pulse-shrink:active {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */
@-webkit-keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

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

@keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

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

.bp-push {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-push:hover, .bp-push:focus, .bp-push:active {
  -webkit-animation-name: push;
  animation-name: push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

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

@keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

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

.bp-pop {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-pop:hover, .bp-pop:focus, .bp-pop:active {
  -webkit-animation-name: pop;
  animation-name: pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Rotate */
.bp-rotate {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-rotate:hover, .bp-rotate:focus, .bp-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}

/* Grow Rotate */
.bp-grow-rotate {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-grow-rotate:hover, .bp-grow-rotate:focus, .bp-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.bp-float {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-float:hover, .bp-float:focus, .bp-float:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Sink */
.bp-sink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-sink:hover, .bp-sink:focus, .bp-sink:active {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

/* Hover */
@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

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

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

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

.bp-hover {
  display: inline-block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-hover:hover, .bp-hover:focus, .bp-hover:active {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Hang */
@-webkit-keyframes hang {
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }

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

@keyframes hang {
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }

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

.bp-hang {
  display: inline-block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-hang:hover, .bp-hang:focus, .bp-hang:active {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-animation-name: hang;
  animation-name: hang;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Skew */
.bp-skew {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-skew:hover, .bp-skew:focus, .bp-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Forward */
.bp-skew-forward {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-skew-forward:hover, .bp-skew-forward:focus, .bp-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Backward */
.bp-skew-backward {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-skew-backward:hover, .bp-skew-backward:focus, .bp-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

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

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

@keyframes wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

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

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

.bp-wobble-vertical {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-vertical:hover, .bp-wobble-vertical:focus, .bp-wobble-vertical:active {
  -webkit-animation-name: wobble-vertical;
  animation-name: wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

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

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

@keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

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

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

.bp-wobble-horizontal {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-horizontal:hover, .bp-wobble-horizontal:focus, .bp-wobble-horizontal:active {
  -webkit-animation-name: wobble-horizontal;
  animation-name: wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }

  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }

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

@keyframes wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }

  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }

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

.bp-wobble-to-bottom-right {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-to-bottom-right:hover, .bp-wobble-to-bottom-right:focus, .bp-wobble-to-bottom-right:active {
  -webkit-animation-name: wobble-to-bottom-right;
  animation-name: wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }

  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

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

@keyframes wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }

  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

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

.bp-wobble-to-top-right {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-to-top-right:hover, .bp-wobble-to-top-right:focus, .bp-wobble-to-top-right:active {
  -webkit-animation-name: wobble-to-top-right;
  animation-name: wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

@keyframes wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

.bp-wobble-top {
  display: inline-block;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-top:hover, .bp-wobble-top:focus, .bp-wobble-top:active {
  -webkit-animation-name: wobble-top;
  animation-name: wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

@keyframes wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

.bp-wobble-bottom {
  display: inline-block;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-bottom:hover, .bp-wobble-bottom:focus, .bp-wobble-bottom:active {
  -webkit-animation-name: wobble-bottom;
  animation-name: wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

@keyframes wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

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

.bp-wobble-skew {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-wobble-skew:hover, .bp-wobble-skew:focus, .bp-wobble-skew:active {
  -webkit-animation-name: wobble-skew;
  animation-name: wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.bp-buzz {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-buzz:hover, .bp-buzz:focus, .bp-buzz:active {
  -webkit-animation-name: buzz;
  animation-name: buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

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

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

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

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

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

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

@keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

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

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

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

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

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

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

.bp-buzz-out {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-buzz-out:hover, .bp-buzz-out:focus, .bp-buzz-out:active {
  -webkit-animation-name: buzz-out;
  animation-name: buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* BORDER TRANSITIONS */
/* Border Fade */
.bp-border-fade {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.bp-border-fade:hover, .bp-border-fade:focus, .bp-border-fade:active {
  box-shadow: inset 0 0 0 4px #666666, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.bp-hollow {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.bp-hollow:hover, .bp-hollow:focus, .bp-hollow:active {
  background: none!important;
}

/* Trim */
.bp-trim {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.bp-trim:hover:before, .bp-trim:focus:before, .bp-trim:active:before {
  opacity: 1;
}

/* Outline Outward */
.bp-outline-outward {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-outline-outward:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.bp-outline-outward:hover:before, .bp-outline-outward:focus:before, .bp-outline-outward:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline Inward */
.bp-outline-inward {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-outline-inward:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 2px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.bp-outline-inward:hover:before, .bp-outline-inward:focus:before, .bp-outline-inward:active:before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  opacity: 1;
}

/* Round Corners */
.bp-round-corners {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-round-corners:hover, .bp-round-corners:focus, .bp-round-corners:active {
  border-radius: 1em;
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.bp-glow {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-glow:hover, .bp-glow:focus, .bp-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Glow Light */
.bp-glow-light {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-glow-light:hover, .bp-glow-light:focus, .bp-glow-light:active {
  box-shadow: 0 0 8px rgba(220, 220, 220, 0.72);
}

/* Box Shadow Outset */
.bp-box-shadow-outset {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-box-shadow-outset:hover, .bp-box-shadow-outset:focus, .bp-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.bp-box-shadow-inset {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.bp-box-shadow-inset:hover, .bp-box-shadow-inset:focus, .bp-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.bp-float-shadow {
  display: inline-block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.bp-float-shadow:hover, .bp-float-shadow:focus, .bp-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.bp-float-shadow:hover:before, .bp-float-shadow:focus:before, .bp-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Hover Shadow */
@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

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

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

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

@-webkit-keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }

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

  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}

@keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }

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

  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}

.bp-hover-shadow {
  display: inline-block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-hover-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.bp-hover-shadow:hover, .bp-hover-shadow:focus, .bp-hover-shadow:active {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.bp-hover-shadow:hover:before, .bp-hover-shadow:focus:before, .bp-hover-shadow:active:before {
  opacity: .4;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-animation-name: hover-shadow;
  animation-name: hover-shadow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Shadow Radial */
.bp-shadow-radial {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.bp-shadow-radial:before, .bp-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.bp-shadow-radial:before {
  bottom: 100%;
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.bp-shadow-radial:after {
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.bp-shadow-radial:hover:before, .bp-shadow-radial:focus:before, .bp-shadow-radial:active:before, .bp-shadow-radial:hover:after, .bp-shadow-radial:focus:after, .bp-shadow-radial:active:after {
  opacity: 1;
}

/* Shadow Radial */
.bp-shadow-radial-light {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(240, 240, 240, 0);
}
.bp-shadow-radial-light:before, .bp-shadow-radial-light:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.bp-shadow-radial-light:before {
  bottom: 100%;
  background: radial-gradient(ellipse at 50% 150%, rgba(240, 240, 240, 0.75) 0%, rgba(240, 240, 240, 0) 80%);
}
.bp-shadow-radial-light:after {
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(240, 240, 240, 0.75) 0%, rgba(240, 240, 240, 0) 80%);
}
.bp-shadow-radial-light:hover:before, .bp-shadow-radial-light:focus:before, .bp-shadow-radial-light:active:before, .bp-shadow-radial-light:hover:after, .bp-shadow-radial-light:focus:after, .bp-shadow-radial-light:active:after {
  opacity: 1;
}



 .theme-version{display:block}.theme-version.number-110,#stacks_in_2_page0{display:none} .stacks_in{overflow:visible} .stacks_out{overflow:visible}::selection{ color:#FFFFFF;background:#008CBA;}::-moz-selection{ color:#FFFFFF;background:#008CBA;} body,.font-family-text{  font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;  font-weight:400}h1,.font-family-h1{  font-family:'Open Sans',sans-serif;  font-weight:300}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{  font-family:'Open Sans',sans-serif;  font-weight:600}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit} html,body{background-color:#000000;     }.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .floating-body.radius{border-radius:3px}.floating-body.radius>.columns>.stacks_out:first-child>.stacks_in>.top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1000px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#000000}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{ max-width:1000px!important;}body{color:#222222}a{color:#008CBA;text-decoration:none;font-weight:inherit}a:hover{color:#006688}.alt{color:#FFFFFF}.alt a{color:#008CBA}.alt a:hover{color:#006688}.alt small{color:#FFFFFF}h1,h2,h3,h4,h5,h6{color:#222222}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:#FFFFFF}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:#2C2C2C}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:#FFFFFF}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:#2C2C2C}h1{font-size:2.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}
h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}}code{color:#CC371E}hr,blockquote,abbr,acronym,.vcard{border-color:#DDDDDD}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:#DDDDDD}blockquote{color:#2C2C2C}blockquote cite,blockquote cite a{color:#282828}blockquote.alt{color:#FFFFFF}blockquote.alt cite,blockquote.alt cite a{color:#FFFFFF}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1000px}.top-bar .top-bar-section ul li>a.button{background-color:#008CBA;color:#FFFFFF}.top-bar .top-bar-section ul li>a.button:hover{color:#FFFFFF;background-color:#0085B0}.top-bar .top-bar-section ul li>a.button.secondary{background-color:#E7E7E7;color:#333333}.top-bar .top-bar-section ul li>a.button.secondary:hover{color:#333333;background-color:#DBDBDB}.top-bar .top-bar-section ul li>a.button.alert{background-color:#F04124}.top-bar .top-bar-section ul li>a.button.alert:hover{background-color:#E43D22}.top-bar .top-bar-section ul li>a.button.success{background-color:#43AC6A}.top-bar .top-bar-section ul li>a.button.success:hover{background-color:#3FA364}.top-bar .top-bar-section ul li>a.button.radius{border-radius:3px}.alert-box{background-color:#008CBA;color:#FFFFFF;border-color:#0085B0}.alert-box a:not(.close){color:#FFFFFF;text-decoration:underline}.alert-box.secondary{background-color:#E7E7E7;color:#333333;border-color:#DBDBDB}.alert-box.alert{background-color:#F04124;border-color:#E43D22}.alert-box.success{background-color:#43AC6A;border-color:#3FA364}.alert-box.warning{background-color:#F08A24;border-color:#E48322}.alert-box.info{background-color:#A0D3E8;color:#4C4C4C;border-color:#98C8DC}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:#E7E7E7;border-color:#DBDBDB;color:#333333}.breadcrumbs .current a{color:#333333}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:#333333}.breadcrumbs li:before{color:#4C4C4C}.button{background-color:#008CBA;color:#FFFFFF}.button:hover{color:#FFFFFF;background-color:#0085B0}.button.secondary{background-color:#E7E7E7;color:#333333}.button.secondary:hover{color:#333333;background-color:#DBDBDB}.button.alert{background-color:#F04124}.button.alert:hover{background-color:#E43D22}.button.success{background-color:#43AC6A}.button.success:hover{background-color:#3FA364}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:#008CBA;color:#008CBA}.button.ghost:hover{color:#FFFFFF;border-color:#0085B0;background-color:#0085B0}.button.ghost.secondary{border-color:#E7E7E7;color:#E7E7E7}.button.ghost.secondary:hover{color:#333333;border-color:#DBDBDB;background-color:#DBDBDB}.button.ghost.alert{border-color:#F04124;color:#F04124}.button.ghost.alert:hover{color:#FFFFFF;border-color:#E43D22;background-color:#E43D22}.button.ghost.success{border-color:#43AC6A;color:#43AC6A}.button.ghost.success:hover{color:#FFFFFF;border-color:#3FA364;background-color:#3FA364}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{border-top-right-radius:3px;border-bottom-right-radius:3px}.icon-bar{background-color:#008CBA;color:#FFFFFF}.icon-bar>.item{cursor:pointer;color:#FFFFFF}.icon-bar>.item label,.icon-bar>.item i{color:#FFFFFF}.icon-bar>.item:hover{color:#FFFFFF;background-color:#0085B0}.icon-bar.secondary{background-color:#E7E7E7;color:#333333}.icon-bar.secondary>.item{color:#333333}
.icon-bar.secondary>.item label,.icon-bar.secondary>.item i{color:#333333}.icon-bar.secondary>.item:hover{background-color:#DBDBDB;color:#333333}form[data-abide] .error label{color:#F04124}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:#F04124;color:#FFFFFF}input[type="radio"]{margin-left:1px}select:focus{margin-left:3px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{color:#222222}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:#008CBA}form fieldset{border-color:#DDDDDD}form legend{background-color:#000000}form label{color:#282828}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group>*:first-child,form.radius .input-group>*:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group>*:last-child,form.radius .input-group>*:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider.secondary{background-color:#333333;border-color:#151515}.range-slider.secondary .range-slider-handle{background-color:#E7E7E7}.range-slider.secondary .range-slider-handle:hover{background-color:#DBDBDB}.range-slider.secondary .range-slider-active-segment{background-color:#151515}.slider-display{display:block;margin-top:20px}div.switch label{background-color:#E7E7E7}div.switch label::after{background-color:#FFFFFF}div.switch input:checked+label{background-color:#008CBA}.label{background-color:#008CBA;color:#FFFFFF;margin-bottom:0}.label.secondary{background-color:#E7E7E7;color:#333333}.label.alert{background-color:#F04124}.label.success{background-color:#43AC6A}.label.radius{border-radius:3px}.alert-box .close{opacity:.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:#E7E7E7}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:#008CBA}.accordion dd>a{background-color:#008CBA;color:#FFFFFF}.accordion dd>a:hover{background-color:#0085B0}.accordion dd.active>a{background-color:#0085B0}.accordion dd>.content.active{background-color:transparent}
.accordion.secondary dd>a{background-color:#E7E7E7;color:#333333}.accordion.secondary dd>a:hover{background-color:#DBDBDB}.accordion.secondary dd.active>a{background-color:#DBDBDB}.tabs dd>a{background-color:#008CBA;color:#FFFFFF}.tabs dd>a:hover{background-color:#0085B0}.tabs dd.active>a{background-color:#0085B0}.tabs.secondary dd>a{background-color:#E7E7E7;color:#333333}.tabs.secondary dd>a:hover{background-color:#DBDBDB}.tabs.secondary dd.active>a{background-color:#DBDBDB}.tabs.radius dd:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius dd:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{box-shadow:0 0 6px 1px #00465D}.f-dropdown,.f-dropdown.content{background-color:#FFFFFF;border-color:#CCCCCC;color:#333333}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent #FFFFFF transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent #CCCCCC transparent}.f-dropdown li a,.f-dropdown.content li a{color:#333333}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:#333333;color:#FFFFFF}.panel{background-color:#F2F2F2;border-color:#DBDBDB}.panel.callout{background-color:#ECFAFF;border-color:#D4E1E5}.panel.radius{border-radius:3px}.panel p{color:#222222}.panel p a{color:#008CBA}.panel p.alt{color:#FFFFFF}.panel p.alt a{color:#008CBA}.panel p.alt a:hover{color:#006688}.panel p.alt small{color:#FFFFFF}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:#222222}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:#FFFFFF}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:#2C2C2C}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:#FFFFFF}.pricing-table.primary .title{background-color:#008CBA;color:#FFFFFF}.pricing-table.primary .price{color:#222222}.pricing-table.primary .description{color:#222222}.pricing-table.primary .bullet-item{color:#222222}.pricing-table.secondary .title{background-color:#E7E7E7;color:#333333}.pricing-table.secondary .price{color:#222222}.pricing-table.secondary .description{color:#222222}.pricing-table.secondary .bullet-item{color:#222222}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a{color:#008CBA}.side-nav li a:hover{background-color:#F3F3F3;color:#006688}.side-nav li.active>a:first-child{color:#008CBA}.side-nav li.active:not(.has-dropdown) a{color:#00779E}.side-nav header{color:#222222;margin-top:1rem;margin-bottom:.5rem}.side-nav label{color:#282828}.side-nav li.divider{border-top-color:#DDDDDD}.side-nav.alt li a{color:#008CBA}.side-nav.alt li a:hover{background-color:#F3F3F3;color:#006688}.side-nav.alt li.active>a:first-child{color:#008CBA}.side-nav.alt li.active:not(.has-dropdown) a{color:#00779E}.side-nav.alt header{color:#FFFFFF}.side-nav.alt label{color:#FFFFFF}.side-nav.alt li.divider{border-top-color:#DDDDDD}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a,.sub-nav dd a,.sub-nav li a{color:#DDDDDD}.sub-nav dt a:hover,.sub-nav dd a:hover,.sub-nav li a:hover{color:#A5A5A5}.sub-nav dt.active a,.sub-nav dd.active a,.sub-nav li.active a{color:#FFFFFF;background-color:#008CBA}.sub-nav dt.active a:hover,.sub-nav dd.active a:hover,.sub-nav li.active a:hover{background-color:#0085B0}.sub-nav dt.active a.secondary,.sub-nav dd.active a.secondary,.sub-nav li.active a.secondary{color:#333333;background-color:#E7E7E7}.sub-nav dt.active a.secondary:hover,.sub-nav dd.active a.secondary:hover,.sub-nav li.active a.secondary:hover{background-color:#DBDBDB}
.sub-nav.secondary dt.active a,.sub-nav.secondary dd.active a,.sub-nav.secondary li.active a{color:#333333;background-color:#E7E7E7}.sub-nav.secondary dt.active a:hover,.sub-nav.secondary dd.active a:hover,.sub-nav.secondary li.active a:hover{background-color:#DBDBDB}.reveal-modal{background-color:#FFFFFF;color:#333333}.close-reveal-modal{color:#AAAAAA}.reveal-modal-bg{background:rgba(0,0,0,0.45)}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:#008CBA}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:#008CBA}.clearing-blackout{background-color:#FFFFFF}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:#FFFFFF}.clearing-assembled .clearing-container .carousel{background-color:#F2F2F2}.clearing-assembled .clearing-container .clearing-close{color:#AAAAAA}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:#AAAAAA}.clearing-assembled .clearing-container .clearing-main-next>span{border-color:transparent;border-left-color:#333333}.clearing-assembled .clearing-container .clearing-main-prev>span{border-color:transparent;border-right-color:#333333}.clearing-assembled .clearing-container .clearing-caption{color:#333333}.copyright{color:#222222;font-size:.9rem}.copyright a{color:#008CBA}.copyright a:hover{color:#006688}.fn-text-header{color:#222222}.fn-text-link a{color:#008CBA}.fn-text-link a:hover{color:#006688}.fn-text-text{color:#222222}.fn-text-text p,.fn-text-text div{color:#222222}.fn-text-accent{color:#DDDDDD}.fn-text-code-text{color:#CC371E}.fn-text-header-alt{color:#FFFFFF}.fn-text-link-alt a{color:#008CBA}.fn-text-link-alt a:hover{color:#006688}.fn-text-text-alt{color:#FFFFFF}.fn-text-text-alt p,.fn-text-text-alt div{color:#FFFFFF}.fn-text-accent-alt{color:#DDDDDD}.fn-text-primary{color:#008CBA}.fn-text-primary-text{color:#FFFFFF}.fn-text-primary-text p,.fn-text-primary-text div{color:#FFFFFF}.fn-text-secondary{color:#E7E7E7}.fn-text-secondary-text{color:#333333}.fn-text-secondary-text p,.fn-text-secondary-text div{color:#333333}.fn-text-alert{color:#F04124}.fn-text-success{color:#43AC6A}.fn-text-warning{color:#F08A24}.fn-text-info{color:#A0D3E8}.fn-text-callout{color:#ECFAFF}.fn-text-modal{color:#FFFFFF}.fn-text-modal-close{color:#AAAAAA}.fn-text-modal-text{color:#333333}.fn-text-modal-text p,.fn-text-modal-text div{color:#333333}.fn-bg-header{background-color:#222222}.fn-bg-text{background-color:#222222}.fn-bg-link{background-color:#008CBA}.fn-bg-link-hover{background-color:#006688}.fn-bg-accent{background-color:#DDDDDD}.fn-bg-code-text{background-color:#CC371E}.fn-bg-modal-text{background-color:#333333}.fn-bg-header-alt{background-color:#FFFFFF}.fn-bg-text-alt{background-color:#FFFFFF}.fn-bg-link-alt{background-color:#008CBA}.fn-bg-link-hover-alt{background-color:#006688}.fn-bg-accent-alt{background-color:#DDDDDD}.fn-bg-primary{background-color:#008CBA}.fn-bg-primary-text{background-color:#FFFFFF}.fn-bg-secondary{background-color:#E7E7E7}.fn-bg-secondary-text{background-color:#333333}.fn-bg-alert{background-color:#F04124}.fn-bg-success{background-color:#43AC6A}.fn-bg-warning{background-color:#F08A24}.fn-bg-info{background-color:#A0D3E8}.fn-bg-callout{background-color:#ECFAFF}.fn-bg-modal{background-color:#FFFFFF}.fn-bg-modal-close{background-color:#AAAAAA}.fn-backdrop{background-color:rgba(0,0,0,0.45)}.fn-backdrop-solid{background-color:rgb(0,0,0)}.fn-scheme-primary{background-color:#008CBA;color:#FFFFFF}.fn-scheme-primary div,.fn-scheme-primary p{color:#FFFFFF}.fn-scheme-primary.button:hover{background-color:#0085B0}.fn-scheme-secondary{background-color:#E7E7E7;color:#333333}.fn-scheme-secondary div,.fn-scheme-secondary p{color:#333333}.fn-scheme-secondary.button:hover{background-color:#DBDBDB}.fn-scheme-modal{background-color:#FFFFFF;color:#333333}.fn-scheme-modal div,.fn-scheme-modal p{color:#333333}
.fn-scheme-modal .close{color:#AAAAAA} 




#stacks_in_1552_page0>.row {
    padding-top: 15.00%!important;
    padding-bottom: 0.00%!important;
    padding-left: 0.00%!important;
    padding-right: 0.00%!important;
}







#stacks_in_1552_page0>.row.collapse {
    padding-left: 0;
    padding-right: 0;
}
#stacks_in_1552_page0>.maxwidth {
    max-width: 500px;
}

#stacks_in_1552_page0>.hide-overflow {
    overflow: hidden!important;
}
#stacks_in_14_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_14_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_14_page0>.maxwidth{max-width:500px}#stacks_in_14_page0>.hide-overflow{overflow:hidden!important}

#stacks_in_4_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_4_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_4_page0>.maxwidth{max-width:500px}#stacks_in_4_page0>.hide-overflow{overflow:hidden!important}

#stacks_in_6_page0 img{}#stacks_in_6_page0 a{display:block}

#stacks_in_6_page0 {
	margin: 0px 0px 25px 0px;
}
#stacks_in_7_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_7_page0>.maxwidth{max-width:500px}#stacks_in_7_page0>.hide-overflow{overflow:hidden!important}

 #stacks_in_9_page0 h1,#stacks_in_9_page0 h2,#stacks_in_9_page0 h3,#stacks_in_9_page0 h4,#stacks_in_9_page0 h5,#stacks_in_9_page0 h6,#stacks_in_9_page0 div{color:#FFFFFF;font-size:1.00rem;font-weight:700}#stacks_in_9_page0 h1 a,#stacks_in_9_page0 h2 a,#stacks_in_9_page0 h3 a,#stacks_in_9_page0 h4 a,#stacks_in_9_page0 h5 a,#stacks_in_9_page0 h6 a,#stacks_in_9_page0 div a{color:#FFFFFF;font-size:1.00rem}#stacks_in_9_page0 h1 a:hover,#stacks_in_9_page0 h2 a:hover,#stacks_in_9_page0 h3 a:hover,#stacks_in_9_page0 h4 a:hover,#stacks_in_9_page0 h5 a:hover,#stacks_in_9_page0 h6 a:hover,#stacks_in_9_page0 div a:hover{color:#BFBFBF}@media only screen and (min-width:40.063em){#stacks_in_9_page0 h1 a,#stacks_in_9_page0 h2 a,#stacks_in_9_page0 h3 a,#stacks_in_9_page0 h4 a,#stacks_in_9_page0 h5 a,#stacks_in_9_page0 h6 a,#stacks_in_9_page0 div a{font-size:1.50rem}}@media only screen and (min-width:40.063em){#stacks_in_9_page0 h1,#stacks_in_9_page0 h2,#stacks_in_9_page0 h3,#stacks_in_9_page0 h4,#stacks_in_9_page0 h5,#stacks_in_9_page0 h6,#stacks_in_9_page0 div{font-size:1.50rem}}#stacks_in_9_page0 small,#stacks_in_9_page0 small div{font-size:60%;color:#6F6F6F}          #stacks_in_9_page0 h1 span,#stacks_in_9_page0 h2 span,#stacks_in_9_page0 h3 span,#stacks_in_9_page0 h4 span,#stacks_in_9_page0 h5 span,#stacks_in_9_page0 h6 span,#stacks_in_9_page0 div span{font-family:'Gloria Hallelujah',Sans-Serif;font-weight:400;font-style:normal}  #stacks_in_33_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_33_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_33_page0>.maxwidth{max-width:500px}#stacks_in_33_page0>.hide-overflow{overflow:hidden!important}


    #stacks_in_16_page0{text-align:center}





    #stacks_in_16_page0 .button{background-color:#007DC5;
    color:#FFFFFF}
    #stacks_in_16_page0 .button:hover{
    background-color:#969696}



        
























#stacks_in_16_page0 {
	margin: 200px 0px 0px 0px;
}
  

#stacks_in_32_page0 {
	font-size: 70%;
}
