
/* root element for scrollable */ 
div.scrollable {
	/* required settings */ 
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */ 
	height: 240px;
	line-height: 1.7em;
	width: 960px;
}

/* root element for scrollable items */ 
div.scrollable div.items {
	position:absolute;
	/* this time we have very large space for the height */ 
	width: 20000em;
	float: left;
}

/* single scrollable item */
.items div {
	margin: 0;
	padding: 2px 0 0 0;
	font-size: 14px;
	float: left;
	width: 960px;
	color: #023047;
	text-align: left;
	line-height: 1.35em;
}

.items div:hover {
	/* background-color:#444; */
}

/* elements inside single item */
.items img {
	float:left;
	margin: 0 15px 0 0;
	height:220px;
	width:450px;
	
	padding: 7px;
	background-color: #FFF;
	border: #BDBDBD 1px solid;
	
	/* border: #FFF solid 8px; */
}

.items h3 {
	margin: 5px 0 15px 0;
	font-size: 24px;
	color: #023047;
	font-weight:normal;
	line-height: 1.35em;
}

.items a {
	color:#FFF;
}

/* the action buttons above the scrollable */
#actions {
	width: 960px;
	margin: 0;
	padding: 3px 0;
}

#actions a {
	font-size:11px;
	cursor:pointer;
	color:#FFF;
}

#actions a:hover {
	text-decoration:underline;
	color:#F60;
}

.disabled {
	visibility:hidden;
}

.prevPage {
	float:left;
	padding-left: 10px;
}

.nextPage {
	float:right;
	padding-right: 10px;
}