/* dayfile.php */

#daytable {
    width: 600px;
}

#daytable th {
    color: white;
    font-size: 0.9em;
    background-color: #44aa33;
    vertical-align: bottom;
    border: 1px solid #666;
    line-height: 120%;
    text-align: center;
}

#daytable td {
    font-size: 0.9em;
    vertical-align: top;
    width: 9%;
    text-align: center;
    border: 1px solid #ddd;
    padding: 2px;
    background-color: #f8f8f8;
}

#daytable th.hd {
    color: white;
    font-size: 0.9em;
    background-color: #77cc6d;
    vertical-align: middle;
    border: 1px solid #999;
    line-height: 120%;
    text-align: center;
    font-weight: normal;
}

#daytable .day {
    width: 4%;
    background-color: #77cc6d;
    border: 1px solid #999;
    color: white;
}

#daytable td.high {
  font-weight: bold;
  color: #fff;
  background-color: #ff0000;
}
#daytable td.low {
  font-weight: bold;
  color: #fff;
  background-color: #0099ff;
}