/* outmost wrapper element, containing all elements  */
#scrollable {
	padding:10px 8px;
	width:900px;
	height:65px;
	margin-top:0px;
	-moz-border-radius:7px;
}

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

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:88px;
	height:66px;
	line-height:66px;
	text-decoration:none;
	text-align:left;
	cursor:pointer;
	background-repeat: no-repeat;
	background-position: 0 0;
}

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:18px;
	height:18px;
	float:left;
	margin:22px 0 0 0;
	cursor:pointer;
	background-image: url(im/left.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

a.next {
	background-image:url(im/right.png)
}

a.prev:hover {
	background-position:0 -18px;		
}

a.next:hover {
	background-position:0 -18px;		
}


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


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

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

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