.videoTut{
  width: 165px;
}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.videoTut .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 150px;
	height:77px;
	/* custom decorations */
	background:url(/pbl/static/ccf/img/bgr.jpg) 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.
*/
.videoTut .scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.videoTut .items div {
	float:left;
	width:150px;
}

/* single scrollable item */
.videoTut .scrollable img {
	float:left;	
	background-color:#fff;
	margin: 7px 0 0 20px;
	
}

/* active item */
.videoTut .scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.videoTut .scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
.videoTut a.browse {	
	display: block;
	position: relative;
	float: left;
	width:17px;
	height:17px;	
	margin:30px 0 0 0;
	cursor:pointer;
	font-size:1px;
	z-index:  8;
}

/* right */
.videoTut a.right { background:url(/pbl/static/ccf/img/arr_right.png) no-repeat; clear:right; margin-left: -10px;}

/* left */
.videoTut a.left	{ background:url(/pbl/static/ccf/img/arr_left.png) no-repeat; margin-right: -12px; } 

/* up and down */
.videoTut a.up, .videoTut a.down		{ 
	background:#f0f; 
	float: none;
	margin: 10px 50px;
}

/* up */
.videoTut a.up:hover  		{ background-position:-30px 0; }
.videoTut a.up:active  		{ background-position:-60px 0; }

/* down */
.videoTut a.down 				{ background-position: 0 -30px; }
.videoTut a.down:hover  		{ background-position:-30px -30px; }
.videoTut a.down:active  	{ background-position:-60px -30px; } 


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

/* position and dimensions of the navigator */
.videoTut .navi {  
  margin-left: 65px;
  width: 40px;
	height: 20px;
}

/* items inside navigator */
.videoTut .navi a {  
	width:5px;
	height:20px;
	float:left;
	margin:3px;
	background:url("/pbl/static/ccf/img/bullet_grey__dot.gif") no-repeat scroll left 5px transparent;
	display:block;
	font-size:1px;
}

/* active state (current page state) */
.videoTut .navi a.active {
	background:url("/ccf/deprecated/s2/images/bullet_yellow_dot.gif") no-repeat scroll left 5px transparent;    
}