/* Style the tab */
.vtab {
	position:absolute;
  //float: left;
  border: 1px solid #ccc;
   
  background-color: #CCC;
  left:0.1%;
  top:10%;
  width: 10%;
  height: 90%;
}

/* Style the buttons that are used to open the tab content */
.vtab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.vtab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.vtab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.vtabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 70%;
  border-left: none;
  height: 300px;
}