/* this makes it possible to add next button beside scrollable */
.caption_block .contentvideo .rightanim{
clear:left;
display:block;
width:238px;
margin : 0 auto;
}
div.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	clear:both;
	display:block;
	width:18px;
	height:18px;
	background:url(left.png) no-repeat;
	float:left;
	margin:26px 2px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:0;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	



div.scrollable {  
	position:relative;
	margin: 0 auto;
	overflow:hidden;
	width: 189px;	 
	height:73px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:5000em;	
	clear:both;
	border:1px solid #0091d0;
}

/* custom positioning for navigational links */
a.prev, a.next {
	/*margin-top:118px;	*/
}



/* single item */
#thumbs div {
	float:left;
	width:93px;
	height:238px;
	background:#0091d0 url(h150.png) repeat-x 0 70px;
	/*background:#333;*/
	color:#fff;
	border-right:1px solid #0091d0;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#FF9600;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#FF9600;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:5px;		
	font-size:90%;
	color:#fff;	
}

#thumbs h3 em {
	color:yellow;
}
#thumbs a {
	color:#fff;
	text-decoration:none;
}
#thumbs a:hover {
	text-decoration:underline;
}

#thumbs img {
	width:93px;
}