/***** Style Scroll Fiche ouvrier ******/

/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable { 
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 700px;     
    height:107px;   
	padding: 0px;	
	margin: 0 0 0 85px;	
} 
 
/*  
    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:10000px;
    padding:0px;    
	height:107px;	
    position:absolute;  
    clear:both;       
} 
 
/*  
    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 { 
    float:left; 
	width: 116px;
	height: 86px;
	margin: 8px 22px 8px 0;
	padding: 0px;
	background:white;
	border: 3px solid #000;	
	-moz-border-radius:5px;	
} 
 
/* you may want to setup some decorations to active item */ 
div.scrollable div.items div.active { 
    border:1px inset #ccc;         
    background-color:#fff; 
}

/* Other changes */
div.arrow_left{
	float: left;
	margin: -80px 0 0 0;
	padding: 0 0 0 25px;
}

div.arrow_right{
	float: right;
	margin: -80px 0 0 0;
	padding: 0 25px 0 0;
}

div.disabled {
	display:none;	
}

#references_ouvriers {
	height: 107px;
	width: 875px;
	margin: 0 0 0 0px;
	padding: 0;
	overflow: hidden;
}

#references_ouvriers div.scrollable div.items span{
	display: block;
	padding: 22px 0 0 0;
	background: #454545;
	color: #99cc33;
	text-align: center;
	position:relative;	
	width:100%;
	height:64px;
	opacity:0.8;
	filter:alpha(opacity=0.8*100);
}

