/* External CSS file: style.css */

/* Font family */
body {
  font-family: Arial
}

/* blue h1 headings */
h1 {
  color: #0066cc; 
}

/* green h1 headings */
h2 {
  color: #009966;
}

/* two 2 different numbering, un-numbered lists with 2 different bullet types */
ul.b { list-style-type: square; }
ul.a { list-style-type: circle; }
ol.c { list-style-type: upper-roman; }
ol.d { list-style-type: lower-alpha; }