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

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	width: 12px;
	height: 20px;
	position: absolute;
	margin-top:20px;
	z-index: 200;
	cursor: pointer;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	width: 12px;
	height: 20px;
	background-image: url(../images/arrow_left.png);				
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35; /* Standard CSS3 opacity setting */
	-moz-opacity: 0.35; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
	filter: alpha(opacity = 35); /* Opacity for Internet Explorer. */
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width: 12px;
	height: 20px;
	position: absolute;
	margin-top:20px;
	margin-left:322px;
	z-index: 200;
	cursor: pointer;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	width: 12px;
	height: 20px;
	background-image: url(../images/arrow_right.png);
	background-repeat: no-repeat;
	opacity: 0.35;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.35;
	zoom: 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: absolute;
	margin-left:12px;
	margin-top:5px;
	overflow: hidden;
	width: 308px;
	height: 65px;
}

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