/* make all body text colour blue */ 
body {color: rgb(0,0,255); font-family: Times; font-size: 120%; font-style: oblique}

/* indent paragraphs */
p {margin-left: 24 pt; margin-right: 24 pt}

/* indent lists */
ul {margin-left: 60 pt; margin-right: 24 pt}
ol {margin-left: 60 pt; margin-right: 24 pt}
dl {margin-left: 60 pt; margin-right: 24 pt}


/* don't underline links, and make all links red, make links flash black when activated */
a {text-decoration: none}
a:link {color: red}
a:visited {color: green}
a:active color: black}

/* format 2 custom made styles of <h1> headings. The style class "silly" as 20-point Comic Sans
   and "serious" as 20-point Arial */
h1.silly {font-family: "Comic Sans"; 
          font-size: 20pt}
h1.serious {font-family: "Arial"; 
            font-size: 20pt}
              
/* format a custom made tag "footnote" as 12-point Book Antiqua, center them and put them
10 px from the bottom*/
div.footnote {font-family: "Book Antiqua"; 
              font-size: 12pt; 
              line-height: 12pt;
              text-align: center;}