/* root element for scrollable */

#vertScroll{
	background: #000000 url(../images/img_recent_top.gif) left top no-repeat;
	width: 204px;
	height: 490px;
	padding: 15px;
	}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 204px;
	

}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	font-size:12px;
	height:140px;
}

.items div strong{font-weight: bold; color: #FFF; text-align: center; width: 197px; display: block; line-height: 20px;}

/* elements inside single item */
.items img {
	float:left;
	height: 91px;
	width: 197px;
	border: 1px solid #df3a0c;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	margin:30px 0 10px 0;	
}


a.prevPage, a.nextPage{cursor:pointer; width: 20px; height: 14px; text-indent: -9999px; display: block;}

a.nextPage{background: url(../images/bg_arrow.gif) left top no-repeat; margin: 15px auto 10px auto;}
a.prevPage{background: url(../images/bg_arrow.gif) left -14px no-repeat; margin: 10px auto 15px auto;}

a.nextPageOver{background: url(../images/bg_arrow.gif) right top no-repeat;}
a.prevPageOver{background: url(../images/bg_arrow.gif) right -14px no-repeat;}

.disabled {
		
}

.nextPage {
	
}	

