/*  
    Feuille de style CSS - Section Solutions
    ----------------------------------------
    projet: 	SOLUPREST
    créé le: 	03-08-2009
	modifié le: 04-09-2009  
*/

#bandeau { background: url(../imgs/bandeauSolutions.jpg) no-repeat;}

/*--- Navigation secondaire ---*/
ul.subnav li { background: #FFC6A1 url(../imgs/limitSubnavSolutions.gif) right top repeat-y;}
ul.subnav li a:hover {color: #ff0000;}
ul.subnav li.here a {color: #ff0000;}

/*--- Titres ---*/
#contenu h3 { background: url(../imgs/bgTitreSolutions.gif) 0 0 no-repeat;}
#contenu h4 { color: #FF0000; clear: both;}
#contenu h5 { font-size: 11px; font-weight: bold; margin: 0 0 5px}

/*--- Liste des solutions ---*/
ul#liste-solutions {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul#liste-solutions li {
	margin: 0;
	padding: 0;
}
ul#liste-solutions li a {
	padding: 5px 0 5px 43px;
	margin: 0 13px 13px 0;
	display: block;
	text-decoration: none;
	width: 213px;
	float:  left;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px solid #ddd;
}
ul#liste-solutions li a:hover {
	border-color: #bbb;
}
ul#liste-solutions li a strong {
	color: #000;
	font-size: 12px;
}

/*--- Blocs partenaires ---*/
a.PartenaireSolution {
	border: 2px solid #FFC6A1;
	padding: 8px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	overflow: auto;
	margin: 0 10px 10px 0;
	display: block;
	text-decoration: none;
	background: url(../imgs/bg-boxpartenaire.jpg) repeat-x;
	cursor: pointer;
}
a.PartenaireSolution img {
	max-height: 30px;
}
a.PartenaireSolution:hover {
	background: #fff;
	border-color: #f0ad82;
}

/*--- Scroll logos partenaires (jQuery Tools) ---*/

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position: relative;
	overflow: hidden;	 	
	width: 525px;	
	height: 78px;	
	
	
	/* custom decorations */
	padding: 10px 0;	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px solid #ddd;
	background: #e5e5e5;			
}

/* 
	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:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align: center;
	width: 110px;
	height: 35px;
	padding: 20px 0;
	border:1px outset #ddd;
	background-color: #fff;
	margin-right: 20px;	
	-moz-border-radius:5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
div.scrollable div.items div:hover {
	border: 1px solid #ccc;
}

div.scrollable div.items div img {
	max-width: 100px;
	margin: 0 auto;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ddd;		
	background-color:#fff;
}


