/* paragraphes en bleu 18 px :)*/
/*
p
{
   color: blue;
   font-size: 18px;
   font-size: 80%;
   text-align: center; //Pour centrer le titre
   
   

}

La propriété CSS qui permet d'indiquer la police est font-family. Vous devez indiquer le nom de la police comme ceci :
font-family:police;

Seulement, pour éviter qu'il n'y ait de problème si l'internaute n'a pas la même police que vous, on met en général plusieurs noms de police, séparés par des virgules :
font-family:police1, police2, police3, police4;
* 
* 
Oui, mais quelles sont les polices les plus courantes qu'on a le "droit" d'utiliser me direz-vous ?
Voici une liste de polices qui fonctionnent bien sur la plupart des navigateurs et que vous pouvez donc utiliser sans crainte :

    * Arial
    * Arial Black
    * Comic Sans MS
    * Courier New
    * Georgia
    * Impact
    * Times New Roman
    * Trebuchet MS
    * Verdana
*/
body
{
   background-image: url("_themes/nature/nabkgnd.jpg") ; 
   background-color: #FFFFCC ;
   color: #000033 ; 
}


/* uniformitée des liens*/
a:visited /* Quand le visiteur a déjà vu la page concernée */
{
    color: #669933;
}
a:focus /* Quand le visiteur sélectionne le lien */
{
    color: #669933;
}
a:hover /* Quand le visiteur pointe sur le lien */
{
   color: #669933;
   font-weight: bold;
}
a /* Lien normal */
{
   text-decoration: underlign;
   color: #669933;
   font-style: none;
   font-family: Georgia, Times New Roman, Times, serif ; 
}

img.bord
{
	border: 2px solid white;
}

/* pages acceuil */
.index_texte_principal
{
	color: #272E58 ;
	font-size: 23px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}

/* style footer */
						.footer_titre
						{
							color: #FFFEF2 ;
							font-size: 19px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.footer_texte
						{
							color: #CC0033 ;
							font-size: 19px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							text-align: center ;
						}
/* pages chambre */
.chambres_texte_principal
{
	color: #333399 ;
	font-size: 19px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	text-align: center ;
}

.chambres_nom_chambre_f
{
	color: #cc3366 ;
	font-size: 42px ;
	font-family: rush Script MT, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
.chambres_nom_chambre_b
{
	color: #336699 ;
	font-size: 42px ;
	font-family: rush Script MT, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
.chambres_nom_chambre_g
{
	color: #663300 ;
	font-size: 42px ;
	font-family: rush Script MT, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
.chambres_titre_photo
{
	color: #006600 ;
	font-size: 18px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}

/* Pour la page de contact principalement : */
						.coordonnees
						{
							color: #333399 ;
							font-size: 18px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.coordonnees-titre
						{
							color: #d6143a ;
							font-size: 26px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.coordonnees-mini
						{
							color: #333399 ;
							font-size: 12px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
						}
						.coordonnees-sous-titre
						{
							color: #333399 ;
							font-size: 24px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.coordonnees-tel
						{
							color: #cc0033 ;
							font-size: 20px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}

/* pages des chambres */
.chambre_texte
{
	color: #333399 ;
	font-size: 18px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
}
.chambre_prix
{
	color: #333399 ;
	font-size: 18px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
						/* pages des tourisme */
						.tourisme_titre_photo
						{
							color: #990033 ;
							font-size: 15px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.tourisme_titre
						{
							color: #336600 ;
							font-size: 24px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}
						.tourisme_texte
						{
							color: #336600 ;
							font-size: 17px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-style: italic ;
							text-align: center ;
						}
/* pages des bonplans */
.bonplans_titre
{
	color: #990033 ;
	font-size: 17px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
.bonplans_texte
{
	color: #669933;
	font-size: 15px ;
	font-family: Georgia, Times New Roman, Times, serif ; 
	font-weight: bold ;
	font-style: italic ;
	text-align: center ;
}
						.nom_chambre
						{
							color: #669933;
							font-size: 50px ;
							font-family: Georgia, Times New Roman, Times, serif ; 
							font-weight: bold ;
							font-style: italic ;
							text-align: center ;
						}

