a {
	color: Silver;
	text-decoration: none;
}

/* lorsqu'on passe la souris sur un lien, on fera souligner le texte */
a:hover {
	text-decoration: underline;
}

h1 {
	font-size: 12px;
	font-weight: bold;	
}

h2 {
	font-size: 12px;
	font-weight: bold;	
}

LI { list-style-type: square }


body {
	background : #F2C25E;  /*couleur du fond qui contourne notre page*/
	text : "#FFFFFF";
	leftmargin : "0";
	topmargin : "12";
}
/* ----------- Style récurrent du site ----------- */
.title1 {   /* titres des descriptions */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	/*text-align : right;*/  /*ne fonctionne pas, il faut le mettre dans le div de la page html...?*/
	color: #4E6D4E;
}
.title2 {   /* titres des descriptions pour contact-acces*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #4E6D4E;
}
.text1 {   /* texte descriptif à droite de la photo grand format*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #4E6D4E;
}
.text2 {   /* texte descriptif au dessus des photos miniatures*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #4E6D4E;
}
.text3 {   /* texte descriptif au dessous de la photo grand format*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4E6D4E;
}
.text4 {   /* texte descriptif pour acces contact*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #4E6D4E;
}

/* ----------- Apparence des liens (s'applique automatiquement à toutes les balises <a...>...</a> ----------- */
a:active     /* ??? */
{
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: bold;
   color: #FF641A;
   text-decoration: underline;
}

a:link       /* apparence du lien par défaut (avec href="toto...") */
{
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: bold;
   color: #4E6D4E;
   text-decoration: underline;
}	
/*
a:hover      apparence du lien quand la souris pointe dessus
{
   background: #FFFFFF;
   color: #FF641A;
   text-decoration: underline;
}*/

a:visited    /* apparence du lien par défaut (avec href="#") */
{
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: bold;
   color: #4E6D4E;
   text-decoration: underline;
}

<!--a:link,a:active,a:visited{text-decoration:none;}a:hover{text-decoration:underline;color: #FF641A;}//-->