head,h1 {
    background: #417690;
    color: #F4F379;
}
body {
    background: white url("background.jpg");
    font-family: "Helvetica", "arial", sans-serif;
    font-size: 16px;
}
#content {
    margin-bottom: 1.7em;
}
#footer {
    border-width:1px;
    border-top: solid thick  #417690;
    background-color: AliceBlue ;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 1.4em;
    width: 100%;
}
table.match_table {
    border-width:1px;
    border-style:solid;
    border-color:gray;
    border-collapse:collapse;
    margin-left:10px;
    font-size: 100%;
}
table.result_table, table.participant_table, table.form_table {
    border-width:1px;
    border-style:solid;
    border-color:gray;
    border-collapse:collapse;
    margin-left:10px;
    font-size: 16px;
}
th {
    background: #417690;
    color: #F4F379;
    border-width:2px;
    border-style:solid;
    border-color:gray;
}
td {
    background-color: GhostWhite;
    border-width:1px;
    border-style:solid;
    border-color:gray;
}
tr.result_row:nth-child(odd) td {
    background-color: #DDE3EE;
}

td.cell_best, tr.result_row:nth-child(odd) td.cell_best {
    background-color: #FFFF91;
    font-weight:bold;
}
td.cell_worst, tr.result_row:nth-child(odd) td.cell_worst {
    background-color: Orange;
    font-weight:bold;
}
.match_ref {
    background: AliceBlue ;
    font-size: 100%;
    font-style:italic;
}
progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.75) inset;
  border: solid #000000 3px;
  border-radius: 10px;
  background: #C0C0C0;
  width: 400px;
  height: 50px;
}
/* Firefox */
progress::-moz-progress-bar { 
    border-radius: 5px;
    /* background:  url("/static/tournament/home.png");  */
    /* green vertical gradient */
    background-image: -moz-linear-gradient(
            center bottom,
            green 17%,
            rgb(84,240,84) 69%
    );
}

/* Chrome */
progress::-webkit-progress-value {
    background: green;
    border-radius: 5px;
    /* background:  url("/static/tournament/home.png"); */
    /* green vertical gradient */
    background-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(0, green),
            color-stop(1, rgb(84,240,84))
    );
    /*
    background-image: -webkit-linear-gradient(
            center bottom,
            rgb(43,194,83) 37%,
            rgb(84,240,84) 69%
    ); */
}
progress::-webkit-progress-bar {
    background: #C0C0C0;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 8px #000 inset, 0 3px 0 #444;
}
