/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	/* position vert placement of scroller with first # */
	margin:40px 0px 0px 0px;
	overflow:hidden;
	/*overflow x & y settings for safari compatibility */
	overflow-x: hidden;
	overflow-y: hidden;
	/* set bg size of scroller. This determines how many thumbs are visible */
	/* width: 258px for 3 70px wide thumbs visible - width: 278px for 5 thumbs -  width: 220px for 4 thumbs*/
	width: 250px;
	height:48px;

	/* custom decorations for scroller bg */
	border:1px solid #fff;
	background:url(../images/scroller/scroller-bg.png) repeat-x;
}

/*
	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 {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:40px;
	height:40px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
*/


.scrollable a { 
 /* display:block; */
 	float:left; 
	decoration: none;
	/* set space between thumbs */
	margin:0px 4px 0px 4px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	 /* set width and height of thumbs */
	width:70px;
	height:40px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;

} 

/* remove link borders from imgs in Firefox */
.scrollable a img { 
border: none; 
}


/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

