
/* outmost wrapper element */
#scrollable {
	background-color:#efefef;
	border:1px solid #ddd;
	padding: 10px 8px;
	width: 500px;
	height: 80px;
	margin: 5px 0 0 20px;
	
}

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


/* single item */
div.items a {
	display: block;
	float: left;
	margin-right: 8px;
	width: 110px;
	color: #036;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	font-size: 90%;
}
	
div.items img { border: solid 1px #000; }	

div.items img:hover { border: solid 1px #fff; }

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

div.items a.active {
	float: left;
	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: 15px 0 0 0;
}

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

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

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

a.next:hover {
	background:url(../img/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(../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;     
} 	
