@media screen {

.nicetable {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.nicetable th {
  border: solid gray 1px;
  background: #AAA;
}

.nicetable td {
  border: solid gray 1px;
  padding: 4px;
  background-color: whitesmoke;
  vertical-align: top;
  font-family: sans-serif;
  font-size: 14px;
  vertical-align: top;
  cursor: pointer;
}

.nicetable .even td {
  background-color: gainsboro;
}

.nicetable td a {
  font-size: 14px;
}

.nicetable input, .nicetable textarea, .nicetable select {
  background: #EEE;
  border: solid gray 1px;
}

.nicetable tr.white td {
  background-color: #FFFFFF;
}

.nicetable tr.white2 td {
  background-color: #CCCCCC;
}

.nicetable tr.yellow td {
  background-color: #FFFF80;
}

.nicetable tr.yellow2 td {
  background-color: #CCCC66;
}

.nicetable tr.red td {
  background-color: #FF8080;
}

.nicetable tr.red2 td {
  background-color: #CC6666;
}

.nicetable tr.over td {
  background-color: #CCCCFF;
  cursor: pointer;
}

.courier {
  font-family: courier, monospace;
}

}

@media print {

.nicetable {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.nicetable th {
  border: solid gray 1px;
  background: white;
}

.nicetable td {
  border: solid gray 1px;
  padding: 4px;
  background-color: white;
  vertical-align: top;
  font-family: sans-serif;
  font-size: 11px;
  vertical-align: middle;
}

.nicetable .even td {
  background-color: white;
}

.nicetable td a {
  font-size: 11px;
}

.nicetable input, .nicetable textarea, .nicetable select {
  background: white;
  border: solid gray 1px;
}

}

