html {
  /* background-image: url(images/yellow_background.jpg);*/
}

body {
  background-color: #fff7e6;
  background-repeat: repeat-x;
  background-image: url(images/main_header_back.jpg);
  margin: 0px;
  padding: 0px;
  font-family: Arial, "Century Gothic", "Trebuchet MS", Helvetica, Geneva, Swiss, SunSans-Regular;

  text-align: center;
}
 

/* algemeen alle divs */
div {
  margin: 0px;
  padding: 0px;

  text-align: left;
}


/* het centreer div */
div.center
{
  width: 820px;

  margin-left: auto; 
  margin-right: auto;
  margin-top: 0px;
}


/* specifiek per pagina */
/* header met menu */
div.header {
  width: 802px;
  height: 150px;
  background-image: url(images/pageheader.jpg);
  background-repeat: no-repeat;
}

/* en de inhoud binnen het center div */
div.contents {
    width: 801px; 
    position: relative;
}


/* default font size */
p {
	font-size: 10pt;
}



