/* Map container */
DIV#mapContainer {
  border: 1px solid gray;
  width: 550px;
  height: 400px;
}

/* Small map container */
DIV#mapContainerSmall {
  border: 1px solid gray;
  width: 200px;
  height: 283px;
  background-image: url(../images/f_plattegrond_small.gif);
  cursor: hand;
  cursor: pointer;
}

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

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

/* Hotspot */
div.mapHotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  margin: -10px 0px 0px -10px;
}

