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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:20px;
	height:20px;
	background:url(../pics/scroller/left.gif) no-repeat;
	float:left;
	margin:0 10px;
	background-position: 0 0;
	cursor:pointer;
	text-decoration: none!important;
}
/* mouseover state */
/*  a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0 -20px!important;
}  */

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../pics/scroller/right.gif);
	width: 20px;
	height: 20px;
	clear:right;	
	text-decoration: none!important;
}

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


/* position and dimensions of the navigator */
div.navi {
	margin-left:305px;
	width:200px;
	height:12px;
	clear: both;
	overflow:hidden;
	margin-bottom: 10px;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background-image:url(../pics/scroller/navigator.gif);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor:pointer;	
	text-decoration: none!important;
}

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

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 
/* root element for the whole scrollable setup */

.scrollcontainer a	{
	text-decoration: none!important;
	border-bottom: 0!important;
	}

.scrollcontainer	{
	float: left;
	width: 753px!important;
	background-color: #fff;
	overflow: hidden;
	/* clear: both; */
	}

img	{
	border: 0;
	}
div.scrollable { 
	position:relative;
	overflow:hidden;
	width: 670px;	 
	height:150px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	margin-left: 2px;
}
#thumbs img	{
	border:1px solid #bbb;
	width: 210px;
	height: 140px;
	}

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

/* single item */
#thumbs div {
	float:left;
	width:212px;
	height:167px;
	color:#fff;
	cursor:pointer;
	margin: 0 15px 0 0!important;
}

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

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