/* text sizing gevonden op http://www.thenoodleincident.com/tutorials/typography/ */

body {
  margin: 0;
  padding: 0;
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 76%;/* font sizing in ems, baby. if you want to change anything, just change this.*/
  color: #000;
  background-color: #fff;
}

pre {/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
  font-family: monospace;
  font-size: 1.0em;
}
strong, b {
  font-weight: bold;
}

a:link {
/* original changed by ideler  color: #556795; */
  color: #0000a0;
  background: transparent;
  text-decoration: none;
}
a:visited {
/* original changed by Ideler  color: #4b587f; */
  color: #0000a0;
  background: transparent;
  text-decoration: none;
}
a:hover {
  color: #425ead;
  background: transparent;
  text-decoration: underline;
}
a:active {
  color: #ffcc00;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  text-align: left;
}
h1 { font: 180% "Verdana", sans-serif; }
h2 { font: 130% "Verdana",  sans-serif; }
h3 { font: 120% "Verdana",  sans-serif; }
h4 { font: bold 100% "Verdana",  sans-serif; }
h5 { font: italic 100% "Verdana",  sans-serif; }
h6 { font: small-caps 100% "Verdana",  sans-serif; }

