
/* outmost wrapper element */
#scrollable {
	background-color:#ffffff;
	width:608px;	
	height:369px;
}

/* container for the scrollable items */
div.items {	
	height:369px;	
	margin-left:0px;
	float:left;
}

/* single item */
div.items span {
	display:block;
	float:left;	
	width:608px;
	height:369px;	
	font-size:50px;
	color:#ccc;	
	text-decoration:none;
	text-align:left;
	cursor:pointer;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {
	background-position:-174px 0;		
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	
	cursor:pointer;
	background-repeat:no-repeat;
	
}

a.prev {
		
}

a.prev:hover {
			
}

a.next {
		
}

a.next:hover {
			
}


/* navigator */
div.navi {
	position:relative;
	top:0px;	
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(img/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 -16px;     
} 	
