/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:442px;
	height:275px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* single scrollable item */
.scrollable .items li {
	float:left;
	margin:0;
	cursor:pointer;
	margin-right: 20px;
	height: 243px;
}

.scrollable .items li img {
	margin: 0;
	padding: 0;
}

.scrollable .items li .excerpt {
	width: 442px;
	background: #000;
	padding: 4px 10px;
	margin: 0;
	position: relative;
	top: 0;
	left: 0;
	z-index: 99999;
	visibility: hidden;
}

.scrollable .items li .excerpt h4, .scrollable .items li .excerpt p {
	color: #ffffff;
}

.scrollable .items li .excerpt p {
	margin: 0;
}

.slideshow {
	clear: both;
	float: left;
}

.slideshow .prevPage {
	float: left;
	cursor: pointer;
	display: none;
}

.slideshow .nextPage {
	float: right;
	cursor: pointer;
	display: none;
}



