/* root element for scrollable */
.scrollVertical {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 651px;
	width: 236px;
}

.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 661px;	 
	width: 282px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.vertItems {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.vertItems .testimonialBlock {
	margin: 10px 0 0 0;
padding: 0 0 2px 0;
border-bottom: 1px solid #222;
}

/* elements inside single item */


.testimonialThumb {
float: left;
width: 115px;
padding: 0;
}

.testimonialText {
float: left;
width: 152px;
font-size: 70%;
line-height: 1.1em;
margin: 0;
padding: 0;
}

.testimonialText p {
margin: 0;
padding: 0 0 .75em 0;
}



/* the action buttons above the scrollable */
#actions {
	width:282px;
	margin: 0;
margin-top: -7px;
height: 20px;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	
}

.disabled {
	visibility:hidden;		
}

#actions .next, #actions .prev {
	float:right;
}

#actions .prev {
padding-right: 10px;
}	


