/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 840px;	
	height:150px;
	
	/* custom decorations */
	padding:4px 5px 20px 5px;	
	border:0px outset #ccc;
	background-color:#000000;
	align: center;				
}

div.scrollablev {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 840px;	
	height:150px;	
	
	/* custom decorations */
	padding:4px 5px 8px 5px;	
	border:0px outset #ccc;
	background-color:#000000;
	align: center;				
}

/* 
	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:25000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

div.scrollablev div.items {	
	/* this cannot be too large */
	width:25000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:190px;
	color: #ffffff;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	padding:2px 0px 5px 0px;
	border:0px inset #000000;
	background-color: #303030;
	margin-right: 7px;	
	-moz-border-radius:5px;
	align:center;
}

div.scrollablev div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:190px;
	color: #ffffff;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	padding:2px 5px 5px 0px;
	border:0px inset #000000;
	background-color: #303030;
	margin-right: 7px;	
	-moz-border-radius:5px;
	align:center;
}

.video:hover {cursor:pointer;}
.hand:hover {cursor:pointer;}

.hand {border:0px outset #ffffff;}


/* active item */
div.scrollable div.items div.active {
	border:0px inset #ccc;		
	background-color:#fff;
	color: #000000;
}

div.scrollablev div.items div.active {
	border:0px inset #ccc;		
	background-color:#fff;
	color: #000000;
}