
/* outmost wrapper element */
#scrollable {
	background-color:#000000;
	padding:10px 8px;
	width:600px;
	height:65px;
}

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

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:88px;
	height:66px;
	/*background:url(images/item.gif) 0 0 no-repeat;*/
	background-color: #000000;
	font-size:50px;
	color:#000000;
	line-height:66px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

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

div.items a.active {
	background-position:-174px 0;		
	color:#000000;
	cursor:default;
}


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

a.prev {
	background:url(images/btn_left_0.png);		
}

a.prev:hover {
	background:url(images/btn_left_1.png);		
}

a.next {
	background:url(images/btn_right_0.png);		
}

a.next:hover {
	background:url(images/btn_right_1.png);		
}


/* 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/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

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

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

