@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: 150px;
	width: 240px;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}
#actions{
	display:inline;
	color:#00A3DA;
	cursor:pointer;
	margin:0 0 0 15px;
}
	#actions a{
		margin:8px 4px 0 4px;	
		outline:none;
		text-align:left;
	}
#next_arrow {
	background-repeat:no-repeat;
	background-image:url(pngs/next.gif);
	float:right;
	display:block;
	height:20px;
	width:14px;
	padding:0 0 0 5px;
}
#prev_arrow {
	background-repeat:no-repeat;
	background-image:url(pngs/prev.gif);
	float:right;
	display:block;
	height:20px;
	width:14px;
}
#item h3{
	font-weight:bold;
	margin:0 0 0 10px;
}
