/* root element for scrollable */
.scrollable {padding:6px;padding-right:0px;margin-top:0px;}
.scrollable2 {padding:0px;margin-top:0px;}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	height: 440px;	 
	width: 190px;
	border-top:1px dotted #ddd;
	border-bottom:1px dotted #ddd;
}


.verticalreviews {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 420px;	 
	width: 400px;
	border-top:1px dotted #ddd;
	border-bottom:1px dotted #ddd;
}
.itemsreviews {	
	position:absolute;	
	/* this time we have very large space for height */	
	height:1000em;	
	margin: 0px;
	border-bottom:1px solid red;
}

/* root element for scrollable items */
.items {	
	position:absolute;	
	/* this time we have very large space for height */	
	height:900em;	
	margin: 0px;
	border-bottom:1px solid red;
}


/* single scrollable item */
.items div {
	border-bottom:0px solid #ddd;
	margin:1px 0;
	padding:1px;
	font-size:11px;
	height:1em;
}
/* single scrollable item */
.items div a{
	display:block;width:200px;
}

.holder h3 {
	border-bottom:0px solid #ddd;
	margin-left:0;margin-top:0px;
	color:#8DB93D!important;
	
}.holder h3 a {
	color:#8DB93D!important;
	
}

/* the action buttons above the scrollable */
#actions, #actions1 {
	
	width:30px;
	margin:45px 0 10px 0;	
	float:left;
	
}
/* the action buttons above the scrollable */
#actionsreviews {
	
	width:30px;
	margin:80px 0 10px 0;	
	float:left;
	
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage, .nextPage1 {
	display:block;margin-top:370px;
}	
.nextPageReviews {
	display:block;margin-top:330px;
}	


