/* Map container */
DIV#mapContainer {
  width: 400px;
  height: 300px;
}

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

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

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


