a.browse {

}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
    background:url(/static/images/jquery.tools/scrollable/h300.png) repeat-x;
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 90%;
	height:75px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .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.
*/
.items div {

	width:90%;
}

a.browse {
	width:28px;
	height:30px;
	float:left;
	margin:0px 0px;
}
a.left {
    background-position: 0px -70px;
	width:35px;
	height:70px;
	float:left;
	margin: 20px 7px 0 0;
}
a.right {
	width:35px;
	height:70px;
	float:right;
	margin: 2px 0px;
}

/* single scrollable item */
.scrollable img {
    cursor: pointer;
	margin: 0;
    height: 70px;
	width: auto;
}
