/* default settings for the body */
body {
  background: bkgnd.gif;
  color: black;
  font-family: sans-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: sans-serif;
  font-size: medium; 
}

/* settings for table cells */
td {
  font-family: sans-serif;
  font-size: small; 
}

/* settings for paragraphs */
p { font-family: sans-serif; }

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

/* class selectors */
.heading { background: #CCCCCC; color: #000000; }
.event { background: #CCCCCC; color: #000000; }
.normal { background: 'bkgnd.gif'; color: #000000; }

