/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
	text-align: left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display: block;
	width:30px;
	height:30px;
	background:url(../images/back_up.png) no-repeat;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.prevPage:hover {
	background:url(../images/back_ov.png) no-repeat;	
}

/* mouseover state */
a.next:hover, a.nextPage:hover {
	background:url(../images/forward_ov.png) no-repeat;		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/forward_up.png);
	clear: right;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:275px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	cursor:pointer;	
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;     
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;    
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
}

/***************** New Styles ******************/ 	

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow: hidden;
	width: 450px;	 
	height:77px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:30px;	
}

/* single item */
#thumbs div {
	border:1px solid #222;
	text-align: center;
	float:left;
	width:110px;
	height:75px;
	background:#000;
	color:#fff;
	cursor:default;
}

#thumbs a
{
	text-decoration: none;
}

/* style when mouse is over the item */
#thumbs div.hover {

}

/* style when element is active (clicked) */
#thumbs div.active {
	border:#fffff0 1px solid;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;
}

#thumbs h3 em {
	font-style:normal;
}