@charset "utf-8";
/* 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%;
}

#mob {
width: 100%;
}

#pctablet {
width: 100%;
}

#conteneur {
width: 100%;
height: 100px;
overflow: scroll;
}

/*
	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/
*/

/* Enlèvement du live pc sur mobile*/

@media all and (max-width: 481px) {
    #pctablet
    {
	display: none;
    }
}

/* Enlèvement du live pc sur tablet */

@media all and (max-width: 769px) {
	#pctablet
    {
	display: none;
    }
	p4
	{
	display: none;
    }
}

/* Enlèvement du live mobile sur pc */

@media (min-width: 780px) and (max-width: 2800px) {
    #mob
    {
        display: none;
    }
}

/* Disposition mobile : 480px et moins. */

@media all and (max-width: 480px) {
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 0.6em;
}

body, td,th {
	font-size: 0.9em;
}

p1 {
	font-size: 1.0em;
}

}

/* Disposition tablette : 481px sur 768px. Hérite des styles de : Disposition mobile */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.1em;
}

body, td,th {
	font-size: 1.1em;
}

p1 {
	font-size: 0.6em;
}
}

/* Disposition bureau : 769px à max. 1232px.  Hérite des styles de : Disposition mobile et disposition tablette */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
	font-family: Dayrom, serif;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.6em;
}

h3 
{
	font-size: 1.2em;
}

body,td,th {
	font-size: 1.3em;
}

p1 
{
	font-size: 0.8em;
}
}
