/* Map container */
DIV#mapContainer {
  width: 660px;
  height: 500px;
}

/* Small map container */
DIV#mapContainerThumb {
  width: 190px;
  height: 167px;
  background-image: url('../images/f_plattegrond_small.jpg');
  cursor: hand;
  cursor: pointer;
}

/* Draggable map */
DIV#mapDrag {
  position: absolute;
  cursor: move;
  z-index: 100;
  width: 1666px;
  height: 1462px;
  background-image: url('../images/f_plattegrond_xxl.jpg');
}

/* Draggable handle */
DIV#mapThumb {
  position: absolute;
  cursor: move;
  font-size: 0pt;
  width: 0px;
  height: 0px;
  border: 2px solid black;
  background-color: white;
  filter: alpha(opacity=40,enabled=1);
  opacity: .4;
}


