/* CSS Document */
/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height:330px;	 
	width: 650px;
	border-top:0px solid #ddd;
	
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	
	margin:0px;
	height: 400px;
	left:10px;
	top: 0px;
	width:500px;
}

/* single scrollable item */
.item {
	border-bottom:0px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:280px;
	width:650px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:240px;
	width:700px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:18px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:730px;
	margin:15px 0 10px 0;
	
}

#actions a {
	font-size:14px;
	font-weight:bold;	
	cursor:pointer;
	color:#309DCF;
	text-decoration:none;
}

#actions a:hover {
	text-decoration:none;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
	
}	

.line {
border-bottom:1px solid #B2B2B2;
font-size:0;
line-height:1.05em;
}