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

/* Invisible left hotspot */
div.scrollingHotSpotLeft {
	background-position: center center;
	background-repeat: norepeat;
	height: 50%;
	left: 0;
	min-width: 30px;
	position: absolute;
	margin-top: 22px;
	width: 5%;
	z-index: 500;
	background-image: url(../images/arrow_left.gif);
}

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

/* Invisible right hotspot */
div.scrollingHotSpotRight {
	background-image: url(../images/arrow_right.gif);
    background-position: center center;
    background-repeat: norepeat;
    height: 50%;
    min-width: 30px;
    position: absolute;
	margin-top: 22px;
    right: 0;
    width: 5%;
    z-index: 500;
}
div.scrollingHotSpotRightVisible {
    background-color: #FFFFFF;
    background-image: url("../images/arrow_right.gif");
    background-repeat: no-repeat;
    opacity: 0.35;
}
/* 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: auto;
	height: 100%;
}


