/* 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: 18px;
	height: 100px;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	background-image: url(/design/arrow-left.gif);
	background-repeat: repeat;
	background-position: center center;
	position: relative;
	margin-left:7px;
	margin-top: 4px; 
	float: left;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
	/* cursor: url(../images/cursors/cursor_arrow_left.cur), url(images/cursors/cursor_arrow_left.cur),w-resize; */
}

div.scrollingHotSpotLeft95
{
	/* 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: 18px;
	height: 95px;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
  background: #434B53;
	background-image: url(/design/arrow-left.gif);
	background-repeat: repeat;
	background-position: center center;
	position: relative;
	margin-left:7px;
	margin-top: 4px; 
	float: left;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
	/* cursor: url(../images/cursors/cursor_arrow_left.cur), url(images/cursors/cursor_arrow_left.cur),w-resize; */
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(/design/arrow-left.gif);				
	background-color: #C81F18;
	background-repeat: no-repeat;
}
div.scrollingHotSpotLeftVisible:hover
{
	background-image: url(/design/arrow-left-over.gif);				
	background-color: #C81F18;
	background-repeat: no-repeat;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width: 18px;
	height: 100px;
	background-image: url(/design/arrow-right.gif);
	background-repeat: repeat;
	background-position: center center;
	position: relative;
	float: left;
	margin-left: 7px;
	margin-top: 4px; 
}

div.scrollingHotSpotRight95
{
	width: 18px;
	height: 95px;
  background: #434B53;
	background-image: url(/design/arrow-right.gif);
	background-repeat: repeat;
	background-position: center center;
	position: relative;
	float: left;
	margin-left: 7px;
	margin-top: 4px; 
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(/design/arrow-right.gif);
	background-color: #C81F18;
	background-repeat: no-repeat;
}

div.scrollingHotSpotRightVisible:hover
{
	background-image: url(/design/arrow-right-over.gif);
	background-color: #C81F18;
	background-repeat: no-repeat;
}

/* 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%;
	padding: 0px;
	margin: 0px; 
}

div.scrollWrapper * {
  margin: 0px; padding: 0px;
}

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