
DIV#grants {				/* no longer needed */
  position: relative;
  /* left : set in JS in grants.html */
  /* width : set in JS in grants.html */
}


TABLE { 
  border-collapse: collapse;
}

TR.border {
  border-bottom: blue solid 2px;
  /* we want bottom because we are going to reverse the order of the rows */
}

TR:nth-child(odd) {
  background-color: #EEEEFF;
}

TR:nth-child(even) {
  background-color: #DDDDFF;
}

TD {
  border: white solid 1px;
  padding: 5px;
}

TD.nowrap {
  white-space: nowrap;
}

TD.center {
  text-align: center;
}

TD.rightalign {
  text-align: right;
}

TD.printf {
  white-space: pre;
  font-family: monospace;
}



