/* Overlay properties for a 3D rendering in front of a HTML element */

/* The "container" element that has the overlaid elements as its children.
   Notice that the height of this "container" needs to be larger enough
   to contain all of its children. */
#W2_my_overlay {
  position: relative;
  height: 400px;
}

/* The canvas above the HTML elements. */
#W2_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  z-index: 1;
}

/* The HTML element that is below the canvas. */
#W2_text_description {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  z-index: 0;
}

