@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%;
}

/*
	Propriétés de grille fluide Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		12;
	dw-num-cols-tablet:		12;
	dw-num-cols-desktop:	12;
	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/
*/

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

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 89.4833%;
	padding-left: 0.7583%;
	padding-right: 0.7583%;
}
#headerFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align:center;
}
#contenuPageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align:center;
}
.caption {
	color:#000;
	margin-top:5px;
	padding-left:10px;
	border-left: 1px solid #ccc;
	font-size:13px;
	text-align:left;
}
.thumb {
	text-align:left;
}
#titrePageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align:center;
	margin-bottom:30px;
}
h1 {
	font-size:20px !important;
	padding-bottom:20px;
	border-bottom:1px solid #ccc;
}
h2 {
	font-size:15px !important;
	padding-bottom:20px;
	text-align:center;
}
.videowrapper { 
	float: none;
	clear: both;
	width: 560px;
	position: relative;
	padding-bottom: 350px;
	padding-top: 25px;
	height: 0;
	margin: 0 auto;
	max-width: 100%;
}
.textCenter {
	text-align:center;
}
/* Disposition tablette : 481px sur 768px. Hérite des styles de : Disposition mobile */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 91.45%;
	padding-left: 0.775%;
	padding-right: 0.775%;
}
#headerFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#contenuPageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#titrePageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
h1 {
	font-size:40px !important;
}
h2 {
	font-size:30px !important;
}

}

/* 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.5%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
}
#headerFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#contenuPageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#titrePageFBT {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
h1 {
	font-size:45px !important;
}
}
