/* page color, overall font defined in body */
body {
	background-color: LemonChiffon;
	font-family: helvetica, arial, sans-serif;
  font-size: 16px;

}

/* font styled and colored*/

h1 {
	font-style: italic;
	color: SlateGray;
}

h2 {
	font-style: italic;
	color: SlateGray;
}

/* color defined for both ols */

ol{
  color: SlateGray;
}

h3 {
	font-style: italic;
	color: SeaGreen;
}

h4 {
	font-style: italic;
	color: SeaGreen;
}

/* list style and color defined for specific ul using classes*/

ul.c { 
  list-style-type: circle;
	color: DarkBlue;
}

h5 {
	font-style: italic;
	color: DarkBlue;
}