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

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	width: 14px;
	height: 15px;
	background-image: url(../images/scroll_left.gif);
	background-position: right top;
	background-repeat:no-repeat;
	position: absolute;
	left: 0px;
	top:29px;
	z-index: 200;

}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/scroll_left.gif);				
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width: 14px;
	height: 15px;
	background-image: url(../images/scroll_right.gif);
	position: absolute;
	z-index: 200;
	right: 0px;
	top:29px;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/scroll_right.gif);
}

/* 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;
	left:20px;
	overflow: hidden;
	width: 550px;
	height: 84px;
}

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