@charset "utf-8";
/* CSS Document */
.tree{
  padding-left: 0;
}

.tree ul{
  list-style: none;
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.tree li{
  margin: 6px 0;
  position: relative;
  padding: 0 0 0.5em 1.5em;
}

.tree ul::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background: rgba(180, 148, 90, 0.35);
}

.tree li::before{
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 33px;
  height: 1px;
  background: rgba(180, 148, 90, 0.35);
}

.tree a{
  text-decoration: none;
}

.tree a:hover{
  text-decoration: underline;
  text-underline-offset: 0.18em;
}  