/**************************************************************************

*************************************************************************
*                                                                       *
*	Cette feuille de style applique les backgrounds et la mise en page  *
*                                                                       *
*************************************************************************

Structure de la page:

+-----conteneur-------------------------------------------------------------+
++----div class="large" id="top"-------------------------------------------++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
++----div class="large" id="header"----------------------------------------++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
++----div class="large" id="menuH"----------------------------------------++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
++----div class="large" id="mainContent"-----------------------------------++
++                                                                         ++
+                                                                          ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
++-----div class="large" id="footer"---------------------------------------++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
++-----div class="large" id="bottom"---------------------------------------++
++                                                                         ++
++                                                                         ++
++-------------------------------------------------------------------------++
+---------------------------------------------------------------------------+


**************************************************************************/

* {
	margin: 0;
	padding: 0;
}

div.large {
	width: 100%;
	clear: both;
}

div#conteneur {
	margin: 0 auto;
	/*background: url(../images/gabarit/bg_mainContent.gif) repeat-y;*/
	width: 1000px;   /* Background infini, de haut en bas*/
	overflow: hidden;
}

	div#top {
		height: 0;
	}

	div#header {
		background: url(../images/gabarit/bg_header.gif) no-repeat;
		height: 120px;
	}

	div#menuH {
		background: url(../images/gabarit/bg_menuH.gif) no-repeat;
		height: 41px;
		overflow:hidden;
	}

	div#mainContent {
		background: url(../images/gabarit/bg_mainContent.gif) repeat-y;         /* Background appliqué à mainContent uniquement*/
		min-height: 750px;
	}

	div#footer {
		background: url(../images/gabarit/bg_footer.gif) no-repeat;
		height: 31px;
		margin-left:-20px;
	}

	div#bottom {
		height: 0;
	}

.clear {
	clear:both;
	height: 0;
}

