
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
}

/*
	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;
	width:890px;
	height:144px;
	overflow:hidden;
	border:none;
}

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

/* Navigation plugin css */
/* position and dimensions of the navigator */
.navi {
	height:10px;
	position:absolute;
	bottom:9px;
	right:0;
}


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

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

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



