/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	height:120px;

	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 .l{
	float:left;
	margin:10px 0px 5px 5px;
}
.scrollable .img {
	background-color:#fff;
	height:85px;
	border:1px solid #ccc;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	width:126px;
	overflow:hidden;
}
.scrollable .ti{
	margin-top:5px;
	text-align:center;
}
.scrollable .ti a{
	text-decoration:none;
	color:#333333;
}
.scrollable .img img{padding:2px;}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}



/* prev, next, prevPage and nextPage buttons */
.scrollfs a.browse {
	background:url(/images/hori_large.gif) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin-top:35px;
}

/* right */
.scrollfs a.right 			{ background-position: 0 -30px; clear:right; margin-right: 0px;}
.scrollfs a.right:hover 	{ background-position:-30px -30px; }
.scrollfs a.right:active 	{ background-position:-60px -30px; } 


/* left */
.scrollfs a.left				{ margin-left: 0px; } 
.scrollfs a.left:hover  		{ background-position:-30px 0; }
.scrollfs a.left:active  	{ background-position:-60px 0; }


