@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: 662px;
	height:100px;

	/* custom decorations */
	margin-top:5px;
	margin-bottom:15px;
	border:1px solid #ccc;
	background:url(http://static.flowplayer.org/img/global/gradient/h300.png) repeat-x;
	background-color:#DEE9DF;
}

/*
	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 {
	border:none;
	width:75px;
	height:75px;
	}
.scrollable a {
	float:left;
	margin:8px 3px 8px 8px;
	background-color:#DEE9DF;
	padding:3px;
	border:1px solid #ccc;
	width:75px;
	height:75px;
	list-style:none;
	display:inline;
	border-radius:4px;
	text-decoration:none;
	text-align:center;
}

/* active item */
div.scrollable a:hover { background-color:#4e8383; }
div.scrollable a:hover {
	border:1px solid #336666;
	z-index:9999;
	position:relative;
}