#tree {
  position: absolute;
  top:70px;
  left: 10px;
  overflow: auto;
}

#webglcanvas {
  /* The CSS background works only if the renderer is set to 'alpha=true' */
  background:-moz-linear-gradient(#000000, #ffffff);		/* Firefox 3.6+ */
  background:-ms-linear-gradient(#000000, #ffffff);		/* Internet Explorer 10 */
  background:-webkit-linear-gradient(#000000, #ffffff);	/* Safari 5.1+, Chrome 10+ */
  background:-o-linear-gradient(#000000, #ffffff);		/* For Opera 11.1 to 12.0 */
  background:linear-gradient(#000000, #ffffff);			/* Standard syntax */
  position: absolute;
  /* top: 60px; */
  left: 0px;
  top: 56px;
  height: calc(100% - 100px);
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

#objectname {
  position: absolute;
  right: 10px;
  top: 70px;
  font-family: Monospace;
  color: #eee;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 40%;
  height: 30px;
  border: solid 1px black;
  border-radius: 5px;
}

#obj_view_div {
	overflow: hidden;
}



