

/* --- ELEMENTS DE BASE --- */

html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	padding: 10px 20px; /* Note -> 2 */
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	line-height: 1.25; /* -> 5 */
}


/* --- COULEURS --- */

/* Général */
body {
	color: #000;
	background: rgb(240,240,240);

}

/* Contenu principal */
#contenu {
	color: #808080;
	
}
#contenu a {
	color: rgb(0,0,0);
}
#contenu a:hover, #contenu a:focus {
	color: #000;
}


#sectioncopyright {
	color: #808080;	
}
#sectioncopyright a {
	color: #808080;
}

#sectionreglement {
	color: #808080;	
}

#header {
	color: #000000;
	float:right;
}



/* --- POSITIONNEMENT --- */

/* Page */
body {
	padding: 0; /* -> 2 */
}

#global {
	text-align:center;
	margin: 50px 0px 0px 0px;	
}




/* Contenu */

#contenu {
	padding: 10px 20px;
	margin: 0px 0px 0px 0px;	
	height:600px;
	text-align:center;
}

#sous-contenu {
	text-align:center;
	width:1000px;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
    position: relative; 
}


#fenetregauche {
	width:500px;
	height:530px;
	margin: 0px 0px 0px 0px;	
	float:left;
}

#fenetredroite {
	width:440px;
	margin: 0px 0px 0px 30px;	
	float:left;
}


.douzepx {
	font-size:12px;
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
}

.onzepx {
	font-size:11px;
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
}

.textefenetredroite {
	font-size:14px;
}

.textedessusfenetredroite {
	font-size:13px;
	color:#36bde9;
	font-weight: bold;
}



.bouton {
	height:38px;
	width:200px;
}


#sectionreglement {
	float: left;
	font-size: 11px;
	margin: 10px 0px 0px 20px;
}

#sectioncopyright {
	float:right;	
	font-size: 11px;
	margin: 10px 20px 0px 0px;	
}

