@charset 'utf-8';
div#makeMeScrollable {
	position: absolute;
	left: -146px;
	top: 60px;
}

/*	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:35px;
	height: 40px;
	/*	There is a big background image and it's used 
		to solve some problems I experienced
		with Internet Explorer 6. */
	background-image: url(../images/arrow_left.jpg);	
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 50;
	left: 0;
	top:260px;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
    cursor: pointer;
}

/*	Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/arrow_left.jpg);				
	background-repeat: no-repeat;
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	width:35px;
	height: 40px;
	background-image: url(../images/arrow_right.jpg);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 50;
	right: 0;
	top: 260px;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
    cursor: pointer;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/arrow_right.jpg);
	background-repeat: no-repeat;
	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
{
	background:#fff
	position: relative;
	overflow: hidden;
	width: 789px;
	height: 250px;
	padding: 8px 0;
}

div.scrollableArea
{
	position: relative;
	width: 885px;
	height: 203px;
}

.scrollableArea a:link {
	float: left !important;
	padding-right: 8px !important;
	}
div.image {
	position: relative;
	top: -69px;
	left: 118px;
		}
 
/** // SLIDER **/


