/***********
 * Figures *
 ***********/
figure {
    counter-increment: nFig;
    text-align: center;
    text-align: -moz-center;
}
figure table {
    display: inline-block;
    text-align: center;
}
figure tr {
    border-radius: 5px;
}
figure td, th {
    border: solid 1px;
    border-color: white;
    border-radius: 2px;
    padding: 5px;
}
figcaption {
    padding: 5px 0;
    font-size: small;
}
figcaption::before {
    content: "Figure " counter(nFig) " - ";
}