#scrollbox {
	width: 900px;
	margin: auto;
}


.scrollable {
	margin: 20px auto;
	position:relative;
	overflow:hidden;
	width: 820px;
	height:130px;
	float: left;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
.scrollable .items div {
	width: 220px;
	height: 124px;
	display: inline-block;
	border: thin solid #C22550;
	
	float: left;
	margin: 0 25px;
}
.scrollable .items div a img{
	border: 0;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


/* ======================================== */



/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url('images/scroller.png') no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	font-size:1px;
}

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


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


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

