/* root element for the whole scrollable setup */
img	{
	border: 0;
	}
div.scrollable {
	position: relative;
	float: left;
	overflow: hidden;
	width: 738px;	 
	height: 250px;
	clear: both;
	border: 1px solid #ccc;
	/* background: url(shell/bg-scroller.gif) no-repeat; */
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: 0 0 3px #1D6B0D;
	-webkit-box-shadow: 0 0 5px #1D6B0D;	
	box-shadow: 0 0 5px #1D6B0D;
	background: -moz-linear-gradient(top, #ddd, #fff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#fff));
}
/* position and dimensions of the navigator */
div.navi {
	position: absolute;
	right: 10px;
	bottom: 10px;
	height: 15px;
	clear: both;
	overflow:hidden;
	z-index: 1000;
}
/* items inside navigator */
div.navi a {
	width: 12px;
	height: 14px;
	float: left;
	margin: 3px 2px;
	background-image: url(shell/navigator-ovals.gif);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor: pointer;	
}
/* mouseover state */
div.navi a:hover {
	background-position:0 -12px;      
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 -24px;     
} 
/* 
	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;
	position: relative;
	width: 720px;
	padding: 10px;
	height: 230px;
	
	/* cursor:pointer; */
}
#thumbs h3 {
	margin: 10px 0;		
	font-size: 17px;
	width: 480px;
	
}
#thumbs p {
	margin: 0 0 10px 0px;		
	font-size: 13px;
	width: 460px;
}
#thumbs img.scroll	{
	position: absolute;
	width: 200px;
	height: 200px;
	top: 0; 
	right: 20px;
	}
#thumbs .button a {  
	text-decoration: none;  
	float: left;
	position: absolute;
	left: 400px;
	bottom: 36px;
	height: 27px;  
	cursor: pointer;  
	font: 800 12px/24px arial, Helvetica, sans-serif; 
	background: url(shell/bg-btn.gif) no-repeat top right;  
	color: #fff!important;
 	} 
#thumbs .button a span {  
	float:left;
	height: 27px;
	margin: 0 10px 0 -10px;  
	padding: 0 8px 0 18px;  
	position: relative;
	background: url(shell/bg-btn.gif) no-repeat top left;
 	}  
#thumbs .button a:hover {  
	background-position: bottom right; 
 	}
#thumbs .button  a:hover span {  
	color: #fff!important; 
	background-position: bottom left; 
 	}	

/* next and previous */
	
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:20px;
	height:20px;
	background:url(shell/left.gif) no-repeat;
	position: absolute;
	z-index: 1000;
	background-position: 0 0;
	cursor:pointer;
	text-decoration: none!important;
}
a.prev, a.prevPage	{
	top: 246px;
	left: 25px;
	}
a.next,	 a.nextPage	{
	top: 246px;
	left: 48px;
	}
.pause	{
	position: absolute; 
	right: 44px; 
	top: 252px; 
	background: none; 
	border: none; 
	width: 20px;
	cursor: pointer;
	}



/* 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(shell/right.gif);
	width: 20px;
	height: 20px;
	clear:right;	
	text-decoration: none!important;
}
