.scrollable {
	position: relative;
}

div.scrollingHotSpotLeft
{
	width: 60px;
	height: 100%;
/*	background-image: url(/img/big_transparent.gif);*/
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	left: 0;
/*    cursor: url(/img/cursors/cursor_arrow_left.cur), w-resize;*/
	cursor:  w-resize;
}

div.scrollingHotSpotLeftVisible
{
	background-image: url(/img/arrow_left.gif);
	background-position: center 35px;		
	background-color: #fff;
	background-repeat: no-repeat;
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

div.scrollingHotSpotRight
{
	width: 60px;
	height: 100%;
/*	background-image: url(/img/big_transparent.gif);*/
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	right: 0;
/*    cursor: url(/img/cursors/cursor_arrow_right.cur), e-resize;*/
	cursor:  e-resize;
}

div.scrollingHotSpotRightVisible
{
	background-image: url(/img/arrow_right.gif);
	background-position: center 35px;
	background-color: #fff;
	background-repeat: no-repeat;
	zoom: 1;
}

div.scrollWrapper
{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

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

.scrollWrapper .scrollableArea .item {
	width: 120px;
	height: 100px;
	float: left;
	padding-left: 20px;
	text-align: center;
}

.scrollWrapper .scrollableArea .item:first-child {
	width:40px;
	padding-left:0;
}

