div.scrollingHotSpotLeft {
	display: none;
}
div.scrollingHotSpotRight {
	display: none;
}
div.scrollWrapper {
	position: relative;
	overflow: hidden;
	width: 1158px;
	max-width: 1158px;
	min-width: 1158px;
	height: 574px;
	float: left;
}
div.scrollableArea {
	position: relative;
	width: auto;
	height: 100%;
	margin: 15px 0 0 0;
}
#gallery {
	margin: 0 auto;
	text-align: center;
	width: 1235px;
	height: 574px;
	position: relative;
	background-color: transparent;
	background-image: url(../images/smoothdivscroll/scroll-gradient.jpg);	
}
#gallery div.scrollableArea * {
	float: left;
	padding-right: 6px; 
}
a {
	outline:none !important;
}
/* You can alter this CSS in order to give SmoothDivScroll 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. */
	width: 28px;
	height: 574px;
	margin-right: 8px;	
	margin-left: 2px;	
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	background-image: url(../images/smoothdivscroll/scroll-gradient.jpg);
	position: relative;
	z-index: 2;
	cursor: pointer;
	float: left;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	width: 28px;
	height: 574px;	
	margin-right: 8px;
	margin-left: 2px;
	background-image: url(../images/smoothdivscroll/arrow_left.jpg);				
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	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: 27px;
	height: 574px;
	background-image: url(../images/smoothdivscroll/scroll-gradient.jpg);
	position: relative;
	z-index: 2;
	cursor: pointer;
	float: left;
	margin-left: 8px;	
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	width: 27px;
	height: 574px;	
	background-image: url(../images/smoothdivscroll/arrow_right.jpg);
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;	
	opacity: 0.35;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.35;
	zoom: 1;
	margin-left: 8px;		
}