/* Feuille de style Exemple 1 */

/* Styles globaux */
body {
	background:#DDEEFF;
	color:#113388;
	}

/* titre 1 */
h1 {
	background:#113388;
	color:#AA99FF;
	font-style:italic;
	text-decoration:underline;
	text-align:center;
	}
	
/* titre 2 */
h2 {
	text-decoration:underline;
	}

/* paragraphes */
p {
	margin-left:10px;
	text-indent:20px;
	}

/* liens */
a:link, a:visited {
	background:transparent;
	color:#113388;
	text-decoration:underline;
	}
	
a:hover {
	text-decoration:none;
	}
	
a:active {
	color:#FF0000;
	}

/* liste */
ul {
	list-style-type:square;
	}

/* paragraphes en cadres */

.avecCadre {
	border-top:thin solid #000000;
	border-right:thin solid #000000;
	border-left:medium solid #000000;
	border-bottom:medium solid #000000;
	padding:3px;
	background:#AABBFF;
	color:#000088;
	}
	
/* texte mis en valeur */

.enValeur {
	font-size:1.2em;
	font-weight:bold;
	}
	
/* texte mis en valeur */

.auCentre {
	margin:0px;
	text-indent:0px;
	text-align:center;
	}