@media screen
{ 
  body
  {
    background-color: white ;
  }
  p.fine_print 
  {
    font-style: italic ;
    font-weight: bold ;
  }
  td.left_cell
  {
    font-size: small ;
  }
  p.normal
  {
    font-size: small
  }
  p.excited
  {
    font-style: italic ;
    font-weight: bold ;
    font-size: large ;
  }
  p.header_text
  {
    text-align: center ;
    font-weight: bold ;
  }
  h1.page_title
  {
    color: #800080;
    font-family: Arial Rounded MT Bold;
    font-size: large ;
    text-align:center ;
  }
  p.footer
  {
    font-weight: bold ;
    text-align: center ;
  }

}

@media print
{ 
  p.fine_print
  { 
    font-style: italic ;
  }

  p.excited
  { 
    font-style: italic ;
    font-weight: bold ;
  }

  h1.page_title
  { 
    font-family: Arial Rounded MT Bold;
    font-size: x-large ;
  }

  p.footer
  {
    font-weight: bold ;
  }
}

span.foo
{
  font-style: italic ;
}
