
/* outmost wrapper element */
#scrollable {
	background-color:#ffffff;
	border:0px solid #ddd;
	padding:10px 10px 10px 20px;
	width:490px;
	height:100px;
	float: left;
}

#scrollable img {
	border: 1px solid #cccccc;
}
/* container for the scrollable items */
#scrollable div.items {
	height:100px;	
	margin-left:0px;
	float:left;
}

/* single item */
#scrollable div.items a {
	display:block;
	float:left;
	margin-right:5px;
	width:100px;
	height:100px;
	/*background:url(../images/item.gif) 0 0 no-repeat;*/
	border: 1px #cccccc;
	text-align:center;
	cursor:pointer;
	font-family: arial; font-size:11px; font-weight: normal; color: #336699; text-decoration: none;
}

#scrollable div.items a:hover {
	font-family: arial; font-size:11px; font-weight: normal; color: #336699; text-decoration: none;
}

#scrollable div.items a.active {
	background-position:-174px 0;		
	font-family: arial; font-size:11px; font-weight: normal; color: #336699; text-decoration: none;
	cursor:default;
}



/* prev, next, prevPage and nextPage buttons */
#scrollable a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/left.png) no-repeat;
	float:left;
	margin:24px 6px;
	cursor:pointer;
}

/* mouseover state */
#scrollable a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
#scrollable a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
#scrollable a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;	
}


/* navigator */
#scrollable div.navi {
	position:relative;
	top:-10px;
	left:250px;
	margin-left:-50px;
	width:100px;
	height:0px;
}


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

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

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

