/* CSS basé sur des tutoriels css.alsacreations.com */
body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000066;
	line-height: 1.8; /*l'interligne*/
	text-align: justify;
	background-color: #99CCFF; /*couleur de fond bleu pale*/
	}

.conteneur { /*le conteneur global du site, qui sera centré */
	position: relative;
	width: 900px;
	margin: 0 auto; 
	background-color: #FFFFCC; /*couleur de fond jaune pale*/
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	}
	
.menu {
	position: absolute;
	left:0;
	width: 120px;
	top: 250px;
	}
	
.frame {
	margin-left: 220px;
	width: auto;
	height: auto;
	background-color:#FFFFCC; /*couleur de fond jaune pale*/
	padding: 10px 30px 10px 30px;
	}
	
.titresite{
	margin-left: 220px;
	width: auto;
	height: 130px;
	background-color:#FFFFCC;
	padding: 50px 10px 10px 10px;
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	font-family: "Comic Sans MS", Arial;
	}
	
.titrepartie{
	margin-left: 220px;
	width: auto;
	height: 15px;
	background-color:#FFFFCC; /*couleur de fond jaune pale*/
	padding: 10px 30px 10px 10px;
	text-align: right;
	border: 10px;
	}
	
.footer {
	height: 20px;
	background-color: #99CCFF; /*couleur de fond bleu pale*/
	text-align: center;
	font-weight: lighter;
	font-size: smaller;
	padding: 10px 5px 5px 5px;
	}
	
.titretexte {
	font-size: 16px;
	color: #FF6600; /*orange*/
	line-height: 2; /*l'interligne*/
	font-weight: bold;
	margin: 20px 0 5px 0;
	}

.soustitretexte {
	font-size: 14px;
	color: #FF6600; /*orange*/
	line-height: 1.8; /*l'interligne*/
	font-weight: bold;
	margin: 15px 0 5px 0;
	}	
	
ul{
	list-style-type: disc;
	}
	
p {
	margin: 0 0 5px 0;
	}
	
ul#menu {
	list-style-type: none;
	} 

ul#menu li {
	margin-bottom: 5px;
	}

ul#menu a {
	 margin: 0 5px;
	 width: 120px; 
	 height: 20px;
	 display: block;
	 text-align: center;
	 border: 1px solid gray;
	 text-decoration: none;
	 background: #FFF;
	 color:#000066;
	 }
	 
ul#menu a:hover {/*pour les liens survol*/
	 background: #CCCCFF;/*couleur de fond mauve pale*/
	 }
	 
ul#menu a:active { /*pour les liens actif*/
	color: #000066;
	text-decoration: none;
	background: #CCCCFF;/*couleur de fond mauve pale*/
	font-weight: bold;
	}*/

