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

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	width: 30px;
	height: 100%;
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	top: 0;
	left: 0px;
	cursor: pointer;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/arrow_left.png);
	background-color: rgba(0,0,0,1);
	background-repeat: no-repeat;
	background-position: center center;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width: 30px;
	height: 100%;
	background-image: url(../image/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	top: 0;
	right: 0px;
	/*cursor: url(../image/cursors/cursor_arrow_right.png), url(../image/cursors/cursor_arrow_right.cur),e-resize;*/
	cursor: pointer;

}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/arrow_right.png);
	background-color: rgba(0,0,0,1);
	background-repeat: no-repeat;
	background-position: center center;
}
div.scrollWrapper
{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

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