/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	margin:0 0px;
	height:190px;
	padding:0;
}

.featuredwork .scrollable{
	height:auto;
	min-height:205px;
	padding-top:0px;
}

/*
	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;
}

/* single scrollable item */
.scrollable .pane{
	float:left;
	margin:0px 0px 0px 0px;
	padding:2px 0px;
	cursor:pointer;
	text-align:left;
	width:234px;
	min-height:170px;
}
.scrollable .items .pane .img-holder {
	width: 120px;
	overflow: hidden;
	float: left;
	display: inline;
	position: relative;
	top:7px;
}
.img-holder img {
	border: 3px solid white;
	float:left;
	height:auto;
	width:107px;
}
.scrollable .items .pane .desc {
	font-size: 12px;
	color: #040d38;
	display: block;
	font-size:12px;
	font-weight:bold;
	margin-right:10px;
	margin-left:115px;
	position:relative;
	top:4px;
	height:153px;
}
.scrollable .items .pane .desc a{
	color: #fff;
	text-decoration:none;
}
.scrollable .items .pane .desc:hover{
	color: #fff;
	text-decoration:underline;
}
.featuredwork .scrollable .pane{
	height:auto;
	min-height:120px;
}

#rightbar .pager {
	border-top: #afd0e6 1px solid;
	padding: 10px 13px 9px 13px;
	font-size: 12px;
	height: 18px;
	overflow: hidden;
}
.scrollable .items .pane .more {
	background-image: url(../images/more-bg.gif);
	height: 23px;
	line-height: 23px;
	font-size: 12px;
	font-weight:bold;
	color: #fff;
	border: 2px solid #fff;
	bottom: 0;
	right: 0;
	padding: 4px 14px;
	text-decoration: none;
}
.scrollable .items .pane .more:hover {

	text-decoration: underline;
}
#rightbar .pager .holder {
	text-align: center;
	width: 94px !important;
	overflow: hidden;
	float: left;
}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

.booktext {
 color: #fff; 
 font-weight:bold;
 text-decoration:none;
 font-size:12px;
 position: relative;
 left: 266px;
 top:10px;
}
.booktext a{
 text-decoration:none;
}
.booktext:hover{
 text-decoration:underline;
}