/* ------------------------------------------------------------------
 * Fichero:  orig.css
 * Objetivo: Hoja de estilos de los originales
 * Autor:    Pedro Reina
 * Fecha:    J.6.5.2021
--------------------------------------------------------------------*/

table, th, td
  { border: 1px solid black; }

table
  { border-collapse: collapse; }

th, td
  { padding: 5px; }

table.orig
  {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  font-family: texto;
  font-size: 18px;
  }

table.orig tr:nth-child(2n+2)
  { background-color: RGB(240,255,240); }

table.orig tr:nth-child(n+2):hover
  { background-color: RGB(220,255,220); }

table.orig td
  {
  border: 1px solid green;
  padding: 5px;
  }

td.derecha
  { text-align:right; }
