/*
Final Project
Emma Bell
5/28/16

*/
table.derbySchedule { 
    border: 10px inset saddlebrown; 
    color: darkgreen;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    width: 100%;   
}
table.derbySchedule th, table.derbySchedule td { 
    border: 1px solid saddlebrown;
}
table.derbySchedule thead { 
    background-color: darkseagreen; 
    font-size: 15px;
}
table.derbySchedule col.firstCol { 
    background-color: darkseagreen;
    width: 8%;
}
table.derbySchedule col.otherCols { 
    width: 16%;
    background-color: powderblue;
}
table.derbySchedule thead tr {
    height: 40px;
}
table.derbySchedule tbody tr {
    height: 55px;
}
table.derbySchedule tbody td { 
    padding: 6px; 
    text-align: center;
    vertical-align: top;
}
table.derbySchedule caption { 
    caption-side: top; 
    text-align: center;
    font-style: italic;
    font-size: 10px;
}