/* root element for the whole scrollable setup */
img	{
	border: 0;
	}
div.scroller-bg	{
	width: 100%;	 
	height:315px;
	/* background-image: url(../images/bg-scroll.jpg); */
	background-repeat: no-repeat;
	position: relative;
	border: 1px solid #ddd;
	background-color: #EBE5E5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#EBE5E5), to(#ffffff));
	background-image: -webkit-linear-gradient(top, #EBE5E5, #ffffff);
	background-image:    -moz-linear-gradient(top, #EBE5E5, #ffffff);
	background-image:     -ms-linear-gradient(top, #EBE5E5, #ffffff);
	background-image:      -o-linear-gradient(top, #EBE5E5, #ffffff);
	background-image:         linear-gradient(top, #EBE5E5, #ffffff);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#EBE5E5', EndColorStr='#ffffff');
	box-shadow: 0px 2px 1px rgba(0,0,0,0.5);
	border-radius: 0px;
	margin: 0 0 20px 0;
}	
div.scrollable {  
	position:relative;
	float: left;
	display: inline;
	overflow:hidden;
	width: 635px;	 
	height:290px;
	margin-left: 30px;
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:15px;
	height:28px;
	cursor:pointer;
	background-position: top left;
}
a.prev, a.prevPage	{
	position: absolute;
	top: 150px; 
	left: 5px;
	background:url(../images/arrow-left.png) no-repeat;
	position: absolute;
	}
a.next, a.nextPage	{
	position: absolute;
	top: 150px; 
	right: 5px;
	background:url(../images/arrow-right.png) no-repeat;
	position: absolute;
	}
a.disabled {
	pointer-events: none;
	filter: alpha(opacity=50); 
    opacity: 0.5;	
	background-position: bottom left;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: bottom left;
	transition: none;
	}

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

/* position and dimensions of the navigator */
div.navi {
	margin: 10px 0 10px 43%;
	width:200px;
	height:12px;
	clear: both;
	overflow:hidden;
}
/* 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;	
	transition: 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 scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}
/* custome callouts for div inside */
#thumbs div {
	float:left;
	display: inline;
	width: 655px;
	padding: 10px;
	height:260px;
	/* cursor:pointer; */
}
/* #thumbs h1 {
	margin: 10px 0 5px 0;		
	font-family: arial;
	font-size:19px;
	color:#000;	
} */
#thumbs h2 {
	font-size:15px;
}
#thumbs p {
	margin: 0 0 7px 0;		
	font-size:13px;
	color:#666;	
}
#thumbs div img	{
	float: right;
	border: 1px solid #666;
	margin: 5px 0 10px 20px;
	}