/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
#slider h3 {
	text-align:left;
	margin: 10px 0 0 0;	
	font-size: 1.1em;
}
div.scrollable { 
   	/* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 297px;     
    height:160px;
	background-color:#c4df9b;    
} 
 
/*  
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items {     
    /* this cannot be too large */ 
    width:297px;     
    position:absolute;
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div {
	background-color:#c4df9b; 
    float:left; 
	padding-left:10px;
	padding-right:10px;
	min-height:160px;
	_height:160px;
}
div.scrollable div.items div h3 a {
	color:#ed1c24;
	text-decoration:none;
}
div.scrollable div.items div h3 a:hover {
	text-decoration:underline;
}
div.scrollable div.items div p{  
	margin:0;
	text-align:left;
}
	
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 

}
a.prev, a.next {
	cursor:pointer;  
}

a.prev, a.prev:hover {
	display:block;
	width:297px;
	height:20px;
	background-image:url(../images/scroll/scroll_prev2.gif);
	background-position:top left;
	background-repeat:no-repeat;
}
a.next, a.next:hover  {
	display:block;
	width:297px;
	height:20px;
	background-image:url(../images/scroll/scroll_next2.gif);
	background-position:left top ;
	background-repeat:no-repeat;
}
a.prev:hover, a.next:hover {
	background-position:bottom;
}