/* outmost wrapper element */
#scrollable {
width:902px;

}

/* container for the scrollable items */
div.items {
	height:203px;	
	margin-left:15px;	
	margin-right:15px;
	float:left;
	width:801px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:18px;
	width:255px;
	height:203px;
	background: url(/images/gallery-bg.jpg) left top no-repeat;
	font-size:50px;
	color:#ccc;
	line-height:150px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

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

/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:35px;
	height:35px;
	float:left;
	background-repeat:no-repeat;	
	margin:95px 0 0 0;
	cursor:pointer;
}

a.prev {
	background: url(/images/left-b.jpg);		
}



a.next {
	background: url(/images/right-b.jpg);		
}



/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:210px;
	margin-left:-50px;
	width:85px;
	height:0px;
}


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

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

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

