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

/* root element for scrollable */
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 400px;
	width: 700px;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}



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

	/* vertical scrollers have typically larger height than width */	
	height: 380px;	 
	width: 350px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	height:450px;	
	margin: 0px;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #DDDDDD;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;
height:425px;
line-height:14px;
margin:10px 0;
padding:5px;
background:#FFFE88;
}

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

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	font-weight: bold;
	color:#08b0ee;
	font-family: Arial, Helvetica, sans-serif;
}

/* the action buttons above the scrollable */
#actions {
	width:350px;
	margin: 0px 0 10px 0;
	font-family: Arial, Helvetica, sans-serif;
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
	font-family: Arial, Helvetica, sans-serif;
}	


