﻿	#smallScroller
	{
		background:#000000;
		width:620px;
		height: 90px;
		position: relative;
		margin: 0 ;
	}
	
	#smallScroller div.scrollableArea *
	{
		display: block;
		position: relative;
		float: left;
		padding: 0;
		margin: 0px;
	}


/* 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. */
	min-width: 20px;
	width: 5%;
	height: 100%;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 100;
	left: 0;
	/*  When positioning the mouse over one of the hot spots, the cursor should change.
	I've noticed that this varies from browser to browser though. */
}

div.scrollableArea a {border-top: none; border-bottom:none; border-left:solid 2px #000000;border-right:solid 2px #000000;}

div.scrollableArea img{
border:none;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background:url(../images/pearlanddean/w.jpg) repeat;
	background-color: #000000;
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	min-width: 20px;
	width: 5%;
	height: 100%;
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 110;
	right: 0;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background:url(../images/pearlanddean/e.jpg) repeat;
	background-color: #000000;
	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%;
	top:0px;
	margin-bottom:0px;
}

div.scrollableArea
{
	position: relative;
	width: auto;
	height: 100%;
}
