﻿.scrollable       
{
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 598px;
	height:99px;
	float:left; /*for button styling*/
}

/*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 width and height for the root element and not for
this element. */ 
div.scrollable div.videoIcons 
{
	/* large width to accomodate multiple items */
	width:20000em;
	position:absolute; 
}

/*a single item. must be floated in horizontal scrolling.*/
div.scrollable div.videoIcons a
{
	float:left;
	height:82;
	width:135;
} 
/*Button Settings*/
a.browse
{
	background: transparent url(/images/Video-arrows-grey.jpg) no-repeat scroll 0 0;
	cursor:pointer;
	display:block;
	float:left;
	font-size:1px;
	height:100px;
	width:40px;
}
a.right 
{
	clear:right;
	background-position: -54px 0;
}
a.disabled
{
	cursor:default;
}

 