
/* outmost wrapper element */
#scrollable {
	background:#ececec;
	padding:10px;
	width:600px;
	height:80px;
	clear: both;
	margin: 0 0 20px 0;
}

/* container for the scrollable items */
div.items {
	height:80px;	
	margin-left:8px;	
	float:left;
	width:528px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	/*width: 110px;*/
	margin-right:8px;
	font-size:50px;
	color:#ccc;
	line-height:66px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a img {
	padding-right: 0px;
}

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 {
	display:block;
	width:30px;
	height:30px;
	float:left;
	background-repeat:no-repeat;	
	margin:20px 0 0 0;
}

a.prev {
	background:url(../i/button-left.gif);		
}

a.prev:hover {
	background:url(../i/button-left-over.gif);		
}

a.next {
	background:url(../i/button-right.gif);		
}

a.next:hover {
	background:url(../i/button-right-over.gif);		
}


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


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

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

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

