
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 635px;
	height:120px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
#partenaire{
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:125px;
	height:36px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
#partenaire.hover {
	background-color:#DDD;	
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
/* use a semi-transparent image for the overlay */ 

/* overlay */

/* the overlayed element */
#overlay, #overlay1 {
	
	/* dimensions after the growing animation finishes  */
	width:600px;		
	background-image:url(../img/overlay/trans.gif);
	
	/* initially overlay is hidden */
	display:none;
	}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../img/overlay/close.png);
	position:absolute;
	right:-9px;
	top:-9px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index:10000;
}

/* default close button positioned on upper right corner for flash embed*/
#overlay1 div.close {
	background-image:url(../img/overlay/close.png);
	position:absolute;
	right:-29px;
	top:-29px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* black */
div.overlay.black {
	background:url(../img/overlay/transparent.png) no-repeat !important;
	color:#fff;
}

/* light */
#light {
	background:url(../img/overlay/light.png) no-repeat !important;
}

/* petrol */
div.overlay.petrol {
	background:url(../img/overlay/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}


#overlay ,#overlay1{ 
    background-color:white;
} 

#overlay1{ 
	/* some padding to layout nested elements nicely  */
	padding:2px;
 }
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.contentWrap { 
    height:150px; 
    overflow:auto;
    padding:55px;	
}


