/* ================================ */
/* By Atypic - www.atypic.be
/* ================================ */

/* ===== Avec bordure ===== */

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 20px 0;
}
th {
    font-weight: bold;
    color: #ffffff;
    background: #ea6153;
}
/* --- 28/12/2015 - Tr/td centrés --- */
th,td {
    vertical-align: middle;
    padding: 8px 15px;
    text-align: center;
}
/* --- 28/12/2015 - Tr séparés par une bordure --- */
tr {
    background: #EFEAE9;
    border-top: 1px #fff solid;
}


/* --- 28/12/2015 - Tout le contenu aligné à gauche --- */
table.left th,
table.left td {
    text-align: left;
}
/* --- 28/12/2015 - Tout le contenu aligné au centre --- */
table.center th,
table.center td {
    text-align: center;
}
/* --- 28/12/2015 - Tout le contenu aligné à droite --- */
table.right th,
table.right td {
    text-align: right;
}
/* --- 28/12/2015 - Première colonne alignée à gauche --- */
table.first-left th:first-child,
table.first-left td:first-child {
    text-align: left;
}
/* --- 28/12/2015 - Première colonne alignée au centre --- */
table.first-center th:first-child,
table.first-center td:first-child {
    text-align: center;
}
/* --- 28/12/2015 - Première colonne alignée à droite --- */
table.first-right th:first-child,
table.first-right td:first-child {
    text-align: right;
}