* {
    box-sizing: border-box;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
html {
    font-family: "Lucida Sans", sans-serif;
}
.header {
    background-color: #EBCA97;
    border-radius: 12px;
    border: red ridge 2px;
}
.button {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #EBCA97;
    color: #A3481B;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 12px;
    border: red ridge 2px;
    width: 100%;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.button.big {
    padding: 8px;
    margin-bottom: 25px;
}
.button:hover {
    background-color: yellow;
}
.button.selected {
    background-color: #A3481B;
    color: #EBCA97;
}
/* ********************************** */

li.selected, a.selected {
    background-color: #A3481B;
    color: #EBCA97;
}
.linklist ul {
    list-style-type: none;
    padding: 0;
}
.clear {
    clear: both;
}

.linklist ul ul {
    list-style-type: square;
    padding-left: 15px;
}
/*
.aside {
    background-color: #33b5e5;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
* */

.footer {
    background-color: #EBCA97;
    color: #A3481B;
    text-align: center;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 12px;
    border: red ridge 2px;
}
article {
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 10px 10px 0 10px;
    margin: 0 5px 10px 5px;
    border: red ridge 2px;
    float: left;
}
body, p, a, td, th {
    color: #A3481B;
}
h1, h2, h3, h4, h5, h6 {
    color: #A3481B;
    text-align: center;
}
hr {
    border: 0;
    /* red ridge 1px; */
    height: 2px;
    width: 100%;
    background: linear-gradient(to left, white 0%, gold 50%, white 100%);
    clear: both;
}

/* Commands */
a {
    font-weight: bold;
    text-decoration: none;
    padding: 0 3px 0 3px;
}
a:hover {
    background-color: yellow;
}
a.nothing, a:hover.nothing {
    background-color: transparent;
    border: 0;
}
img {
    padding: 3px;
    vertical-align: middle;
}

/* Positions */
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right, .author {
    text-align: right;
}
.float-right {
    float: right;
    margin: 5px;
}
.float-left {
    float: left;
    margin: 5px;
}

/* Table */
table {
    border-collapse: collapse;
    margin-bottom: 10px;
}

th, td, caption {
    border: gold solid 1px;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
td.noborder {
    border: 0;
}
tr:nth-child(odd) {
    background: #FCF6CF;
}
tr:nth-child(even) {
    background: #FEFEF2;
}
.detail {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}
.col15 {
    width: 15%;
}
.col85 {
    width: 85%;
}
.strike {
    text-decoration: line-through
}
.div_centre {
    display: flex;
    justify-content: center;
}
.table_centre {
    align-self: center;
}
