@charset "utf-8";

/*@import url(../webfonts/opensans-condbold/stylesheet.css);
@import url(../webfonts/opensans-regular/stylesheet.css);*/
@import url(fontsheets.css);

/* Média fluide simple
   Remarque : un média fluide exige que vous supprimiez les attributs de hauteur et de largeur du média du code HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 ne prend pas en charge max-width ; la largeur par défaut est donc fixée à 100% */
.ie6 img {
	width:100%;
}

/*
	Propriétés de grille fluide Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiré par "Responsive Web Design" par Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	et le système Golden Grid par Joni Korpi
	http://goldengridsystem.com/
*/

input[type="radio"]{
	float:left;
}

label{
	display:block;
}

form br{
	line-height:0;
	margin:0;
	padding:0;
	height:0;
}


div.risque1, div.risque2, div.risque3, div.risque4{
	padding:0.5em 1em;
}

div.risque1 h2, div.risque2 h2, div.risque3 h2, div.risque4 h2{
	font-size:1.5em;
}

div.risque1{
	background:#6fad4a;
	color:white;
}

div.risque2{
	background:#ffc015;
	color:black;
}

div.risque3{
	background:#c65914;
	color:white;
}

div.risque4{
	background:#c70202;
	color:white;
}


/*
=====================================================================================================================================================
Disposition mobile : 480px et moins.
=====================================================================================================================================================
*/

html{
/*	background:rgb(102,102,102);*/
}

body{
	font-size:100%;
	font-family:open_sansregular;
	background:rgb(102,102,102);
}

h1, h2, h3, legend{
	font-family:open_sans_condensedbold; 
}

h1{
	letter-spacing:-0.5px;
	font-weight:normal;
	font-size: 1.25em;
}

h2{
	font-size: 1.1em;
}

h2 strong{
	text-decoration:underline;
}

#wrapper {
	margin:0 auto;
	width: 90%;/*87.36%;*/
/*	padding-left: 1.82%;
	padding-right: 1.82%;*/
	padding:10px;
	background:white;
}

#main {
	clear: both;
	float: left;
	margin: 0;
	width: 100%;
	display: block;
}

header{
	height:124px;
	margin:5px auto;
	width:90%;
	background:transparent url(../images/logoEquidata.png) center center no-repeat;
}

section{
	margin:1em 0 2em 0;
	width:100%;
}

section.question label{
}

section.question input{
	margin:0.35em;
}


/* 
=====================================================================================================================================================
Disposition tablette : 481px sur 768px. Hérite des styles de : Disposition mobile 
=====================================================================================================================================================
*/

@media only screen and (min-width: 481px) {
#wrapper {
	margin:5px auto;
	width: 92%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	box-shadow: 0 0 15px rgba(60,60,60,0.9);
}

#main {
	width: 88%;
	display: block;
	padding:15px 6%;
}

h1{
	letter-spacing:-0.75px;
	font-weight:normal;
	font-size: 1.75em;
}

h2{
	font-size: 1.1em;
}

}

/* 
=====================================================================================================================================================
Disposition bureau : 769px à max. 1232px.  Hérite des styles de : Disposition mobile et disposition tablette 
=====================================================================================================================================================
*/

@media only screen and (min-width: 769px) {
#wrapper {
	margin:10px auto;
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	box-shadow: 0 0 20px rgba(60,60,60,1);
}

#main {
	width: 88%;
	display: block;
	padding:15px 6%;
}

h1{
	letter-spacing:-1px;
	font-weight:normal;
	font-size: 2.25em;
}

h2{
	font-size: 1.1em;
}

footer{
}

}