/* Style de CSS pour les déficients visuels */
body {
 background: white;
 color: black;
 font-family: Arial, Helvetica, sans-serif;
 text-align: left;
 font-size: 18px;
}

p {
 color: black;
 text-align: left;
 text-indent: 3em; /* Pour créer une indentation de trois fois la police en début du paragraphe */
 font-family: Arial,Verdana,sans-serif;
 font-size: 18px;
}

/* Pour les titres ceux de H1 s'imposent aux suivants sauf si on indique une autre propriété dans l'un des suivants */

h1 {
 text-align: center;
 background: white;
 color: black;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 30px;
 font-weight: bold;
}

h2 {
 text-align: center;
 color: black;
 font-size: 28px;
}

h3 {
 text-align: center;
 color: black;
 font-size: 26px;
}
h4 {
 color: black;
 font-size: 24px;
padding: 5px;
}

h5 {
 color: black;
 font-size: 22px;
}

a:link {
 color: blue;
 text-align: left;
}

a:visited {
 color: green;
 text-align: left;
}

a:hover, a:focus, a:active {
 color: purple;
 text-align: left;
}

/* class pour centrer un texte dans une division et saut de ligne*/

.centre {
 text-align: center;
}

/* class pour mettre en couleur un mot ou plus, utilisable avec la balise SPAN */

.rouge {
 color: red;
}

.bleu {
 color: blue;
}

.vert {
 color: green;
}

.brun {
 color: maroon;
}

.fuch {
 color: fuchsia;
}

.pourpre {
 color: purple;
}

.jaune {
 color: yellow;
}

.citron {
 color: lime;
}

.blanc {
 color: white;
}

.noir {
 color: black;
}

input[type=submit] {
 font-weight: bold;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 20px;
}

input[type=radio] {
 font-weight: bold;
 height: 1,8em;
 } 
