@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: 300px;	 
	width: 600px;
	
		
}

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

/* single scrollable item */
.item {

	margin:0;
	padding:0;
	font-size:12px;
	height:650px;
	width:600px;
}

.item p {
	
	margin:0px;
	padding:0px;
	font-size:11px;
	width:150px;
	float:right;
}



/* elements inside single item */
.item img {
	float:left;
	
	/*
height:180px;
	width:240px;
*/
}

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

/* the action buttons below the scrollable */
#actions {
	width:600px;
	margin:0px;
	margin: 0px 0px 25px 0px;
	text-align: right;	
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
/* 	float:right; */
}	
