/* @group Scrollable */

/* outmost wrapper element */
#scrollable {
	padding: 1px 1px;
	width: 470px;
	height: 125px;
}

/* container for the scrollable items */
div.items {
	height:102px;
	float:left;
	width:320px !important;
	margin: 0 40px;
}



/* single item */
div.items a {
	display: block;
	float: left;
	margin-right: 8px;
	width: 100px;
	height: 100px;
	cursor: pointer;
	border: 1px solid #E2E2E2;
}

div.items a:hover {
	border: 1px solid #999999;	
}

div.items a.active {
	border: 1px solid #999999;
}


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

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

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

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

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


/* navigator */
div.navi {
	width:70px;
	height:0px;
	margin: 0 auto;
	margin-top: 105px;
	!margin-top: 5px;
}


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

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

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

/* @end */
