/* foreground colors */
H2,H1 {  /* occurs in heading */
  COLOR: #000000; }
/* these all will occur on top of every color below */
A:active {    
  COLOR: #00ff00; }
A:link {     
  COLOR: #008000; }
A:visited {    
  COLOR: #008080; }
TD {    
  COLOR: black; }
BODY {
  COLOR: black;
}
.curpage { /* curpage is if you are on page 2: 1 | '2' |  3 */
  color: red; }

/* background colors */
BODY { /* ends up being a border around everything. can set to headcolor */
  background: #D3DCE3;
}
.headcolor { /* underlying color at head and bottom line of page */
  background: #D3DCE3 }
.midarea { /* middle area background */
  background: #c3d3ca }
.greenback { /* this is effectively the middle area when in tabular output*/
  background: #c3d3ca; }
.greenhead { /* heading row on the tabular table */
  background: #B2F6B7; }
.green0	{ /* color #1 to use in tabular table rows*/
  background: #DDDDDD; }
.green1 { /* color #2 to use in tabular table rows*/
  background: #CCCCCC; }
