﻿/* You can alter this CSS in order to give SmoothDivScroll your own look'n'feel */



/* 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: 900px;
	height: auto;
}

div.scrollableArea
{
	position: relative;
	width: 900px;
	height: auto;
}

#makeMeScrollable div.scrollableArea *
	{
		position: relative;
		float: left;
		margin: 0;
		padding: 0;
	}

