.panel {
  margin: 0 auto;
  width: 300px;
  height: 100%;
  position: relative;
  font-size: .8em;
  border-right: solid black 2px;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}
/* -- make sure to declare a default for every property that you want animated -- */
/* -- general styles, including Y axis rotation -- */
.panel .front {
  position: absolute;
  top: 0;
  z-index: 900;
  width: inherit;
  height: inherit;
  text-align: center;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform-style: preserve-3d;
  -moz-backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.panel.flip .front {
  z-index: 900;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
}
.panel .back {
  position: absolute;
  top: 0;
  z-index: 800;
  width: inherit;
  height: inherit;
  -webkit-transform: rotateX(-180deg);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;

  -moz-transform: rotateX(-180deg);
  -moz-transform-style: preserve-3d;
  -moz-backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.panel.flip .back {
  z-index: 1000;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
}
.pad {
  vertical-align: text-bottom;
  margin: 0 auto;
  padding: 0 20px;
}
.panel-top {
  border-top: solid black 2px;
}
.panel-left{
  border-left: solid black 2px;
}
.panel-vismods {
  position: relative;
  float: left;
  display: inline-block;
  width: 190px;
  /*height: 100px;*/
}
.panel-returntype {
  position: relative;
  display: inline-block;
  width: 110px;
  /*height: 100px;*/
}
.panel-methodname {
  position: relative;
  display: inline-block;
  width: 300px;
  /*height: 100px;*/
}
.panel-parameters {
  position: relative;
  display: inline-block;
  width: 270px;
  /*height: 100px;*/
}
