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

	/* vertical scrollers have typically larger height than width */	
	height: 680px;	 
	width: 750px;
	border-top:2px dotted #FFD20F;
	border-bottom:2px dotted #FFD20F;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px dashed #699AC1;
	margin:0px 30px;
	padding:15px;
	font-size:12px;
	height:200px;
}

/* elements inside single item */
.items img {
	float:left;
	background:#CCCCCC;
	border:1px solid #FFD20F;
	/*padding:10px;*/
	margin-right:20px;
	height:190px;
	/*width:133px;*/
}

.items h3 {
	margin:0 0 5px 0;
	font-size:24px;
	color:#3CA3FF;
	font-weight:bold;
}

.items h2 {
	margin:0 0 10px 0;
	font-size:11px;
	color:#A7C7DF;
	font-weight:normal;
}

.items a  {
	background: #3CA3FF;
	padding: 0px 5px;
	color: #FFFFFF;
	text-decoration:none;		
	cursor:pointer;
}

.items a:hover {
	background: #9E3434;
	border-bottom:2px solid #FFFFFF;
	color: #FFFFFF;
}

/* the action buttons above the scrollable */
#actions {
	width:345px;
	margin:10px 0 10px 353px;
}

#actions a {
	background: #9E3434;
	padding: 0px 5px;
	color: #FFFFFF;
	text-decoration:none;		
	cursor:pointer;
}

#actions a:hover {
	background: #3CA3FF;
	border-bottom:2px solid #FFFFFF;
	color: #FFFFFF;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

