/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 360px;	 
	width: 980px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	/*border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;*/
}


/* the action buttons above the scrollable */
#actions {
	width:240px;
	/*margin:0 0 10px 0;	*/
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#ffffff;
	text-decoration:underline;
}

#actions a:hover {
	text-decoration:underline;
	color:#666666;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	



/* position and dimensions of the navigator */ 
.navi { 
    /*margin-left:328px; */
    width:200px; 
    height:20px; 
} 
 
 
/* items inside navigator */ 
.navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(images/template/titulo-projecte.gif) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
} 
 
/* mouseover state */ 
.navi a:hover { 
    background-position:0 -8px;       
} 
 
/* active state (current page state) */ 
.navi a.active { 
    background-position:0 -16px;      
}