﻿/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
#videoscroller .items div {
	/*border-bottom:1px solid #ddd;*/
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:120px;
}

/* elements inside single item */
#videoscroller .items img {
	float:left;
	margin-right:20px;
	height:90px;
	width:120px;
}

/* single scrollable item */
#galleryscroller .items div {
	/*border-bottom:1px solid #ddd;*/
	margin: 0px 0;
	padding:0px;
	font-size:12px;
	height:85px;
}

/* elements inside single item */
#galleryscroller .items img {
	float:left;
	margin-right:20px;
	height:75px;
	width:100px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	/*float:right;*/
}	

