div.gallery {
	background:#f2f2e6;
	border:1px solid #ece8b4;
	height: 150px;
	padding-left: 13px;
}

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 480px;	 
	height:150px;
	float:left;
	padding-top:15px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
div.thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	
}

/* single item */
div.thumbs div {
	float:left;
	width:160px;
	height:120px;
	background:#f2f2e6;
	color:#fff;
	border-left:2px solid #f2f2e6;
	cursor:pointer;
}

/* style when mouse is over the item */
div.thumbs div.hover {
	background-color:#444;	
}


/* style when element is active (clicked) */
div.thumbs div.active {
	background-color:#4a3365;
	cursor:default;
}

div.thumbs h3, div.thumbs p, div.thumbs span {
	margin:13px;		
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#fff;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:29px;
	height:31px;
	background:url("/chancellor/common/images/previous.jpg") no-repeat;
	float: left;
	margin: 0px 5px;
	cursor: pointer;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:55px;	
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url("/chancellor/common/images/next.jpg");
	clear: right;	
}

/* disabled navigational button 
a.disabled {
	visibility:hidden !important;		
}
*/
