/* CSS Document */

body{margin:0;/*met toutes les marges a 0*/
	 padding:0;/*met toutes les marges a 0*/
     font: 80% "verdana",sans-serif; /* typo de toute la page*/
	 background:#CEC6E3 url(../images/fond3.gif) top left;}/* trame de fond du site*/
	
/*conteneur principal*/
div#general{
			width:1000px;/*largeur*/
			height:900px;/*hauteur (peut être  en px; en % ou auto)*/
			margin:0 auto;/*marges pour centrer le div en haut et au milieu*/
			border:solid 1px #FFF;/*bordure du div*/
			background:#CEC6E3;/* fond de la page*/

			}
/*banniere du haut*/
#general h1{
			text-indent:-12000px;
			margin:0;
			width:100%;
			height:170px;/*hauteur de l'image banniere*/
	 		background:#CEC6E3 url(../images/banniere.jpg) no-repeat top left;/* banniere positionnée en fond du conteneur*/
			}
/*menu*/
ul#menu{
margin:0 auto;
height:30px;
width:auto;
list-style-type:none;
background:#4A4949;/* image fond de la barre de menu*/
padding-left:10px;/*marge de gauche avant le premier bouton*/
border-top:solid 0px white;
border-bottom:solid 0px white;

}
#menu li {
width:320px;/*largeur du bouton*/
height:30px;
display:block;
float:left;
text-align:center;
}
#menu a {
display:block;
height:30px;
line-height:30px;
color: #FFF;/*couleur du texte du lien*/
font-weight: bold;
text-decoration: none;
text-align:center;
letter-spacing:1px; 
}
#menu a:hover {
background:#FFFF00;
color:#000;
border-left:solid 2px #FFF; 
}
/*contenu*/
#contenu{width:100%;
height:1500px;/*hauteur du div*/
text-align:center;
}
#contenu a img{border:none;margin-top:10px;}/*supprime la bordure bleue autour des images avec liens sur ie6*/