
/* outmost wrapper element, containing all elements  */
#scrollable {
	margin-right:10px;

}

/* container for the scrollable items */
div.items {
	height:340px;	
	margin-left:8px;
	float:left;
	width:640px !important;

}

div.item {
	display:block;
	height:340px;
	width:205px;
	float:left;
	margin-right:10px;
/*	background: #aaa; */
}

/* single item */
div.items a {
	display:block;
	float:left;
	text-align:center;
	cursor:pointer;
}


div.items a:hover {

}

div.items a.active {
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:28px;
	height:28px;
	float:right;	
	
}

a.next {
	
}


a.prev:hover {
	background-position:-96px 0;		
}

a.next:hover {
	background-position:-96px 0;		
}

a.prev:active {
	background-position:-64px 0;		
}

a.next:active {
	background-position:-64px 0;		
}


/* navigator */
div.navi {
	position:relative;
	top:0px;
	left:310px;
/*	background: #ccc; */
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/1.png) 0 -16px no-repeat;     
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 0px;     
} 	
