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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:30px;
}

.books{
	height:150px;
	width:320px;	
}

.testimonials-scrollable{
	height:200px;
	width:250px;
	display:block;
	padding-top:40px;
	color:#fff;
	font-size:12px;
	line-height:17px;
	vertical-align:middle;	
}

.left-red{
	display:block;
	width:11px;
	height:19px;
	background:url(/assets/images/scrollable/left-red.gif) 0px 0px no-repeat;
	float:left;	
	cursor:pointer;
	margin:55px 20px 0px 15px;
}

.left-red:hover{
	background-position:0px -19px;	
}

.right-red{
	display:block;
	width:11px;
	height:19px;
	background:url(/assets/images/scrollable/right-red.gif) 0px 0px no-repeat;
	float:right;
	cursor:pointer;
	margin:55px 15px 0px 10px;
}

.right-red:hover{
	background-position:0px -19px;
}



.left-green{
	display:block;
	width:7px;
	height:12px;
	background:url(/assets/images/scrollable/left-green.gif) 0px 0px no-repeat;
	float:left;	
	cursor:pointer;
	margin:100px 20px 0px 35px;
}

.left-green:hover{
	background-position:0px -12px;	
}

.right-green{
	display:block;
	width:7px;
	height:12px;
	background:url(/assets/images/scrollable/right-green.gif) 0px 0px no-repeat;
	float:right;
	cursor:pointer;
	margin:100px 35px 0px 10px;
}

.right-green:hover{
	background-position:0px -12px;
}



/*
	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;
	width:400px;
}

.testimonial-items div{
	width:250px;	
}

.book-cover{
	padding:3px;
	background:#fff;	
}





/* single scrollable item */
/*
.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
*/

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



