.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 165px;	 
	width: 220px;
}

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

/* single scrollable item */
.items div {
	margin:10px 0;
	padding:5px;
	font-size:12px;
	height:130px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:10px;
	height:75px;
	width:75px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	font-weight:bold;
}



.actions {
	width:200px;
	margin:0 0 0 0px;
}



.nextPage_easynews {
	float:right;
}	
/* position and dimensions of the navigator */
.navi_easynews {
	width:200px;
	height:20px;
	margin:0 0 0 0px;
}


/* items inside navigator */
.navi_easynews a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	cursor:pointer;
}

/* mouseover state */
.navi_easynews a:hover {
	background-position:0 -8px;     
}

/* active state (current page state) */
.navi_easynews a.active {
	background-position:0 -16px;     
}


