.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 921px;
	height:105px;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:921px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px;
	background-color:#fff;
	width:120px;
	height:90px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/spry.png) no-repeat;
	display:block;
	width:20px;
	height:34px;
	float:left;
	margin:33px 0px;
	cursor:pointer;
	font-size:1px;
	position:relative;
	z-index:10;
}

/* right */
a.right 		{ background-position:-1220px -5px; clear:right; margin-right: 0px; margin-left:-10px;}
a.right:hover 	{ background-position:-1220px -40px; }
a.right:active 	{ background-position:-1220px -40px; } 


/* left */
a.left			{ background-position:-1250px -5px; margin-left: 0px; margin-right:0px; } 
a.left:hover  	{ background-position:-1250px -40px; }
a.left:active  	{ background-position:-1250px -40px; }


/* up and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


