@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 280px;
	width: 640px;
}

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

/* single scrollable item */
.item {
	padding:10px;
	font-size:12px;
	height:270px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}

/* elements inside single item */
.item img {

}

.item h3 {
	font-size:18px;
	color:#FF9;
	font-weight:normal;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
	padding-left: 70px;
	text-align: left;
	line-height: normal;
}
.item p {
	padding-left: 65px;
	color: #FFF;
	padding-top: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
}


/* the action buttons above the scrollable */
#actions {
	width:500px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 150px;
	text-align: left;
}

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

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

.disabled {
	visibility:hidden;		
}

.next {

}	

