﻿/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	width: 25px;
	height: 100px;
	background: url(../images/blank.gif) no-repeat;
	position: absolute;
	z-index: 2000;
	left: 0;
	cursor: pointer;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background: url(../images/arrow_left.png) no-repeat;
	zoom: 1;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

div.scrollingHotSpotLeftVisible:hover
{
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	background: url(../images/blank.gif) no-repeat;
	width: 25px;
	height: 100px;
	position: absolute;
	z-index: 2000;
	right: 0;
	cursor: pointer;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background: url(../images/arrow_right.png) no-repeat;
	zoom: 1;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

div.scrollingHotSpotRightVisible:hover
{
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* 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: 100px;
	
}

div.scrollableArea
{
	position: relative;
	width: auto;
	height: 100px;
}
