div.orgChart {
  overflow: scroll;
  margin: 0 auto;
  padding: 30px;
  direction: ltr;
  border: solid #999 1px;
}

div.orgChart .node-title {
  margin: 5px 0;
  font-size: 14px;
}

div.orgChart ul {
  list-style: none;
  margin: 4px;
  padding: 0px;
  font-size: 0.9em;
  text-align: left;
}

div.orgChart ul.stack,
div.orgChart ul.stack ul {
  text-align: center;
}

div.orgChart table {
  width: 100%;
}

div.orgChart tr.lines td.line {
  width: 10px;
  height: 20px;
  direction: ltr;
}

div.orgChart tr.lines td.top {
  border-top: 3px solid #555;
}

div.orgChart tr.lines td.left {
  border-right: 2px solid #555;
}

div.orgChart tr.lines td.right {
  border-left: 2px solid #555;
}

div.orgChart td {
  text-align: center;
  vertical-align: top;
  padding: 0px 2px;
}

div.orgChart div.node {
  padding: 10px;
  min-width: 100px;
  font-size: .9em;
  cursor: default;
  min-height: 70px;
  border-radius: 3px;
  line-height: 1.3em;
  display: inline-block;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #f3f3f3;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
@media only screen and (max-width: 1024px) {
    div.orgChart div.node {
      width: 180px;
    }
}

div.orgChart div.node img {
  border-radius: 3px;
  max-width: 120px;
  height: auto;
}

div.orgChart.interactive div.hasChildren {
  cursor: pointer;
}

div.orgChart div.node.hover {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

div.orgChart div.adjunct.node {
  position: absolute;
  margin-top: 8px;
  margin-left: -110px;
  width: 80px;
  height: 40px;
  background-color: #efefef;
}

div.orgChart div.adjunct-link {
  display: inline-block;
  position: absolute;
  margin-left: -20px;
  margin-top: 25px;
  width: 20px;
  border: 1px dashed black;
}