﻿/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	min-width: 5px;
	height: 100%;
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 5001;
	left: 0;
    cursor: pointer;
    
    background-color: #7a4a0f;
    opacity: 0.3;
    width: 5%;
    min-width: 5px;
}

.scrollingHotSpotLeft:hover {
    opacity: 0.8;
    width: 5%;
    min-width: 5px;
    background-image: url(../images/arrow_left.png);
    background-size: 30%;
    background-repeat: no-repeat;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.8;
	zoom: 1;
}

/* Visible left hotspot 
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/arrow_left.gif);				
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35;
	-moz-opacity: 0.35; 
	filter: alpha(opacity = 35); 
	zoom: 1; 
}
*/
/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	min-width: 5px;
	height: 100%;
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 5001;
	right: 0;
	cursor: pointer;
    background-color: #7a4a0f;
    opacity: 0.3;
    width: 5%;
    min-width: 5px;
}

.scrollingHotSpotRight:hover {
    width: 5%;
    min-width: 5px;
	background-image: url(../images/arrow_right.png);
    background-size: 30%;
    background-repeat: no-repeat;
	opacity: 0.8;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.8;
	zoom: 1;
}



/* Visible right hotspot 
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/arrow_right.gif);
	background-color: #fff;
	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: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

div.scrollableArea
{
	position: relative;
	width: auto;
	height: 100%;
}