/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 120px;	 
	width: 218px;
	border-top:0px solid #ddd;	
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height 
	height:20000em;	*/	
	margin: 0px;
	font-size: 10px;
	font-weight: normal;
}
.items a:link{
	font-size: 11px;
	font-weight: normal;
}
.items a:hover{
	font-size: 11px;
	font-weight: normal;
	color:#007A54;
}
.items a:visited{
	font-size: 11px;
	font-weight: normal;
}
.items a strong {
	font-weight: bold;
	color:#007A54;
}
/* single scrollable item */
.items div {
	border-bottom:0px solid #ddd;
	padding:0px;
	height:120px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	overflow: hidden;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:10px;
	
}
.imgwidth{
		width:64px;
	height:90px;
}
.imgsizeretain {
	width: auto;
}


.items img.hover {
	background-color:#ccc;	
}

.items h3 {
	margin:0 0 1px 0;
	font-size:11px;
	color:#456;
	font-weight:bold;
}
.items strong {
	font-size:11px;
	color:#456;
	font-weight:normal;	
}
			   
/* the action buttons above the scrollable */
#actions {
	width:218px;
	margin:0px 0 0px 0;	
}

#actions a {	
	cursor:pointer;
	color:#666;
		font-weight:normal;
		size:11px;
	font-family:Arial, Helvetica, sans-serif;
	
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
	font-weight:normal;
	size:11px;
	font-family:Arial, Helvetica, sans-serif;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

