/* default settings for the body */
body {
  background: white;
  color: black;
  font-family: "Times New Roman", serif;
  margin-left: 5%;
  margin-right: 5%;
}

/* Anchor pseudo-classes for the links */
a:link    { background: transparent; color: blue; }
a:active  { background: transparent; color: red; }
a:visited { background: transparent; color: purple; }

/* settings for table headings */
/* You could also put a color setting in here, and drop the heading selector */
th {
  font-family: "Times New Roman", serif;
  font-size: small; 
}

/* settings for table cells */
td {
  font-family: "Times New Roman", serif;
  font-size: x-small; 
}

/* settings for paragraphs */
p { font-family: "Times New Roman", serif; }

/* settings for other block-level elements */
h1, h2, h3 { 
  margin-left: -5%;
  font-family: "Times New Roman", serif; 
}

/* class selectors */
.title { background: #CCCCCC; color: #000000; font-size: medium; }
.heading { background: #CCCCCC; color: #000000; }
.event { background: #CCCCCC; color: #000000; }
.normal { background: #FFFFFF; color: #000000; }


