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

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	/* The hotspots have a minimum width of 100 pixels and if there is room the will grow
    and occupy 15% of the scrollable area (30% combined). Adjust it to your own taste. */
	min-width: 50px;
	width: 5%;
    height: 94.5%;
    background-image: url(../images/big_transparent.gif);
    background-repeat: repeat;
    position: absolute;
    z-index: 200;
    left: 0;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
	cursor: url(../images/cursors/cursor_arrow_left.png), url(../images/cursors/cursor_arrow_left.cur),w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeft:hover, div.scrollingHotSpotLeft
{
	background-image: url(../images/arrow_left.png) no-repeat;
	background-color: #e5e5e5; /* For browsers that do not support gradients */
	background: url(../images/arrow_left.png) center 200px no-repeat, -webkit-linear-gradient(right, #f9f3f3 , #dcdcdc); /* For Safari 5.1 to 6.0 */
	background: url(../images/arrow_left.png) center 200px no-repeat, -o-linear-gradient(left, #f9f3f3, #dcdcdc); /* For Opera 11.1 to 12.0 */
	background: url(../images/arrow_left.png) center 200px no-repeat, -moz-linear-gradient(left, #f9f3f3, #dcdcdc); /* For Firefox 3.6 to 15 */
	background: url(../images/arrow_left.png) center 200px no-repeat, linear-gradient(to left, #f9f3f3 , #dcdcdc); /* Standard syntax */
	opacity: 0.35;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.35;
	zoom: 1;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	min-width: 50px;
	width: 5%;
    height: 94.5%;
    background-image: url(../images/big_transparent.gif);
    background-repeat: repeat;
    position: absolute;
    z-index: 200;
    right: 0;
	cursor: url(../images/cursors/cursor_arrow_right.png), url(../images/cursors/cursor_arrow_right.cur),e-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRight:hover, div.scrollingHotSpotRight
{
	background-image: url(../images/arrow_right.png) no-repeat;
	background-color: #e5e5e5; /* For browsers that do not support gradients */
	background: url(../images/arrow_right.png) center 200px no-repeat, -webkit-linear-gradient(left, #f9f3f3 , #dcdcdc); /* For Safari 5.1 to 6.0 */
	background: url(../images/arrow_right.png) center 200px no-repeat, -o-linear-gradient(right, #f9f3f3, #dcdcdc); /* For Opera 11.1 to 12.0 */
	background: url(../images/arrow_right.png) center 200px no-repeat, -moz-linear-gradient(right, #f9f3f3, #dcdcdc); /* For Firefox 3.6 to 15 */
	background: url(../images/arrow_right.png) center 200px no-repeat, linear-gradient(to right, #f9f3f3 , #dcdcdc); /* Standard syntax */
	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: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

div.scrollableArea
{
	position: relative;
	width: 100%;
	height: 100%;
	padding-right: 5px;
	@include transition(all .1s linear);
}