/* SOME SAMPLE VALUES ('normal' or 'none' is also an option)
  color: [ <name> | #rgb | #rrggbb | rgb(0-255,0-255,0-255) ]

  background-color: [ <name> | transparent ]
  background-image: [ <uri> ]
  background-repeat: [ repeat | repeat-x | repeat-y | no-repeat ]
  background-position: [ top | center | bottom | <percentages> || left | center | right | percentages ]
  background-attachment: [ scroll | fixed ]

  font-family: [ "family name", generic name]
	"Times New Roman", "Times", "New York", serif
	"Arial", "Gill", "Helvetica", sans-serif
	(others) 
  font-style: [ normal | italic | (others) ]
  font-size: [ <absolute(__pt)> | <relative(__em)> | (others) ]
  font-weight: [ normal (=400) | bold (=700) | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 ]
  font-variant: [ normal | small-caps]
  font-stretch: [ ultra-condensed | extra-condensed | condensed | semi-condensed | normal | semi-expanded | expanded | extra-expanded |ultra-expanded ]
 
  text-indent: [ <length(__py,__em)> | <percentage> ]
  text-align: [ left | right | center | justify ]
  text-decoration: [ underline || overline || line-through || blink ]
  text-transform: [ capitalize | uppercase | lowercase ]
  letter-spacing: <±length(__py,__em)>
  word-spacing: <±length(__py,__em)>
 
  position:

*/



BODY { background: white; }

P { font-family: "Times New Roman", "Times", "New York", serif;
    color: black;
    text-align: justify;}

P.home { font-style: italic;
         font-size: 0.75em;
         text-align: right;}

P.center { text-align: center;}

P.left { text-align: left;}

P.right { text-align: right;}


H1 { font-family: "Times New Roman", "Times", "New York", serif;
     font-style: italic;
     font-weight: bold;
     font-size: 2em;
     color: black;
     text-align: center;}

H2 { font-family: "Times New Roman", "Times", "New York", serif;
     font-style: italic;
     font-size: 1.5em;
     color: black;
     text-align: center;}

H3 { font-family: "Times New Roman", "Times", "New York", serif;
     font-style: italic;
     font-size: 1.2em;
     color: black;
     text-align: center;}

H4 { font-family: "Times New Roman", "Times", "New York", serif;
     font-style: italic;
     font-size: 1.2em;
     color: black;
     text-align: left;}

A:link { color: blue;
         text-decoration: none;}

A:visited { color: red;
            text-decoration: none;}

A:active { color: maroon;
           text-decoration: none;}

A:hover { color: maroon;
          text-decoration: none;}

