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

	/* vertical scrollers have typically larger height than width */	
	height: 242px;	 
	width: 936px;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
	margin-top:-1em;
}

/* 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 {
	border-bottom:0 solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:240px;
}

.items div.tutorials a {color:#999;border-bottom:1px solid #eee;margin:0;padding-left:0;}
.items div.tutorials a:hover {color:#000;border-bottom:1px solid #000;margin:0;padding-left:0;}
.items div.tutorials dd {padding-left:12px;padding-bottom:7px;padding-top:2px;}
.items div.tutorials dt span {margin-left:12px;}
.items div.tutorials dd span {margin-left:12px;}


/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:240px;
	width:430px;
}

.items h3 {
	margin:-1em 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:936px;
	margin:30px 0 10px 0;
	border:1px solid #fff;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#f00;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	padding-right:200px;
}	

.prevPage {
	padding-left:200px;
}	
