
/* outmost wrapper element */
#scrollable {
	padding:10px 8px;
}

/* container for the scrollable items */
div.items {
	padding-top:5px;
	height:38px;	
	margin-left:8px;	
	float:left;
	width:510px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	padding:3px 1px 3.5px 1px;
	width:93px;
	height:38px;
	font-size:20px;
	color:#ccc;
	line-height:38px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {
	background-position:-154px 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:7px 0 0 0;
}

a.prev {
	background:url(../images/scroll/button-left.gif);		
}

a.prev:hover {
	background:url(../images/scroll/button-left-over.gif);		
}

a.next {
	background:url(../images/scroll/button-right.gif);		
}

a.next:hover {
	background:url(../images/scroll/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(../images/scroll/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 -16px;     
} 	
