/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* left/right hotspot */
div.scrollingHotSpotLeft, div.scrollingHotSpotLeftVisible, div.scrollingHotSpotRight, div.scrollingHotSpotRightVisible
{
	min-width: 75px;
	width: 20%;
	height: 100%;
	position: absolute;
	z-index: 999;
	left: 0;
}

/* right hotspot */
div.scrollingHotSpotRight, div.scrollingHotSpotRightVisible
{
	left: auto;
	right: 0;
}

/* 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%;
}