/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
 	/* vertical scrollers have typically larger height than width */	
	height: 280px;	 
 	border-top:1px solid #ddd;	
}


.bmw_newsLinks {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	left:10px;
	/* vertical scrollers have typically larger height than width */	
	height: 280px;	 
	width: 550px;
	border-top:1px solid #ddd;	
}

html>body .bmw_newsLinks {  
	
 
	height: 280px;	 
	 
}





/* 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:0px 0;
	padding:10px;
	font-size:12px;
	min-height:80px;
}

/* elements inside single item */
.items img {
	 
 }

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {clear:both;
	width:550px;
	margin: 0px 0 10px 0;	padding-top: 0px;
}

#actions a {padding-left:10px;
	font-size:11px;		
	cursor:pointer;
	color:#fff;
}

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.prevPage {float:left;}

html>body .prevPage {float:none;}
