@charset "utf-8";
/* CSS Document */

/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.select_scroll { 
     
    /* required settings */ 
	position:relative; 
    overflow:hidden;          
    width: 300px;     
    height:120px; 
	float:left;   
	margin-left:40px; 
} 
 
/*  
    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.select_scroll div.items {     
    /* this cannot be too large */ 
    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.select_scroll div.items div { 
    float:left; 
	width:150px;
	height:120px;
} 
 
/* you may want to setup some decorations to active item
div.items div.active { 
    border:1px inset #ccc;         
    background-color:#fff; 
}
 */ 
.prev_button {
	width:8px;
	height:37px;
	background:url(../../images/bottom/select_leftright.gif) no-repeat 0px 0px;
	float:left;
	cursor:pointer;
	margin-left:10px;
	opacity:0.6;
}
.next_button {
	width:8px;
	height:37px;
	background:url(../../images/bottom/select_leftright.gif) no-repeat -9px 0px;
	float:left;
	cursor:pointer;
	margin-left:20px;
	opacity:0.6;
}
.prev_button:hover, .next_button:hover {
	opacity:1.0;
}