/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 975px;
	height:116px;
	float:left;

	/* custom decorations */
	/* border:1px solid #ccc;*/

}

/*
	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 .items a{
	background-image:url(../images/video-list-bg.png);
	float:left;
	height:88px;
	padding:8px 20px 20px 12px;
	width:295px;
	text-decoration:none;
}

.scrollable .items a img{
	border:medium none;
	float:right;
	height:75px;
	width:100px;
}*/

.scrollable .items a h3{
	float:left;
	width: 190px;
	color:#666666;
	text-transform:uppercase;
	font-weight:bold;
	text-decoration:none !important;
	font-size:12px;
}

.scrollable .items a p{
	float:left;
	width: 190px;
	text-decoration:none;
	color:#666666;
	line-height:16px;
}	

/* single scrollable item */
/*.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

/* active item */
.scrollable .active {
	/*border:1px solid #E37B02;*/
	z-index:1000;
	position:relative;
	background-image:url(../images/videolist_bck_selected.jpg);
	background-repeat:repeat-x;
}

.scrollable .active .thumb_title{
	color:#E37B02;
}

.scrollable .active .thumb_abstract{
	color:#222222;
}

.scrollable .active .dots{
	background-image:url(../images/thumb_dots_selected.jpg);
}
