
.scrollable {
	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 {
	width:20000em;
	/*width:750px;*/
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	/*width:750px;*/
	width:370px;
	height:248px;
	padding:0px;
	text-align:center;
	/*background-color:#fff;*/
}

.items div.cloned{
	/*display:none;*/
}

.scrollable .active {
	border:0px solid #000;
	z-index:10;
	position:relative;
}



/* position and dimensions of the navigator */ 
.navi{
	position:absolute;
	z-index:1000;
	/*width:372px;*/
	width:364px;
	margin-top:251px;
	padding-left:8px;
	padding-bottom:0px;
	background-color:#18569c;
	/**margin-left:-737px;*/
	/*margin-left:328px;
	width:200px;
	height:20px;*/
}

/* items inside navigator */
.navi a{
	display:block;
	float:left;
	width:16px;
	height:15px;
	margin:3px;
	font-size:1px;
	/*background:url(../img/scrollable/arrow/navigator.png) 0 0 no-repeat;*/
	background:url('../images/bannerNum.jpg') 0 0 no-repeat;
	cursor:pointer;

}

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

/* active state (current page state) */
.navi a.active{
	/*background-position:0 -16px;*/
	background:url('../images/bannerNumActive.jpg') 0 0 no-repeat;
}
