/* homepage welcome section fullwidth */
#welcome-content, .home-layout .wrap__page-content {
    float: left;
    width: 100%;
    padding: 0 0 0 0;
}

/* flex row */
.row {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}
.col-85 {
    flex-basis: 85%;
}

/* small column mostly for homepage content */
.col-15 {
    flex-basis: 15%;
    margin-right: 10px;
}


/* table fixes */
table {
    border-collapse: collapse;
    margin: 10px 0;
    table-layout: fixed;
    min-width: 250px;
    width: 250px;
}
th {
    border-bottom: 0px solid #0067a9;
    font-weight: 600;
    padding: 10px 0;
    text-align: left;
}
td {
    border: 1px solid #004571;
    padding: 10px 10px;
}