
/* outmost wrapper element */
#scrollable {
	width:800px;
	height:190px;
	float: left;
	padding: 0;
	margin: 0;
	margin-bottom:30px;
}

/* container for the scrollable items */
div.items {
	height:180px;	
	margin-left:8px;	
	float:left;
	width:825px !important;
	overflow:hidden;
}


/* single item */
div.items div.port_items {
	position: static; 
	float: left;  
	padding: 3px 5px; 
	margin: 5px; 
	width: auto;
	height:auto;
	cursor:pointer;
}

div.items div.port_items img {
	border:none;
	}

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:30px;
	height:30px;
	float:left;
	background-repeat:no-repeat;	
	margin:65px 0 0 0;
	cursor: pointer;
}

a.prev {
	background: url(/images/button-left.png)	
}

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

a.next {
	background:url(/images/button-right.png);		
}

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


/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:495px;
	margin-left:-50px;
	width:50px;
	height:0px;
}


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

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

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