/* Notes
padding is the space between the content and the border 
margin is the space between the surrounding the border 
*/


/************************ The body ***************************/
body { 
	/* background black */
	background:rgb(0,0,0); 
}   

/************************ The div tag with class "IntroBlock" ***************************/
div.IntroBlock {
  display:block;
  width: 100%;
  height: 25px;
  text-align: center;

  margin: 2px 0px 2px 0px;

  /* gebruik veel padding omdat vertical-alignment niet goed werkt. */
  padding: 25px 0px 25px 0px;

}

/************************ The div tag with id "Beleggen" ***************************/
div#Beleggen {
  background:#7BD3A5;
}

/************************ The div tag with id "Computers" ***************************/
div#Computers {
  background:#C6C3C6;
}

/************************ The div tag with id "Stamboom" ***************************/
div#Stamboom {
  background:#FFFFD6;
}


