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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 510px;
	height:94px;

	/* custom decorations */
}

/*
	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:0 6px;
	background-color:#fff;
	cursor:pointer;
	width:90px;
	height:90px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

div.vertical {      
	/* required settings */ 
	position:relative;     
	overflow:hidden;      
	/* vertical scrollers have typically larger height than width */    
	height: 165px;
	width: 170px; 
}
/* root element for scrollable items */ 
div.vertical div.items {     
	position:absolute;      
	/* this time we have very large space for the height */     
	height:20000em; 
}
div.vertical img{
	padding: 5px;
	text-align:center;
	margin:auto; 
}

#tooltip {     
	display:none;     
	background:transparent url(../img/tip.png);     
	font-size:11px;
	height:70px;     
	width:160px;     
	padding:25px;     
	color:#fff;     
}

/* active item */
.scrollable .active {
	/*border:2px solid #6caddf;*/
	z-index:9999;
	position:relative;
}





