/* container for the scrollable items */div.items {	height:148px;		margin:0 6px 0 0;	float:left;}/* single item */div.item  {	display:block;	float:left;	margin-right:8px;	width:130px;	height:148px;}div.item img {	border: 0px;}div.scrollName {	margin-top: 10px;	font-family: Arial, Verdana, sans-serif;	font-size: 9px;	text-decoration:none;	text-transform: uppercase;	text-align:center;	cursor:pointer;}div.scrollName a {	color: black;	text-decoration:none;}div.item a:hover {	color:#999;	}/* next / prev buttons */a.prev {	display:block;	width:25px;	height:40px;	float:left;	background-repeat:no-repeat;		margin:55px 0 0 5px;	cursor:pointer;}a.next {	display:block;	width:25px;	height:40px;	float:left;	background-repeat:no-repeat;		margin:55px 5px 0 0;	cursor:pointer;}/* navigator */div.navi {	position:relative;	top:15px;	left: 0px;	width:70px;	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;     } 	
