/*
 * Style sheet for the HTML 4.0 specification
 * $Id: default.css,v 1.13 1999/03/08 17:25:02 ijacobs Exp $
 */

BODY {
  background: white;
  color: black;
  text-indent: 2em:
  A:link { color: blue };
  A:visited { color: maroon };
  A:active { color: fuchsia }
}


H1.título { 
  counter-reset: par-num;
  font-weight: bold; 
  font-size: 18pt;
  line-height: 14pt; 
  font-family: Helvetica; 
  font-variant: normal;
  font-style: normal;
  font-stretch: normal;
  font-size-adjust: none;
  color : red;
  border-width: 0;
  text-align: center
}


H4 { 
  color: #000000; 
  background: #0088ff;
}


TABLE.tabla {
  width: 100%;
  border: solid black;
  border-width: 0;
}

IMG {
 float: left
}

LI {
  counter-increment: par-num;
}

P {
  counter-increment: par-num;
  before {content: counter(par-num, upper-roman) ". " }
}


