/*
  Forces all margins to default to zero
  and all padding to default as specified
*/
* {
  margin: 0;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
}
h4 { text-align: center; font-size: 140%; font-family: Helvetica,Arial,sans-serif;
  padding-top: 5px;
  padding-bottom: 5px;
}
body { font-family: Helvetica,Arial,sans-serif; }
#divCenter720 {
/* this style sets up a screen centred area with a maximum width */
/* the first two lines do this for the proper browsers */
/* although Im not sure if it works properly in Opera */
  margin: 0 auto;
  max-width: 720px;
/* the third line is meant to do it for internet explorer */
  width:expression(document.body.clientWidth > 720? "720px": "auto" );
  padding-left: 20px ;
  text-indent: -20px ;
}
#divCenter300 {
/* this style sets up a screen centred area with a maximum width */
/* the first two lines do this for the proper browsers */
/* although Im not sure if it works properly in Opera */
  margin: 0 auto;
  max-width: 300px;
/* the third line is meant to do it for internet explorer */
  width:expression(document.body.clientWidth > 300? "300px": "auto" );
  padding-left: 20px ;
  text-indent: -20px ;
}