
/* outmost wrapper element */
#scrollable {
	padding: 0 9px;
	width:935px;
	height:270px;
	position: relative;
	z-index: 1;
}

/* container for the scrollable items */
div.items {
	height:250px;	
	float:left;
	width:925px !important;
	margin-left: 10px;
}



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

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:20px;
	height:235px;
	background-repeat:no-repeat;	
	margin:0;
}

a.prev {
	background: url(/images/scrollable/button-left.gif) left 235px;	
	position: absolute;
	left: 0;
	top: 0;	
}

a.prev:hover {
	background: url(/images/scrollable/button-left.gif) left top		
}

a.next {
	background: url(/images/scrollable/button-right.gif) left 235px;	
	position: absolute;
	right: 0;
	top: 0;			
}

a.next:hover {
	background: url(/images/scrollable/button-right.gif) left 0;			
}


/* navigator */
div.navi {
  position: absolute;
	top: 260px;
	left: 50%;
	height:0px;
}

div.naviWrap {
  clear: all;
  margin-left: auto;
  margin-right: auto;
}

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

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

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