body, body * {
    font-family: "Calibri", "Carlito", "DejaVu Sans", sans-serif;
}


/* Useful tools */
.centre {
    text-align: center;
}

div.two-columns {
    display: grid;
    grid-template-columns: auto auto;
}

/* links */
a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed #7777;
}
a.no-decoration {
    border: none;
}
a:hover {
    opacity: 0.9;
    border-bottom: 1px solid #7777;
}

.hidden {
    display:none;
}

/* list style */
li {
    list-style-type:circle;
}

/* Simple horizontal tables */
table.simple {
    th {
        padding-right: 8pt;
        text-align: right;
    }
    td {
        text-align: right;
    }
}
