
/* root element for scrollable */ 
div.scrollable {
	/* required settings */ 
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */ 
	height: 262px;
	line-height: 1.7em;
	width: 600px;
	background: url(../img/staff_scrollerbgdx.png) right repeat-y;
}

/* 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: 9px 10px 0 0;
	font-size: 12px;
	float: left;
	width: 590px;
	color: #FFF;
	text-align: left;
	line-height: 1.35em;
}

.items div:hover {
	/* background-color:#444; */
}

/* elements inside single item */
.items img {
	float:left;
	margin: 0 5px 0 0;
	height:238px;
	width:250px;
	padding: 0;
}

.items h3 {
	margin: 5px 0 5px 0;
	font-size: 26px;
	color: #23646A;
	font-weight:bold;
	line-height: 1.25em;
}

.items h2 {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: #23646A;
	font-weight:bold;
	line-height: 1em;
}

.items a {
	color:#FFF;
}

/* the action buttons above the scrollable */
#actions {
	width: 600px;
	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;
}