		#general {
		   position : absolute;
		   top : 0px;
		   left : 0px;
		   margin : 0px;
		   width : 100%;
		   min-width : 850px;
		   height : 500px;
		   background-color : #AFAFAF;
		   z-index : 10;
		}
		
		#bandeau {
		   position : absolute;
		   left : 0px;
		   top : 0px;
		   width : 100%;
		   height : 100px;
		   background-color : yellow;
		   background-image : url(../images/fondBandeau.jpg);
		   background-repeat : repeat-x;
		}
		
		#logo {
			position : absolute;
			left : 0px;
			top : 0px;
			width : 200px;
			height : 100px;
			background-image : url(../images/logo.jpg);
			background-repeat : no-repeat;
		}
		
		#imageDroite {
			float : right;
			width : 180px;
			height : 100px;
			background-image : url(../images/bandeauImageDroite.jpg);
			background-repeat : no-repeat;
		}
		
		#corpsDePage {
		   position : absolute;
		   left : 0px;
		   top : 100px;
		   width : 100%;
		   min-width : 850px;
		   height : 350px;
		   background-color : green;
		   z-index : 10;
		}
		
		#navigation {
		   float : left;
		   width : 200px;
		   min-height : 400px;
		   background-color : red;
		   border-right : dotted 1px #CCC;
		   padding : 10px;
		}
		
		#miettesDePain {
		   position : absolute;
		   left : 230px;
		   top : 0px;
		   width : 500px;
		   height : 20px;
		   background-color : #C36;
		   font-size : 8pt;
		}
		
		#contenu {
		   margin-left : 230px;
		   margin-right : 230px;
		   margin-top : 20px;
		   min-height : 400px;
		   height : 100%;
		   z-index : 10;
		   background-color : #FF0;
		}
		
		#colonneDroite {
		   float : right;
		   width : 200px;
		   min-height : 400px;
		   background-color : #EEE;
		   text-align : center;
		   border-left : dotted 1px #CCC;
		   padding : 10px;
		   z-index : 10;
		}
		
		#piedDePage {
		   position : absolute;
		   left : 0px;
		   bottom : 0px;
		   width : 100%;
		   height : 50px;
		   background-image : url(../images/fondPiedPage.jpg);
		   background-repeat : repeat-x;
		   background-color : #CCC;
		   z-index : -1;	
		}
		
		#fondPiedPage {
			position : absolute;
			left : 0px;
			top : -500px;
			width : 100%;
			height : 500px;
			background-image : url(../images/fondCode.jpg);
		    background-repeat : no-repeat;
			background-position : center bottom; 
			z-index : -100;
		}
		
		
		/*------ Suppression des couleurs d'arriere-plan */
		#general,
		#bandeau,
		#piedDePage,
		#corpsDePage,
		#navigation,
		#contenu,
		#miettesDePain,
		#colonneDroite
		{	
			background-color : transparent;
		}
		 
		
		
		
		
		
		
		
