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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 265px;
	height:180px;

	/* custom decorations */
	border:1px solid #ccc;
	background-color: #fff;
	
	text-align: left;
	
	
	
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius:5px;
	
	border: 1px solid #cccccc;
	margin-bottom: 20px;
}

/*
	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;
}

.items div {
	float:left;
	width:245px;
	padding: 10px;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* position and dimensions of the navigator */
.navi {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 80px;
	height:16px;
}


/* items inside navigator */
.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 0px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -10px;     
}
