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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 680px;
	height:200px;
}

/*
	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 .itemcont img { display:block;}
.scrollable .itemcont {
	text-align:center;
	font-family:Georgia;
	float:left;
	margin:20px 10px 20px 21px;
	background-color:#fff;
	padding:2px 2px 7px 2px;
	border:1px solid #fff;
	cursor:pointer;
	width:95px;
}

/* active item */
.scrollable .active {
	border:1px solid #fff;
	z-index:9999;
	position:relative;
}


.browse { cursor:pointer; float:left; font-size:1.6em; font-family:Georgia; width:150px; margin:70px 0; text-align:center;}
/* disabled navigational button */
a.disabled, a.disabled:hover {
	color:#ccc;	
	cursor: default;	
} 	


