/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	position:relative;
	overflow:hidden;
	width: 372px;
	height:50px;
}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:10000em;
	position:absolute;
	clear:both;
}
/* single scrollable item */
.scrollable a img{
	float:left;
	margin:0px 0px 0px 0px;
	padding:2px;
	cursor:pointer;
	width:73px;
	height:49px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	background:url(../images/video-thumbnail-bg.jpg) left top no-repeat;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(../images/hor-arrow.jpg) left top scroll;
	display:block;
	width:8px;
	height:15px;
	float:left;
	cursor:pointer;
	margin:20px 5px;
}
/* right */
a.right{ background-position:right 0px; clear:right; margin-right: 0px;}
/* left */
a.left{ margin-left: 0px;  background-position:left 0px;} 

/* top */
a.up{ background:url(../images/up-arrow.jpg) left top no-repeat; width:15px; height:8px; float:left; cursor:pointer;}
/* bottom */
a.down{ background:url(../images/down-arrow.jpg) left top no-repeat; width:15px; height:8px; float:left; cursor:pointer;} 


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