
/* this makes it possible to add next button beside scrollable */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 174px;	 
	height:117px;
	margin: 10px 10px 0 10px;
}

#thumbstxt{ height:20px; display:block; width:100%; position:absolute; margin-top:103px; text-align:center; font-size:11px}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	background-color: #ffffff;
	border: 0px solid #ffffff;
}

/* single item */
#thumbs div {
	float:left;
	width:174px;
	height:103px;
	cursor:pointer;
	margin: 0 0 0 0px;
	padding: 0;
	background-color: #ffffff;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#ffffff;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#ffffff;
	cursor:default;
}


div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/arrow_left.gif) no-repeat;
	float:left;
	margin:50px 0px 0 125px;
	cursor:pointer;
}
a.next {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/arrow_right.gif) no-repeat;
	float:left;
	margin:50px 0px 0 0px;
	cursor:pointer;
	
}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/* background-position:0px -18px; */
}

/* disabled navigational button */
a.disabled {
	opacity:.60;
	filter: alpha(opacity=60);
}

/* next button uses another background image */
a.next, a.nextPage {
	clear:right;	
}


