/* Alignement des textes */
.text-justify {
    margin: 0;
    text-align: justify;
}
.text-left {
    margin: 0;
    text-align: left;
}
.text-right {
    margin: 0;
    text-align: right;
}
.text-center {
    text-align: center;
}
.Fleft{
    float: left;
}
.Fright{
    float: right;
}
.Cboth{
    clear: both;
}

/* Styles des mots */
.b{
    font-weight: bold;
}
.i{
    font-style: italic;
}
.u{
    text-decoration:underline;
}
.white{
    color: #ffffff;
}
.black{
    color: #000000;
}
.times{
    font-family: "Times New Roman", Times, Arial, Helvetica;
}
.arial{
    font-family: Arial, Helvetica;
}
.size_8{
    font-size: 8px;
    line-height: 12px;
}
.size_10{
    font-size: 10px;
    line-height: 15px;
}
.size_12{
    font-size: 12px;
    line-height: 18px;
}
.size_14{
    font-size: 14px;
    line-height: 21px;
}
.size_16{
    font-size: 16px;
    line-height: 24px;
}
.size_18{
    font-size: 18px;
    line-height: 27px;
}
.size_20{
    font-size: 20px;
    line-height: 30px;
}

