/* root element for scrollable */ 
div.scrollable-connections {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width */     
    height: 110px;      
    width: 280px;  
} 
 
	/* root element for scrollable items */ 
	div.scrollable-connections div.items {     
		position:absolute; 
		 
		/* this time we have very large space for height */     
		height:20000em;     
	}
	
		/* custom positioning for navigational links */
		div.account-connections a.prevPage {
			background:transparent url(http://media.miamiherald.com/static/multimedia/news/pedropan/images/arrow/up.png) no-repeat scroll 0 0;
			cursor:pointer;
			display:block;
			float:right;
			height:18px;
			width:18px;
		}
		
		div.account-connections a.nextPage {
			background:transparent url(http://media.miamiherald.com/static/multimedia/news/pedropan/images/arrow/down.png) no-repeat scroll 0 0;
			cursor:pointer;
			display:block;
			float:right;
			height:18px;
			width:18px;
		}
		div.account-connections a.prevPage:hover, div.account-connections a.nextPage:hover {
			background-position:0 -18px;
		}
		
