.tabbed_area {
  position: absolute;
  touch-action: none;
}

canvas {
  border: 1px solid black;
  background-color: rgb(196, 196, 196);
  z-index: 1;
}

ul.tabs li {
  display: inline;
}

ul.tabs li a {
  background-color: #464c54;
  color: #ffebb5;
  padding: 1px 1px 1px 1px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

ul.tabs li a.active {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.content {
  position: absolute;
  border: 1px solid black;
}

#content_2 {
  width: 100%;
  height: 100%;
  display: none;
}

#content_3 {
  display: none;
}

div {
  width: 90%;
  height: 90%;
}

textarea{
  width: 100%;
  height: 90%;
}

html {
  -ms-touch-action: none;
  /*/ Direct all pointer events to Javascript code for microsoft tablet*/
}