/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable {      
    /* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 758px;     
	margin:10px;     
} 
 
/*  
    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 {    
    width:20000em;     
	position:relative;
	left:0;       
} 

/*
div.scrollable div.items {     
    
    width:20000em;     
    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.item { 
	width:758px;
} 
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
    border:1px inset #ccc;         
    background-color:#fff; 
}

#scroller_container{
	padding:0;
	width:778px;
}
p.scroll_control{
	border-top:1px solid #cccccc;
	padding:10px;
	height:14px;
}
p.scroll_control a.prev{
	color:#003399;
	float:left;
	cursor:pointer;
}
p.scroll_control a.next{
	color:#003399;
	float:right;
	cursor:pointer;
}


div.scroll_container{
	width:340px;
	position: relative;
	overflow: hidden;
}

div.scroll_container div.scroll_items {    
	position:relative;
	left:0;       
}

div.scroll_container div.scroll_items div.scroll_item { 
	width:340px;
	float:left;
}

a.scroll_prev{
	float:left;
	text-decoration:none;
	color:#E2C289;
}
a.scroll_next{
	float:right;
	text-decoration:none;
	color:#E2C289;
}


