<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! Scrollyeah - v0.3.2 - 2014-04-11
* https://github.com/artpolikarpov/scrollyeah
* Copyright (c) 2014 Artem Polikarpov; Licensed MIT */
.scrollyeah {
  position: relative;
  overflow: hidden;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  *zoom: 1;
}

.scrollyeah__wrap {
  overflow: hidden;
  *zoom: 1;
}

.scrollyeah__shaft {
  float: left;
}

.scrollyeah__shaft, .scrollyeah__parallax {
  left: 0;
  position: relative;
}

.scrollyeah_active .scrollyeah__shaft {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
  *cursor: move !important;
}
.scrollyeah_active .scrollyeah__shaft_grabbing, .scrollyeah_active .scrollyeah__shaft_grabbing * {
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.scrollyeah__shadow {
  display: block;
  position: absolute;
  text-decoration: none;
  top: 0;
  bottom: 0;
  width: 40px;
  height: auto;
  z-index: 10;
}

.scrollyeah__shadow_prev {
  left: -10px;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, rgb(255, 255, 255)),
        color-stop(1, rgb(255, 255, 255))
    );
    background-image: -o-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -moz-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.scrollyeah__shadow_next {
  right: -10px;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, rgb(255, 255, 255)),
        color-stop(1, rgb(255, 255, 255))
    );
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -moz-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -ms-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.scrollyeah_shadow .scrollyeah__shadow_prev {
  left: 0;
}
.scrollyeah_shadow .scrollyeah__shadow_next {
  right: 0;
}

.scrollyeah_shadow_no-left .scrollyeah__shadow_prev {
  left: -10px;
}

.scrollyeah_shadow_no-right .scrollyeah__shadow_next {
  right: -10px;
}
</pre></body></html>