﻿/* You can alter this CSS in order to give SmoothDivScroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft {
  width: 28px;
  height: 100%;
  position: absolute;
  z-index: 200;
  left: 0;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible {
  background-image: url(/graphics/mainpage/arrow-left.png);				
  background-repeat: no-repeat;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight {
  width: 28px;
  height: 100%;
  position: absolute;
  z-index: 200;
  right: 0;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible {
  background-image: url(/graphics/mainpage/arrow-right.png);				
  background-repeat: no-repeat;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

div.scrollableArea {
  position: relative;
  width: auto;
  height: 100%;
}