/**
 * This file is NOT for your custom CSS.
 * This file is will be modified or overwritten during upgrades
 */
.fxDocsImage {
  background: rgb( var(--theme-area_background_light) );
  padding: 5px;
  text-align: center;
}

.fxDocsICaption {
  display: block;
  padding-top: 10px;
  font-weight: 600;
}

.fxDocs .ipsTabs_panels.ipsTabs_contained {
  border: none;
}

/* Record Listing */
.fxDocsRow {
  padding: 20px 0;
}

.fxDocsRow .ipsType_sectionHead {
  margin-bottom: 5px;
}


/* MENU formatting */
.fxDocsMenu h2 {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgb( var(--theme-header_text),0.1);
  padding-bottom: 0;
  margin-left: 10px;
  margin-bottom: 8px;
}

.fxDocsMenu h3 {
  font-weight: 400;
  margin: 0;
  padding-left: 0;
  position: relative;
  cursor: pointer;
}

.fxDocsMenu_closed h3:before,
.fxDocsMenu_open h3:before {
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    top: 0;
    content: '\f107';
    left: -17px;
  }

.fxDocsMenu_closed h3:before {
    content: '\f105';
 }

.fxDocsMenu_closed ul {
    display: none;
  }

.fxDocsMenu > li {
  padding-left: 10px;
}

.fxDocsMenu li {
  line-height: 1.6;
  padding-left: 10px;
  margin-bottom: 2px;
}

.fxDocsMenu ul ul {
  margin-left: -13px;
  padding-left: 15px;
  border-left: 1px solid rgb( var(--theme-header_text),0.075);
}

a.fxDocsMenu_active {
  color: rgb( var(--theme-link) );
  font-weight: bold;
}

/* TOC formatting */
.tocMenu {
  float: left;
  background: rgb( var(--theme-area_background_light) );
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  width: 250px;
}

.tocMenu h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: rgb( var(--theme-header_text) );
}

.tocMenu_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tocMenu_item_h2 {
  font-size: 15px;
}

.tocMenu_item_h2:before {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.tocMenu_item_h3 {
  font-size: 13px;
  padding-left: 25px;
}

.tocMenu_item_h4 {
  font-size: 13px;
  padding-left: 40px;
}

.tocMenu a {
  text-decoration: none !important;
}

/* TOC formatting PHONES */
@media screen and (max-width: 767px) {
  .tocMenu {
   	float: none;
    width: 100%;
    margin-left: 0;
  }
}

        