
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 215px;
	height:105px;
  
	/* custom decorations */
	border:0px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}

/*
	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:20000em;
	position:absolute;
	clear:both;
}

.scrollable .vidplyb20x20_homepage {
	cursor:pointer;
	left:2px;
	position:absolute;
	top:42px;
	z-index:2;
}
.scrollable .vidplyb20x20_homepage a img {
	height:15px;
	width:15px;
	opacity:0.7;
}

/* single scrollable item */
.scrollable img {
	float:left;
	border:0px solid #ccc;
	cursor:pointer;
	width:100px;
	height:60px;
	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
}

.scrollable table {
	float:left;
   color:#7A0901;
 font-family:arial,tahoma;
	font-size:9px;
	border:0px solid #ccc;
	cursor:pointer;
	width:100px;
	height:70px;
	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
}
.scrollable .duration 
{
	color:Black;
	font-weight:bold;
	float:right;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


