/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

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

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

/* single scrollable item */
.items div {
	/*border-bottom:1px solid #ddd;*/
	font-size:16px;
	line-height:25px;
	height:200px;
	width:800px;
	margin-top:20px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:200px;
	width:100px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:18px;
	color:#000;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:595px;
	margin-top:-30px;
	margin-left:-30px;

}

#actions a {
	font-size:10px;		
	cursor:pointer;
	color:#666;
	text-decoration:none;

	
}

#actions a:hover {
	color:#000;
}



.nextPage {
	/*float:right;*/
	margin-top:-30px;
}	

/*.nextPage:hover {
	background-image:url(../images/right-hover.gif);
	}
	
	.disabled {
	visibility:hidden;		
}

.prevPage {
	background-image:url(../images/left.gif);
	}
	
.prevPage:hover {
	background-image:url(../images/left-hover.gif);
	}
*/
