@charset "utf-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 685px;
	height:110px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:4px 0px 4px;
	background-color:#fff;
	padding:2px;

	border:1px solid #ccc;
	cursor:pointer;
	width:164px;
	height:101px;
	
}
/* remove margins from the image */
.items img {
	margin:0;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

 
/* for the jquery.tools scrollable slide show*/


/* scrollable should not disable gallery navigation */
#gallery .disabled {
	visibility:visible !important;
}
 
#gallery .inactive {
	visibility:hidden !important;
}


  /* make img tags our floating scrollable items */ 
.items a {     
	display:block;     
	float:left;     
	margin-left:1px ;
	margin-top:2px;
}   

/* tooltip styling */
#tooltip {
		/*display:none;
*/	background:url(../../js/jquerytools1.1.1/gray_arrow.png) bottom;
	font-size:12px;
	height:82px;
	width:209px;
	padding:5px 5px;
	color:#eef;
}
 


