/**
 * HoverScroll Style Sheet
 *
 * @author RasCarlito <carl.ogren@gmail.com>
 * @version 0.3.0
 * @revision 8
 */

/* Main container */
div.hoverscroll {
	position: relative;
}

/* List container */
div.hoverscroll div.listcontainer {
	overflow:hidden; 	 
	height:128px;	
}

/* Actual list containing items */
div.hoverscroll ul.list {
	list-style:none;
}

/* Items contained in the list */
div.hoverscroll ul.list li.item {
	display:block; 	
}

/* Arrows */
div.hoverscroll div.arrow {
	position:absolute;
	float:none; 
}

div.hoverscroll div.arrow.top,
div.hoverscroll div.arrow.bottom {
	left:0;
	width:100%;
	height:7px;
	overflow:hidden; 
}

div.hoverscroll div.arrow.top {	
	top:-8px; 
	background: url('../images/twitter_t_b.png') no-repeat center 0;	
}

div.hoverscroll div.arrow.bottom { 
	top:151px; 	
	background: url('../images/twitter_t_b.png') no-repeat center -8px;
	
	
}


