/* outmost wrapper element */
#scrollable {
	/*border:1px solid #ddd;*/
	width:741px;
}

#scrollable ul{
	padding:0;
	margin:0;
}

/* container for the scrollable items */
.items {
	background:			#f6f6f6;
	height:66px;
	width:670px !important;
	float:left;}




/* single item */

div.items li{
height: 50px;}

div.items li a {
	display:block;
	/*background-color:#FF0000;*/
	background-color:#006600;
	float:left;
	margin-right:8px;
	width:88px;
	height:66px;
	background:url(img/item.gif) 0 0 no-repeat;
	font-size:50px;
	color:#ccc;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items li a:hover {
	color:#999;	
}

div.items li 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:15px 0 0 0;
}

a.prev {
	background:url(img/button-left.gif);		
}

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;     
} 	
