* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

.screenonly {
    text-align: center;
    margin-top: 20px;
}

.subtitle {
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 15px;
}

body {
    font-family: verdana;
}

table {
    text-align: center;
    margin: 10px auto;
    border-collapse: collapse;
    height: 450px;
}

th {
    border-right: 2px solid white;
    background-color: rgb(88, 88, 219);
    color: white;
    padding: 8px;
}

tr:nth-child(odd) {
    background-color: rgb(224, 224, 224);
}

td {
    padding: 8px;
    color: rgb(51, 51, 51);
}

.race {
    font-weight: bold;
}

.printonly {
    margin: 25px;
    margin-top: 350px;
    text-align: justify;
    font-weight: 550;
    display: none;
}

.printonly span {
    color: rgb(75, 75, 75);
    font-weight: 550;
    font-style: italic;
    text-align: justify;
}

@media print {
    .printonly {
        display: block;
    }

    .screenonly {
        display: none;
    }
}