/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 707px;
	height: 108px;

	/* custom decorations */
	border:1px solid #e9e9e9;
	background: url(/default/scrollbg.jpg) repeat-x #fff;
	
	float: left;
}

/*
	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 .item {
	float:left;
	width:131px;
	margin:5px;
}


.scroll-nav{
	width: 10px;
	height: 10px;
	padding: 50px 10px;
	background-color: #e9e9e9;
	float: left;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;	
} 	




#tooltip { 
    display:none; 
    background:transparent url(http://flowplayer.org/tools/img/tooltip/black_arrow.png); 
    font-size:12px; 
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff;     
}

