
/* 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: 17px;
	background: url(/images/left.gif) no-repeat;
	float: left;
	display: inline;
	margin: 0 10px;
	background-position: 0 0;
	cursor: pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0 -17px!important;
}

/* disabled navigational button */
a.disabled {
	visibility: hidden!important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image: url(/images/right.gif);
	width: 20px;
	height: 17px;
	clear: right;	
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left: 320px;
	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(/images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor: pointer;	
	text-decoration: none;
}

/* 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	{
	float: left;
	display: inline;
	width: 683px;
	background-color: #a1bca9;
}

img	{
	border: 0;
	}
div.scrollable { 
	position: relative;
	overflow: hidden;
	width: 600px;	 
	height: 143px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	margin-left: 2px;
}
#thumbs div img	{
	width: 139px;
	height: 80px;
	display: block;
	}
#thumbs div .description	{
	width: 129px;
	display: block;
	padding: 5px;
	font-size: 10px!important;
	color: #fff;
	font-family: 'trebuchet ms', verdana,arial;
	}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top: 50px;	
}

/* single item */
#thumbs div {
	float: left;
	display: inline;
	width: 139px;
	height: 143px;
	color: #fff;
	cursor: pointer;
	margin: 0 5px;
	background-color: #000;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color: #444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color: #d1601e;
	cursor: default;
}
#thumbs h3 {
	margin: 0;		
	font-family: 'trebuchet ms', verdana,arial;
	font-size: 12px;
	color: #fff;
}