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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:11px;
	height:40px;
	background: url(../images/left.png) no-repeat;
	float: left;
	cursor:pointer;
	z-index: 100;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -40px;
	z-index: 100;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
	z-index: 100;
}



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


/* position and dimensions of the navigator */

div.navi {
	width:200x;
	height:20px;
	float: right;
	margin-top: 12px;
	margin-left: 400px;
	margin-right: 25px;
}


/* items inside navigator */
div.naviblank a {
	width:8px;
	height:8px;
	float:left;
	cursor:pointer;
	margin-top: 3px;
	margin-left: 3px;
	margin-right: 3px;
}

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

/* 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 */
div.scrollable {
	position:relative;
	width: 800px;
	height:440px;
	z-index: 100;
	padding-top: 15px;
	overflow: hidden;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	z-index: 200;
}

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

/* custom positioning for navigational links */
a.prev {
		margin-top: 150px;
	z-index: 500;
	margin-right: 13px;
}
a.next {
	margin-top: 115px;
	z-index: 500;
	margin-left: 10px;
}



/* single item */
#thumbs div {
	float: left;
	width:800px;
	height:430px;
}
