
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 845px;
	height:240px;

	/* custom decorations */
	border:1px solid #424242;
	background:url(/images/h300.png) repeat-x;
	
		-moz-border-radius:10px;
	-webkit-border-radius:10px;

}

/*
	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:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:40px 10px 60px 48px;
	background-color:#eeeeee;
	padding:2px;
	border:1px solid #000;
	cursor:pointer;
	width:202px;
	height:150px;
	
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

/* active item */
.scrollable .active {
	border:2px solid #000; 
	z-index: 9999;
	position:relative;
}


 
/* make A tags our floating scrollable items */ 
.items a { 
    display:block; 
    float:left;  
}  
 
 
/* tooltip styling */ 
#tooltip { 
    display:none; 
    background:url(/images/balloon.b.png);  
	margin-left: 19px;
	margin-top: 55px;
    font-size:10px; 
    line-height:14px; 
    height:105px; 
    width:172px; 
    padding:15px; 
    color:#fff;  
}

