/* Set headings to blue */
H1, H2, H3, H4, H5, H6, H7 {color: blue}
H1 {text-align: center}
/* Use white text on black background*/
BODY {background-color: black;
      color: white}
/* For the CV table, use  black on maroon for the first column */
/* and black on silver for the second. */
TD.name {background-color: maroon;
	 color: white}
TD.data {background-color: silver;
	 color: black}
COL.name {background-color: maroon;
	  color: white}
COL.data {background-color: silver;
	  color: black}
/* And change the link colour to red, going yellow when clicked and */
/* teal when visited */
A:link {color: red}
A:active {color: yellow}
A:visited {color: teal}
/* Set horizontal rules to align centre and fill 80% of screen */
HR {width: 80%;
    text-align: center}
.centered {text-align: center}
/* Float the approval logo on the right */
IMG.approved {float: right}
/* Set the Table Headers in bold */
TH {font-weight: bold}
/* Set up emphasized font */
EM {font-style: italic}
