﻿/* ******************************************************************************************** */
/* 5 SCROLLER ------------------------------------------------------------------------------- */
/* ******************************************************************************************** */

/* scroller "window" : set width, height (and clip) to match values sent to constructor */
div#wn 
{ 
    position: absolute; 
    top: 10px;
    height: 80px; 
    z-index: 1;
    overflow: hidden;
    /*clip:rect(0, 0px, 0px, 0);*/
}

div#cnt { position:absolute; z-index:1; } /* layer that scrolls */
        
/* scroller items 
   set width and height to match scroller "window" 
   Be sure to set height adequate for your content! */
div#cnt div.item 
{
	/*width: 100%; */
	height: 80px; 
}

div#wn1, div#wn2, div#wnItnOfferte, div#wnBvOfferte
{  
    /*width: 100%; */
	/*height: 200px; */
	/*margin-left: 8px;*/
	/*margin-right: 8px;   */
	position: relative;  
	z-index:1;
	overflow: hidden;        
}

div#cnt1
{
	position: absolute; 
	width: 100%;
	z-index: 1; 
} 

div#cnt2
{
	position: absolute; 
	width: 100%;
	z-index: 1;
} 

div#cntItnOfferte, div#cntBvOfferte
{
	position: absolute; 
	width: 100%;
	z-index: 1;
} 

div#cnt1 div.item1 
{
	width: 100%;
}

div#cnt2 div.item1 
{
	width: 100%;
}

div#cntItnOfferte div.itemItnOfferte 
{
	width: 100%;
}

div#cntBvOfferte div.itemBvOfferte 
{
	width: 100%;
}