@charset "UTF-8";
/* CSS Document */


* {margin: 0; padding: 0;}

html, body {
    height:   100%;
    width:    100%;
    overflow: auto;
}

body {
    min-width:  800px;            /* Deze twee bepalen de minimale  */
    min-height: 600px;            /* hoogte en breedte van de site. */
    border:0;
    color: black;
    position:absolute;
    clip:auto;
    font-family:                  /* Het font dat de site gebruikt. */
      "HelveticaNeue-Light",      /* De browser kiest de eerste uit */
      "Helvetica Neue Light",     /* de lijst die voorhanden is.    */
      "Helvetica Neue",           /* */
      Helvetica,                  /* */
      sans-serif;
    font-size:    16px;           /* Standaard font-eigenschappen   */
    line-height:  16px;           /*  (vooral voor het menu)        */
    font-weight: 200;             /* */
}

/* basic building blocks */

div.layer {
	position: absolute;
	height:   100%;
	width:    100%;
	overflow: hidden;
	left: 400;
	top: 400;
}

div.canvas {
    position: absolute;
    width:    100%;
    height:   100%;
}

div.active {
    position: absolute;
    width:    100%;
    height:   100%;
    background-color:#000000;     /* De kleur van geactiveerde vlakken. */
    opacity:0.8;                  /* Opacity - standaard - tussen 0 en 1; */
    filter:alpha(opacity=80);     /* Opacity - explorer  - tussen 0 en 100; */
}

div.activeText {
    color: white;                 /* De kleur van geactiveerde text. */
}

/* plaatje */

#bg {
    position: absolute;
    bottom: 0px;
    right:  0px;
    min-height: 100%;
    min-width:  100%;
}

