/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 450px;
	width: 500px;
	
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;
	margin: 0px;
	width:500px;
}


/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:60px;
	width: 480px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:75px;
	width:100px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#000;
	font-weight:bold;
}

/* the action buttons above the scrollable */
#actions {
	width:300px;
	margin:10;
	font-weight: bold;
	height: auto;
}

#actions a {
	font-size:16px;
	cursor:pointer;
	color:#000;
}

#actions a:hover {
	text-decoration:none;
	color:#69C;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 20px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

