/**
 * Ce fichier gère l'affichage du texte des messages et des articles
 * On trouve ici les classes qui ne dépendent pas du style utilisé
 */

/* Texte */

.souligne
{
    text-decoration: underline;
}

.barre
{
    text-decoration: line-through;
}


/* Positions */

.centre
{
    text-align: center;
}

.gauche
{
    text-align: left;
}

.droite
{
    text-align: right;
}

.justifie
{
    text-align: justify;
}

/* Couleurs */

.orange { color: rgb(236, 118, 0); }
.noir { color: black; }
.marron { color: maroon; }
.vertf { color: green; }
.vertc { color: lime; }
.olive { color: olive; }
.marine { color: navy; }
.violet { color: purple; }
.bleugris { color: teal; }
.argent { color: silver; }
.gris { color: rgb(100, 100, 100); }
.rouge { color: red; }
.jaune { color: yellow; }
.bleu { color: blue; }
.rose { color: fuchsia; }
.turquoise { color: aqua; }
.blanc { color: white; }

/* Polices */

.arial { font-family: Arial, serif; }
.times { font-family: Times, serif; }
.courrier { font-family: Courier, serif; }
.impact { font-family: Impact, serif; }
.geneva { font-family: Geneva, serif; }
.optima { font-family: Optima, serif; }

/* Tailles */

.ttpetit { font-size: xx-small; }
.tpetit { font-size: x-small; }
.petit { font-size: small; }
.gros { font-size: large; }
.tgros { font-size: x-large; }
.ttgros { font-size: xx-large; }

/* Listes */

.liste_i { list-style-type: lower-roman; }
.liste_I { list-style-type: upper-roman; }
.liste_a { list-style-type: lower-latin; }
.liste_A { list-style-type: upper-latin; }
.liste_1 { list-style-type: decimal; }
