/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 540px; 
	height: 205px;

	
	/* custom decorations */
	/*padding:5px 0 0 0;	*/
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	/* decoration */
	/*margin-left:10px;*/
	cursor:pointer;
	height:100%;
}

/* single scrollable item */
div.scrollable div.items .vlink {
	float:left;
	/* custom decoration */
	text-align:left;
	width: 120px;
	padding:5px 5px;
	font-size:11px;
	font-family: 'arial';
	/*border:1px solid #ccc;*/
	background-color:#D0CFD0;
	margin-right: 8px;	

	/*additions*/
	height:100%;
}

/* active item */
div.scrollable div.items div.active {
	/*border:1px solid #ccc;*/	
	background-color:#b1b0b1;
}

.short_title {
	font-weight: bold;
	display:block;
	clear:both;
	color:#015285;
	text-decoration:none;
	margin-bottom:10px;
	height: 70px;
	overflow:hidden;
}
div.scrollable div.items div.person_name {
	color:#686868;
	height:15px;
}
div.scrollable div.items div.date_published {
	float:left;
	color:#686868;
	height:15px;
}
div.scrollable div.items div.duration {
	float: right;
	color:#686868;
}
.vlink img {
	border: 1px solid #FFF;
	margin:5px;
}

