

.scrollable {
	position:relative;
	overflow:hidden;
	width:743px;
	height:248px;
	border:0px solid #ccc;
	border-left:1px solid #1a569c;
	border-right:1px solid #1a569c;
}

/*
	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;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	/*margin:0px 11px 20px 0px;*/
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
	cursor:pointer;
	margin-left:-1px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

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




/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}


/* position and dimensions of the navigator */ 
.navi{
	position:absolute;
	z-index:1000;
	width:530px;
	margin-top:251px;
	margin-left:208px;
	*margin-left:-537px;
	/*margin-left:328px;
	width:200px;
	height:20px;*/
}

/* items inside navigator */
.navi a{
	display:block;
	float:right;
	width:16px;
	height:15px;
	margin:3px;
	font-size:1px;
	/*background:url(../img/scrollable/arrow/navigator.png) 0 0 no-repeat;*/
	background:url('../images/bannerCircle.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;*/
}

