/* root element for the whole scrollable setup */
img	{
	border: 0;
	}
div.scrollable {
	position: relative;
	float: right;
	z-index: 2;
	overflow: hidden;
	width: 410px;	 
	height: 285px;
	clear: both;
	margin: -15px -20px 0 25px;
}
/* position and dimensions of the navigator */
div.navi {
	position: absolute;
	left: 70px;
	bottom: 0px;
	height: 12px;
	clear: both;
	overflow:hidden;
	z-index: 1000;
}
/* items inside navigator */
div.navi a {
	width: 6px;
	height: 6px;
	float: left;
	margin: 3px;
	background-image: url(../images/navi.png);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor: pointer;	
}
/* mouseover state */
div.navi a:hover, div.navi:hover {
	background-position:0 -6px!important;      
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 -12px;     
} 

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:17px;
	height:30px;
	background:url(../images/arrow-left.png) no-repeat;
	position: absolute;
	z-index: 1000;
	background-position: 0 0;
	cursor:pointer;
	text-decoration: none!important;
}
a.prev, a.prevPage	{
	top: 135px;
	left: 0px;
	}
a.next,	 a.nextPage	{
	top: 135px;
	left: 385px;
	}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0 -30px!important;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
	/* filter: alpha(opacity=50);
    opacity: 0.5; */
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/arrow-right.png);
	width: 17px;
	height: 30px;
	clear:right;	
	text-decoration: none!important;
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	z-index: 1;
}
/* custome callouts for div inside */
#thumbs div {
	float:left;
	display: inline;
	position: relative;
	width: 390px;
	padding: 15px;
	height: 253px;
	cursor:pointer;
}
#thumbs img	{
	background: #fff;
	padding: 10px;
	border: 1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0px 1px 4px #333;
	-webkit-box-shadow: 0px 1px 4px #333;
	box-shadow: 0px 1px 4px #333;
	}