/* Scrollyeah 0.1 (v26) | © Artem Polikarpov, 2012 | http://artpolikarpov.ru/ | artpolikarpov@gmail.com */
.scrollyeah {
  position: relative;
  overflow: hidden;
  *zoom: 1;
}

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

.scrollyeah__shaft {
  float: left;
  position: relative;
}

.scrollyeah_active .scrollyeah__shaft {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-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: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.scrollyeah_csstransitions .scrollyeah__shaft {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -o-transform;
  transition-property: transform;
  -moz-transition-duration: 0;
  -webkit-transition-duration: 0;
  -o-transition-duration: 0;
  transition-duration: 0;
  -moz-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -webkit-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.scrollyeah__shadow {
  display: block;
  position: absolute;
  text-decoration: none;
  top: 6px;
  width: 6px;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  -o-box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  -moz-transition-property: left, right;
  -webkit-transition-property: left, right;
  -o-transition-property: left, right;
  transition-property: left, right;
  -moz-transition-duration: 333ms;
  -webkit-transition-duration: 333ms;
  -o-transition-duration: 333ms;
  transition-duration: 333ms;
  -moz-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -webkit-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  z-index: 10;
  *display: none !important;
}

.scrollyeah__shadow_prev {
  left: -18px;
}

.scrollyeah__shadow_next {
  right: -18px;
}

.scrollyeah_shadow .scrollyeah__shadow_prev {
  left: -6px;
}
.scrollyeah_shadow .scrollyeah__shadow_next {
  right: -6px;
}

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

.scrollyeah_shadow_no-right .scrollyeah__shadow_next {
  right: -18px;
}
