
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 455px;
	height:150px;
	/* custom decorations */
	/*border:1px solid #ccc;*/
	float:left;
}
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:455px;
}

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

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

.navBlock{
	display:inline-block;
	width:100%;
	text-align:center;
}
/* prev, next, prevPage and nextPage buttons */
.navBlock a.browse {
	display:block;
	width:40px;
	height:30px;
	
	margin:5px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
.navBlock a.right 				{float:left; background:url("books_next.gif") no-repeat; clear:right; margin-right: 0px;}

/* left */
.navBlock a.left				{float:left; background:url("books_prev.gif") no-repeat; margin-left: 170px; } 

/* disabled navigational button */
.navBlock a.disabled {
	visibility:hidden !important;		
} 	


