/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 635px; 
    height:90px; 
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
   /* border:1px inset #ccc; 
    background-color:#fff; */
}
#scroll {
	position:relative;
	height:200px;
	overflow:hidden;
	/*border:1px solid #ddd;*/
	width:625px;
	padding:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
 
#tools {
	width:9999em;
	position:absolute;
	height:200px;
}
 
.tool {
	float:left;
	width:655px;
	height:150px;
	background-repeat:no-repeat;
	background-position:0 -40px;
}
 
.details {
	background-color:#fff;
	color:#666;
	float:left;
	font-size:12px;
	margin:270px 0 0 0;
	padding:10px 60px;
	width:525px;
}
 
.demos {
	background-color:#fff;
	background-color:rgba(255, 255, 255, 0.8);
	border-left:1px solid #ddd;
	float:right;
	min-height:250px;
	padding:0 25px;
	width:372px;
}
 
.demos h2 {
	color:#065598;
	font-size:22px;
	display:block;
	padding:10px 0;
}
 
.demos a {
	color:#666;
	font-size:12px;
	text-decoration:none;
}
 
.demos p {
	margin:0 0 4px;
	/*background:transparent url(http://static.flowplayer.org/tools/img/bullet.png) no-repeat scroll 0 2px;*/
	padding:2px 0 1px 22px;
}
 


/* position and dimensions of the navigator */
.navi {
	position:relative;
	width:217px;
	height:20px;
	top:164px;
	left:500px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}
