﻿/* Format texte */

.souligne {
    text-decoration: underline;
}

.gras {
    font-weight: bold;
}

.italique {
    font-style: italic;
}

/* Alignement */

.centre {
    text-align: center;
}

.justifie {
    text-align: justify;
}

.droite {
    text-align: right;
}

.gauche {
    text-align: left;
}

/* Alignement des div */

.flottementgauche {
    float: left;
    width: 900px;
}

/* Couleur */

.rouge {
    color: #FF0000;
}
