/*
design.css
---------
 
Par JDB
Fichier créé le 03/02/2008
*/


/*========================== GENERAL ===================================*/
*{
  margin: 0;
  padding: 0;
}

body{  
  font-family: "Trebuchet MS", serif;   
	width: 955px;
	margin: 0 auto 20px auto;			/* Pour centrer la page */
	background: url("../images/bodyBg.png") top left repeat #ffffff; 
}



/*========================== EN TETE ===================================*/
#en_tete.accueil{
	height: 138px;
	background-image: url("../images/baniereRouge.png");
}


/*=========================== MENU ====================================*/
#menu{
  width: 680px;
  margin: 0 auto 70px auto;
}

#menu>ul{
	list-style-type: none;
}

#menu>ul>li{
	display: inline;
}

#menu>ul>li.acceuil>a{
  background-image: url("../images/menuRouge.png");
}

#menu>ul>li.loisirs>a{
  background-image: url("../images/menuJaune.png");
}

#menu>ul>li.citations>a{
  background-image: url("../images/menuBleu.png");
}

#menu>ul>li.liens>a{
  background-image: url("../images/menuOrange.png");
}

#menu>ul>li>a{  
  font-weight: bold; 
  font-size: 18px;
  font-style:italic; 
  display: block;
  float: left;
	font-variant: small-caps;
	color: #000;
	text-decoration: none;
	text-align: center;
	width: 160px;
	height: 34px;
  margin: 0 5px;
}

#menu>ul>li>a:hover{
    color: #828994;
}

/*========================== CONTENU ===================================*/
#contenu{
  padding-top: 50px;
  background: url("../images/headerAccueil.png") top right no-repeat transparent; 
}



/*========================== WIDGETS ===================================*/
#widgets{
	float: left;		/* Le menu flottera à gauche */
	width: 200px;		/* Très important : donner une taille au menu */
	padding: 20px 0 0 55px;
}

#widgets #widget1>a{
  text-align: center;
  font-size: 13px;  
  font-weight: bold; 
  text-decoration: none;
  color: #3C96BE;
}

#widgets #widget1 a:hover{
  text-decoration: underline;
}

#widgets #widget1{
	margin-bottom: 40px;	
}
	
	
	
/*========================== CORPS ===================================*/
#corps{
	padding: 10px 40px 10px 275px;						/* Pour éviter que le texte à l'intérieur du corps ne colle trop à la bordure */
	background-image: url("../images/backgroundAccueil.jpg");
	
}

#corps h2{ 
  font-weight: bold; 
  font-size: 16px;
  text-decoration: none;
  color: #3C96BE;
  padding: 5px 0 0 10px;  
  margin-top: 30px;
  border-bottom: 4px solid #fff;
}


#corps a{  
  font-weight: bold; 
  text-decoration: none;
  /*display: block;*/
  color: #3C96BE;
}

#corps a:hover{
  text-decoration: underline;
}

#corps p{
  font-size: 13px;    
  text-align: justify;
  padding: 10px;   
  color: #C89754;
}

#corps>div>p{   
  margin: 15px 0;  
  background-color: #3C5B6A;
  -moz-border-radius: 6px;    
  -khtml-border-radius: 6px
  -webkit-border-radius: 6px
  border-radius: 6px;
}

#corps q{
  display: block;
  margin: 10px;
}


#corps>p>a,
#corps>p>a:visited{  
  text-decoration: none;
  color: #3C96BE;
}

#fin_de_corps{  
  padding-left: 220px;
  margin-top: 40px;
}

#corps>#fin_de_corps>a:hover{
  text-decoration: underline;
}


/*========================== PIED DE PAGE ===================================*/

#pied_de_page{
	padding: 23px 15px 0 15px;						/* Pour éviter que le texte à l'intérieur du corps ne colle trop à la bordure */
  background: url("../images/footerAccueil.png") top right no-repeat transparent; 
  text-align: center;
  clear: both;
}

#pied_de_page>p{
  font-family: "Trebuchet MS", Arial;
  font-size: 12px;
}

#pied_de_page>ul,
#pied_de_page>p{
	margin-left: 260px;					/* Une marge à gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
}

#pied_de_page>ul>li{  
	list-style-type: none;
	display: inline;
}

#pied_de_page>ul>li>a>img{
  border: none;
  padding: 5px
}
	
	
