/* root element for the whole scrollable setup */
div.hpscrollable {  
	position:relative;
	overflow:hidden;
	width: 974px;	 
	height:295px;
	clear:both;
	margin-bottom:5px;

}




/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
.thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
.hpthumbsDiv {
	overflow:hidden;
	float:left;
	width:974px;
	height:295px;
	cursor:auto;
	
}

.hpthumbsDiv img{width:974px;height:295px;}

.imageDiv {width:200px;height:200px;overflow:hidden;background-color:#fff;border-bottom:dotted 1px #ddd;text-align:center;}


/* style when mouse is over the item */
.thumbs div.hover {
	background-color:#EEE;	
}

/* style when element is active (clicked) */
.thumbs div.active {
	background-color:#fff;
	cursor:default;
}


/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}
