/* CSS Document */
* {
  margin: 0;
  padding:0;
}

html, body {
	height: 100%;
	}

/*Couleur de fond de la page*/
html {
	background: #fff;
	}

/*On enlèbe les margess du body pour coller le site en haut*/
body{
	margin:0px;
}

div#marge_haut{
width:1024px;
height:15px;

}


/*Plus grand conteneur*/
div#global {
	width: 1024px;
	padding:0 0px;/*Marges de 10px sur le coté pour faire des ombres*/
	margin: 0px auto;
	position: relative;
	background: #fff;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
} 

/* Bandeau du haut de page */	
div#header{
	background: #8B9BAB url(../images/page-principale/header.jpg) no-repeat center top;
	height: 143px;
	width:1024px;
	position:relative;
}


div#header a{
	position:absolute;
	left:540px;
	top:50px;
	width:150px;
	height:65px;
	overflow:hidden;
}


div#center {
	/* Pour éviter la superposition 
	du pied de page et du contenu : */
	padding-bottom: 0px;
	overflow: auto;
	}

/* Partie principale du site */
div#content {
	min-height:535px;
	width: 810px;
	margin-right: 0px;
	margin-top: 0px;
	padding-top:10px;
	padding-bottom:20px;
	float:right;
	position:relative;
	z-index:99;
	}

/*Bande verticale côté gauche*/
div#leftcolumn {
	min-height:615px;
	width: 195px;
	margin-left: 0px;
	margin-top: 0px;
	padding-top:0px;
	padding-bottom:0px;
	background: url(../images/page-principale/left-column.jpg) no-repeat;
	float:left;
	}

/*Partie pour le menu*/
div#menu {
	height:35px;
	width: 810px;
	background: transparent;
	padding-top:10px;
	float:right;
}


