/* Make all body text black-coloured 10-point Arial with 12-point vertical spacing
between lines of text and 30 pixels margins. Make the background white-coloured.
*/
body {font size: 10pt;
      font-family: "Arial";
      color: black;
      margin: 30px;
      background: white;
      line-height: 12pt;}
     

/* Indent paragraphs */
p {margin-left: 10pt;
  {margin-right: 10pt; }

/* Make headings Arial with 20-point line spacing. If user don't have Arial,
   use Helvetica */
h1 {font: 24pt Arial, Helvetica;
    font-weight: bold;
    line-height: 20pt; } 

h2 {font: 20pt Arial, Helvetica;
    font-weight: bold;
    line-height: 20pt; } 

/* Underline links, and make all links blue.
   Make links flash purple went activated. */
a:link {color: blue; }
a:visited {color: blue; }
a:active {color: #ff00ff; }
