*{
	margin:0;
	padding:0;
}

body{
	background:#f7f7f7 url(../images/pattern.png) repeat top left;
	color:#000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
.content-blanc-interieur{
	background-color:#FFF;
	width:950px;
	min-height:800px;
	padding:40px;
	margin:0 auto 0 auto;
	}

#logo {
	background:url(../images/logo-solenate.jpg) repeat scroll center center transparent;
	width:355px;
	height:76px;
	 }

#logo a{
	display:block;
	background:url(../images/logo-solenate.jpg) repeat scroll center center transparent;
	width:355px;
	height:76px;
	
	 }




/*----------------------------
	CSS3 Animated Navigation
-----------------------------*/


.fancyNav{
	/* Affects the UL element */
	overflow: hidden;
	display: inline-block;
	margin-top:25px;
}

.fancyNav li{
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	
	background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	
	border-right: 1px solid rgba(9, 9, 9, 0.125);
	
	/* Adding a 1px inset highlight for a more polished efect: */
	
	box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-moz-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	
	position:relative;
	
	float: left;
	list-style: none;
}

.fancyNav li:after{

	/* This creates a pseudo element inslide each LI */	
	
	content:'.';
	text-indent:-9999px;
	overflow:hidden;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:1;
	opacity:0;
	
	/* Gradients! */
	
	background-image:-webkit-gradient(linear, left top, right top, from(rgba(168,168,168,0.5)),color-stop(0.5,rgba(168,168,168,0)), to(rgba(168,168,168,0.5)));
	background-image:-moz-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-o-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-ms-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	
	/* Creating borders with box-shadow. Useful, as they don't affect the size of the element. */
	
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	/* This will create a smooth transition for the opacity property */
	
	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
}

/* Treating the first LI and li:after elements separately */

.fancyNav li:first-child{
	border-radius: 4px 0 0 4px;
}

.fancyNav li:first-child:after,
.fancyNav li.selected:first-child:after{
	box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	border-radius:4px 0 0 4px;
}

.fancyNav li:last-child{
	border-radius: 0 4px 4px 0;
}

/* Treating the last LI and li:after elements separately */

.fancyNav li:last-child:after,
.fancyNav li.selected:last-child:after{
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	
	border-radius:0 4px 4px 0;
}

.fancyNav li:hover:after,
.fancyNav li.selected:after,
.fancyNav li:target:after{
	/* This property triggers the CSS3 transition */
	opacity:1;
}

.fancyNav:hover li.selected:after,
.fancyNav:hover li:target:after{
	/* Hides the targeted li when we are hovering on the UL */
	opacity:0;
}

.fancyNav li.selected:hover:after,
.fancyNav li:target:hover:after{
	opacity:1 !important;
}

/* Styling the anchor elements */

.fancyNav li a{
	color: #5d5d5d;
	display: inline-block;
	font: 17px/1 Arial, Helvetica, sans-serif;
	padding: 12px 26.7px 14px;
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}

.fancyNav a.homeIcon{
	background:url(../assets/img/home.png) no-repeat center center;
	display: block;
	overflow: hidden;
	padding-left: 12px;
	padding-right: 12px;
	text-indent: -9999px;
	width: 16px;
}

/*----------------------------
	TEXTES
-----------------------------*/

h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:25px;
	color:#445487;
	}

h2{
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#8ea3cf;
	}

h4{
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#666;
	font-weight:normal;
	line-height:25px;
	}
h5 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#666;
	font-weight:normal;
	line-height:25px;
	margin-left:40px;
	}	

.content-page-accueil{
	margin-top:20px;}

.content-texte-gauche{
	width: 350px;
	text-align:justify;
	float:left;}

.content-texte2{
	width: 400px;
	text-align:left;
	float:left;}

.content-texte3{
	width: 900px;
	text-align:left;
	float:left;}

.fond-bleu-accueil{
	background-image:url(../images/fond-bleu-accueil.jpg);
	float:right;
	width:556px;
	height:187px;
	margin-top:5px;
	margin-right:9px;
	}

.encart-gris img{
	
    float: right;
    height: 345px;
    margin-right: 10px;
    width: 490px;
	}

.texte-cadre-bleu{
	color:#FFF;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	margin:13px 20px 20px 310px;
	line-height:24px;
	}

.texte-cadre-bleu a{
	text-decoration:none;
	color:#FFF;
	}

.bouton-accueil-decouvrez{
	height:25px;
	width:156px;
	margin-left: 300px;
    margin-top: -11px;
	}

.bouton-accueil-decouvrez a{
	display:block;
	height:25px;
	width:156px;
	background:url(../images/bouton1.png) 0 0 no-repeat;
	text-decoration: none; 
}

.bouton-accueil-decouvrez a:hover{
	height:25px;
	width:156px;
	background:url(../images/bouton1-over.png)  0 0 no-repeat;
}

#content-footer{
	width:950px;
	text-align:center;
	margin:100px auto 0;
	display:inline-block;
	}

#footer {
	text-align:center;
	display:inline-block;
	border-top:1px solid #dfdfdf;
	padding:10px;
}

#footer a{
	text-decoration:none;
	color:#666;
	}

h7 {
	font-size:13px;}
	
.merci{
	background:#445487;
	height:105px;
	width:200px;
	text-align:center;
	color:#FFF;
	padding:20px;
	margin:0 auto 0;}

.merci a{
	color:#FFF;
	text-decoration:none;
	border:thin solid #fff;
	padding:10px;
	margin-top:5px;}


/*----------------------------
	FORMULAIRE CONTACT
-----------------------------*/



form,input,select,textarea{margin:0; padding:0; color:#ffffff; }

div.box { margin:0 auto; width:500px; position:relative;  } 

div.box h1 { color:#fff; font-size:18px; text-transform:uppercase; padding:5px 0 5px 150px; background:#8EA3CF; } 

div.box label { width:100%; display: block; background:#fff; margin-top:20px; }

div.box label span { display: block; color:#bbbbbb; font-size:12px; float:left; width:100px; text-align:right; padding:5px 20px 0 0; }

div.box .input_text { padding:5px 10px; width:200px; background:#fff; border: 1px solid grey; color:grey; } 

div.box .message{ padding:7px 7px; width:350px; background:#fff; overflow:hidden; height:150px;  border: 1px solid grey; color:grey; } 

div.box .button { margin:0; padding:4px 7px; background:#8EA3CF; border:0px; left:120px; position: relative; top:10px; width:100px; cursor:pointer; }

div.box .button a { background:grey; cursor:pointer;}

div.box .button a:hover { background:grey; cursor:pointer;}