﻿/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	
	margin-top:0px;
	_margin-top:-30px;
	*margin-top:-30px;
	margin-left:24px;
	_margin-left:0px;
	*margin-left:0px;

	position:relative;
	overflow:hidden;
	width: 835px;
	height:110px;
	_height:150px;
	*height:150px;

	
}

/*
	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 div {
	float:left;
	margin:20px 5px 20px 1px;
	padding:2px;
	cursor:pointer;
	width:130px;
	height:188px;
	border:none;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.scrollable img{
border:none;
margin-top:-24px;
_margin-top:0;
*margin-top:0;
}

/* active item */
.scrollable .active {
	border:none;
	z-index:9999;
	position:relative;
}



