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

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	width: 30px;
	height: 100%;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	background-image: url(../images/common/arrow_left.gif);
	background-repeat: no-repeat;
	background-position: left center;
	position: absolute;
	z-index: 200;
	left: 0;
	/*  When positioning the mouse over one of the hot spots, the cursor should change.
	I've noticed that this varies from browser to browser though. */
	cursor: url(../images/cursors/cursor_arrow_left.cur), w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/common/arrow_left.gif);				
	background-color: #fff;
	background-repeat: no-repeat;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width: 30px;
	height: 100%;
	background-image: url(../images/common/arrow_right.gif);
	background-repeat: no-repeat;
	background-position: right center;
	position: absolute;
	z-index: 200;
	right: 0;
	cursor: url(../images/cursors/cursor_arrow_right.cur), w-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/common/arrow_right.gif);
	background-color: #fff;
	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
{
	overflow: hidden;
	height: 164px;
}

div.scrollableArea
{
	float: left;
	padding: 8px 30px 0 30px;
	height: 156px;
	width: 865px;
	background-color: #F2F2F2;
}

#makeMeScrollable div.scrollableArea *
	{
		position: relative;
		float: left;
		margin: 0;
		padding: 0;
	}

