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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:367px;
}

/*
	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;
}

.items div {
	float:left;
}

.items-left {
	padding: 173px 15px 0px 25px;
	width: 380px;
	float: left;
	text-align: right;
	background: url(../layout/feature-paperhanging.png) no-repeat top left;
}

.items-left p.quote {
	margin: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	font-style: italic;
}

.items-left p.name {
	margin: 0;
	padding-right: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 34px;
	color: #FFFFFF;
	font-style: italic;
}

.items-right {
	float: left;
}

/* single scrollable item */
.scrollable img {
	padding-right: 150px;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

