.ipc-accordion {
  display: block;
  width: 100%;
}

.first-layer, .second-layer, .third-layer {
  position: relative;
  padding: 20px 0;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: left;
  cursor: pointer;
}

.second-layer {
  margin-left: 10px;
}

.third-layer {
  margin-left: 20px;
}

.first-layer ~ .ipc-accordion-content {
  margin-left: 10px;
}

.second-layer ~ .ipc-accordion-content {
  margin-left: 20px;
}

.third-layer ~ .ipc-accordion-content{
  margin-left: 30px;
}

.first-layer:before, .second-layer:before , .third-layer:before{
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 50%;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}


.third-layer:before {
  left: 0px;
}

.ipc-accordion div.ipc-accordion-content{
  display: none;
}

.first-layer.active:before, .second-layer.active:before, .third-layer.active:before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.ipc-accordion table {
  width: 100%;
}



/**
 * Documents
 */
.ipc_docs > li > a{
  text-decoration: none;
  font-size: 13px;
}

.ipc_docs > li > a > span{
  text-decoration: none;
  font-size: 14px;
  color: black;
  font-weight: bold;
}

.ipc_docs > li > div.text-editor > p {
  font-size: 13px;
}

