<!--

/*

  No arquivo HTML (entre as TAG's <HEAD> e </HEAD>):
  --------------------------------------------------
  <link rel="stylesheet" type="text/css" href="este_arquivo.css">

*/

html
   {
      display      : block;    /* exibe a página */
      background   : #ffffe7;  /* cor de fundo do site */
      /* background-image: url(/imagens/arquivo.jpg); */
   }

body
   {
      font-family  : Verdana, Helvetica, Arial, Sans-Serif;  /* fontes do site */
      color        : #000000;  /* cor do texto */
      font-size    : 10pt;     /* tamanho da fonte do texto  */
      font-style   : normal;   /* estilo da fonte */  
      font-weight  : bold;     /* acrescenta negrito ao link */
      text-align   : justify;  /* alinhamento do texto */
      line-height  : 23pt;     /* altura entre as linhas do texto */
      margin-left  : 15pt;     /* marqem esquerda */
      margin-right : 23pt;     /* margem direita */
      margin-top   : 5pt;      /* margem superior */
   }

a:link  /* link que ainda nao foi visitado pelo internauta */
   {
      color           : #921c1c;  /* cor do texto do link */
      text-decoration : none;     /* retira o traço embaixo do link */
      font-weight     : bold;     /* acrescenta negrito ao link */
   }

a:visited  /* link que ja foi visitado pelo internauta */
   {
      color           : #921c1c;  /* cor do texto do link */
      text-decoration : none;     /* retira o traço embaixo do link */
      font-weight     : bold;     /* acrescenta negrito ao link */
   }

a:hover  /* quando o internauta passa o ponteiro do mouse em cima do link */
   {
      color           : black;      /* cor do texto do link */
      text-decoration : underline;  /* acrescenta um traço embaixo do link */
   }

a:active  /* quando o internauta clica no link */
   {
      color           : black;      /* cor do texto do link */
      text-decoration : underline;  /* acrescenta um traço embaixo do link */
   }

pre  /* texto pré formatado da TAG HTML pre */
   {
      font-family : Courier;  /* fonte do texto */
   }

h1  /* configura a TAG HTML h1 */
   {
      font-size        : 20pt;
      font-family      : Helvetica, Verdana, Bitstream Vera Sans, Arial, sans-serif;
      font-weight      : bold;
      text-decoration  : none;
      text-align       : center;
      color            : #18205A;
      background       : #f5f5d3;
      line-height      : 20pt;
      letter-spacing   : 0pt;
      margin-left      : 20pt;
      margin-right     : 20pt;
      margin-top       : 15pt;
      border-width     : 4pt;
      border-style     : solid;
      border-color     : #7c7325;
      padding          : 15pt;
      position         : relative;
   }

h3  /* configura a TAG HTML h1 */
   {
      font-size        : 10pt;
      font-family      : Helvetica, Verdana, Bitstream Vera Sans, Arial, sans-serif;
      font-weight      : bold;
      text-decoration  : none;
      text-align       : center;
      color            : #18205A;
      background       : #f5f5d3;
      line-height      : 20pt;
   }

h4  /* configura a TAG HTML h1 */
   {
      font-size        : 10pt;
      font-family      : Helvetica, Bitstream Vera Sans, Arial, sans-serif;
      font-weight      : bold;
	  font-style       : italic;
      text-decoration  : none;
      text-align       : justify;
      color            : #18205A;

      margin-left      : 50pt;
      margin-right     : 50pt;

      line-height      : 20pt;
   }

-->