/*  updated 8-05-03 */
 body {
  color: darkblue;
  background: gray;
  /* background: url(./pics/luna-bkground.jpg); */ 
  margin-top: 0%;
  margin-left: 0%;  /* komt overeen met: leftmargin="0" */
  margin-right: 0%;
  font-family: Verdana, sans-serif; 
  }
  
 h1,h2,h4 { 
  font-family: Verdana, sans-serif;
  text-align: center;
  }

 strong { 
  color: blue;
  text-align: center;
  }

 div.box {
  padding: 5px;
  margin-top: 0.5em;
  margin-right:5px;
  font-size: 10px;
  text-align: justify;
  border: solid; 
  border-width: thin;
  border-color: darkblue;
  background-color:white;
  }

 div.info {
  font-family: Verdana, sans-serif;
  font-size: 80%;
  color: darkblue;
  }

 .kop {
  font-style: bold;
  font-family: Verdana, sans-serif;
  color: darkblue;
  font-size: 90%;
  text-align: center;
  line-height: 200%; 
  }

 .subkop {
  text-align: center;
  font-style: bold;
  font-family: Verdana, sans-serif;
  color: darkblue;
  }

 .menubar {
  width:		800px;
  font-family:		Arial, Verdana, Helvetica, sans-serif;
  text-decoration: 	none;
  font-size:		10pt;
  color:		#000099;
  font-weight:		normal;
  border-style:		outset;
  border-width:		thin;
  background-color:	lightblue;
  padding:		3px;
  }

 .page {
  background:   lightgrey;
  width:	800px;
  margin-left:	0%;
  margin-right:	0%;
  border-style: none;
  border-color: ligtblue;
  border-width: thin;
  text-align: left;
  padding: 1em;
  }

 .red {
  font-family: Verdana, sans-serif;
  font-size: 11pt;
  font-style: bold;
  color: red;
  text-align: center; 
  }

 .star {
  font-family: Verdana, sans-serif;
  font-size: 120%;
  font-style: bold;
  color: darkblue;
  text-align: center; 
  }

 .update {
  font: Verdana, sans-serif;
  font-size: 8pt;
  font-style: normal;
  color: darkblue;
  text-align: center;
  }
  
/*  Pseudo-Classes*/

 DIV.menubar {text-align: center; }
 DIV.menubar A:link { color: blue; padding:1px; text-decoration: none; }    /* for unvisited links     */
 DIV.menubar A:visited { color: blue; padding:1px; text-decoration: none;} /* for visited links       */
 DIV.menubar A:active { color: red; font-style: bold; padding:1px; text-decoration: none; }   /* when link is clicked    */
 DIV.menubar A:hover { color: white; background-color: darkblue; padding:1px; text-decoration: none; }  /* when mouse is over link */  

:link { color: blue }    /* for unvisited links     */
:visited { color: blue } /* for visited links       */
:active { color: red }   /* when link is clicked    */
:hover { color: red }    /* when mouse is over link */

