.ctw-window {
  margin: 0;
  padding: 8px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  border: 1px solid rgba(104, 104, 104, 0.24);
  border-radius: 4px;
}
.ctw-window .clearfix:after {
  content: "";
  clear: both;
  display: table;
}
.ctw-window .defaultFontColor {
  color: #333;
}
.ctw-window .defaultErrorAlert {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #721c24;
  background-color: #f8d7da !important;
  border-color: #f5c6cb;
  font-size: 85%;
}
.ctw-window .syntaxErrorAlert {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #004085;
  background-color: #cce5ff !important;
  border-color: #b8daff;
  font-size: 85%;
}
.ctw-window .overflowBox {
  overflow: auto;
}
.ctw-window .entityWindowContent {
  height: 85vh;
}
.ctw-window .entityWindowBodyLeft,
.ctw-window .entityWindowBodyRight {
  overflow: auto;
  height: 80vh;
}
.ctw-window #ctwFlexContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.ctw-window .ctwFlexItem25 {
  width: 25%;
}
.ctw-window .ctwFlexItem50 {
  width: 50%;
}
.ctw-window .ctwFlexItem75 {
  width: 75%;
}
.ctw-window .ctwFlexItem100 {
  width: 100%;
}
.ctw-window .ctwFlexItemPadding {
  padding-left: 10px;
  padding-right: 10px;
}
.ctw-window .entityHead {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ctw-window .entityTheCode {
  -ms-flex-preferred-size: 7em;
  flex-basis: 7em;
  cursor: pointer;
  color: #555;
  font-weight: 600;
  overflow: hidden;
  /* overflow: auto; */
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ctw-window .entityTitleAndIcons {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ctw-window .entityTheCodeInDetails {
  cursor: pointer;
  color: #555;
  font-weight: 600;
  margin-right: 10px;
}
.ctw-window .entityTitle {
  width: 100%;
}
.ctw-window .entityTitlePointer {
  cursor: pointer;
}
.ctw-window .entityPv {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.ctw-window .entityDetails {
  margin-top: 10px;
  margin-bottom: 13px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fef6e8 !important;
}
.ctw-window .entityDetailsError {
  margin-bottom: 13px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.ctw-window .entityDetails {
  width: 100%;
}
.ctw-window .entityDetails .entityDetailsContentAfterHead {
  font-size: 85%;
  margin-top: 4px;
}
.ctw-window .entityDetails .entityDetailsContent {
  padding: 4px 8px 8px;
}
.ctw-window .entityDetails .entityDetailsContent .propertyHeader {
  font-weight: 700;
}
.ctw-window .entityDetails .entityDetailsContent .property {
  margin-left: 10px;
  margin-bottom: 8px;
}
.ctw-window .entityLoading {
  font-weight: 700;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
.ctw-window .entityLoading span {
  margin-left: 2px;
  -webkit-animation-name: blink;
  animation-name: blink;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ctw-window .entityLoading span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ctw-window .entityLoading span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ctw-window .elementToFadeOut {
  -webkit-animation: fadeOut 10s linear forwards;
  animation: fadeOut 10s linear forwards;
  border-radius: 2px;
  padding-bottom: 1px;
}
@-webkit-keyframes fadeOut {
  0%,
  90% {
    background-color: #fbdaa0;
  }
  to {
    background-color: transparent;
  }
}
@keyframes fadeOut {
  0%,
  90% {
    background-color: #fbdaa0;
  }
  to {
    background-color: transparent;
  }
}
.ctw-window .entityWindow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: hidden;

  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.ctw-window .entityWindow .entityWindowContent {
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff !important;
  margin: 3% 5%;
  padding: 10px;
}
.ctw-window .entityWindow .entityWindowBodyTitle {
  font-weight: 700;
  font-size: 1.2em;
  color: #404040;
  margin-bottom: 6px;
  margin-right: 0;
  border-bottom: 1px solid #ccc;
}
.ctw-window .entityWindow .entityWindowBody {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ctw-window .entityWindow .entityWindowBodyLeft {
  width: 35%;
  border-right: 1px solid #ccc;
  padding-left: 20px;
  padding-right: 20px;
}
.ctw-window .entityWindow .entityWindowBodyRight {
  width: 65%;
  padding-left: 20px;
  padding-right: 20px;
}
.ctw-window .entityWindow .propertyHeader {
  font-weight: 700;
  margin-bottom: 8px;
}
.ctw-window .entityWindow .property {
  margin-left: 10px;
  margin-bottom: 15px;
}
.ctw-window .entityWindow .subproperty {
  font-size: 85%;
  font-style: italic;
  padding-right: 8px;
}
.ctw-window .entityWindow .parentcode {
  font-weight: 700;
  margin-right: 4px;
}
.ctw-window .entityWindow .propertyHeaderCodingNote,
.ctw-window .entityWindow .propertyHeaderPostcoordination {
  background-color: #e8e8f0;
  padding: 2px 10px 4px;
}
.ctw-window .entityWindow .propertyHeaderCodingNoteSub {
  margin-left: 10px;
}
.ctw-window .entityWindow .idclass {
  color: #606060;
  font-style: italic;
  margin-right: 2px;
  font-size: 0.8em;
  vertical-align: bottom;
}
.ctw-window .entityWindow .orangetextbutton {
  font-size: 0.8em;
  color: #df7030;
  margin-left: 8px;
  text-decoration: none;
  vertical-align: bottom;
}
.ctw-window .entityWindow .markdownDefinition li {
  list-style-type: disc;
}
.ctw-window .entityWindow .markdownDefinition table td {
  border-bottom: 1px solid #ddd;
  padding: 4px 20px 4px 0;
}
.ctw-window .entityWindow .markdownDefinition table th {
  border-bottom: 1px solid #ddd;
  padding: 4px 20px 4px 0;
  text-align: left;
}
.ctw-window .entityWindow .markdownDefinition table ul {
  margin-left: 0;
  padding-left: 0;
}
.ctw-window .entityWindow .markdownDefinition table li {
  list-style: none;
}
.ctw-window .openicon {
  margin-right: 4px;
}
.ctw-window .entityHead:hover > .openicon {
  display: inline;
}
.ctw-window .closeicon {
  font-size: smaller;
  color: #777;
  cursor: pointer;
  margin-right: 4px;
  vertical-align: text-top;
}
.ctw-window .closeicon:hover {
  color: #333;
  background-color: #eee;
}
.ctw-window .dimensionicon {
  font-size: smaller;
  color: #777;
  cursor: pointer;
  margin-right: 4px;
  margin-left: 6px;
  vertical-align: top;
}
.ctw-window .dimensionicon:hover {
  color: #333;
  background-color: #eee;
}
.ctw-window .dimensionicon2 {
  font-size: 120%;
  color: #777;
}
.ctw-window .showlink {
  font-size: 85%;
}
.ctw-window .showlink,
.ctw-window .showlinkNormalSize {
  color: #4169e1 !important;
  cursor: pointer;
  font-weight: 400;
  margin-left: 6px;
}
.ctw-window .showlinkNormalSize {
  font-size: 100%;
}
.ctw-window .showlink:hover,
.ctw-window .showlinkNormalSize:hover {
  color: #4169e1;
  text-decoration: none;
}
.ctw-window .showdetails {
  font-size: 85%;
  padding-right: 2px;
  vertical-align: 2px;
}
.ctw-window .unicodeicon {
  color: #4169e1;
  font-size: larger;
  cursor: pointer;
}
.ctw-window .mandatoryPostcoord {
  color: #d45800;
}
.ctw-window .smallericon {
  font-size: 85%;
}
.ctw-window .pacolor {
  background: #eee;
  border: 1px solid #ccc;
}
.ctw-window .pacolor,
.ctw-window .prcolor {
  padding-right: 3px !important;
  font-weight: 700;
}
.ctw-window .prcolor {
  background: #facdac;
  border: 1px solid #f8b687;
}
.ctw-window .mlcolor {
  background: #f8ee69;
  border: 1px solid #f0f00f;
  font-weight: 700;
}
.ctw-window .cncolor {
  background: #ace259;
  border: 1px solid #9ac754;
  padding: 1px 2px !important;
  font-weight: 700;
}
.ctw-window .circleicon {
  cursor: pointer;
  vertical-align: 1px;
}
.ctw-window .circleicon,
.ctw-window .circleiconWithinDetails {
  font-family: DejaVu Sans Mono;
  font-size: 9.8px;
  color: #424242;
  border-radius: 50%;
  padding: 1px 4px;
  margin-left: 2px;
}
.ctw-window .circleiconWithinDetails {
  cursor: default;
  vertical-align: 2px;
}
.ctw-window .circleiconWithinDetailsHeaders {
  font-family: DejaVu Sans Mono;
  font-size: 9.8px !important;
  color: #424242;
  border-radius: 50%;
  padding: 1px 4px;
  margin-left: 6px;
  cursor: default;
  vertical-align: 2px;
}
.ctw-window .hierarchy ul {
  list-style: none;
  padding-left: 0;
}
.ctw-window .hierarchy ul ul {
  padding-left: 18px;
}
.ctw-window .hierarchy .topul li {
  margin-bottom: 3px;
}
.ctw-window .hierarchy .collapsed,
.hierarchy .expanded {
  cursor: pointer;
  width: 16px;
  display: inline-block;
  font-size: 0.8em;
}
.ctw-window .hierarchy .collapsed {
  vertical-align: top;
}
.ctw-window .hierarchy .expanded {
  vertical-align: top;
  position: relative;
  top: 2px;
}
.ctw-window .hierarchy .empty {
  width: 16px;
  display: inline-block;
}
.ctw-window .hierarchy .codeinh {
  font-weight: 600;
  color: #505050;
}
.ctw-window .hierarchy .labelinh {
  cursor: pointer;
  width: calc(100% - 16px);
  display: inline-block;
}
.ctw-window .hierarchy .selected {
  background-color: #fef6e8 !important;
}
.ctw-window .hierarchy .labelinh:hover {
  background-color: #eee;
}
.ctw-window .hierarchy .rtitle {
  color: #2e45b1;
}
.ctw-window .hierarchy .rsubtitle {
  font-style: italic;
  color: #505050;
}
.ctw-window .entityWindowBodyLeft .hierarchy .rtitle {
  font-weight: 600;
  color: #505050;
}
.ctw-window .hierarchy .nodeError {
  border-radius: 3px;
  margin-right: 10px;
}
.ctw-window .postcoordinatedCodeLeft {
  float: left;
}
.ctw-window .postcoordinatedCodeRight {
  float: right;
}
.ctw-window .postcoordColored {
  font-style: normal;
  color: #d45800;
}
.ctw-window .postcoordAction {
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 0.9em;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 0;
  border-left: thin solid #03038d;
  background-color: #f8f8f8;
}
.ctw-window .postcoordAction .hierarchy {
  max-height: 300px;
  overflow: auto;
}
.ctw-window .postcoordActionClickable {
  cursor: pointer;
}
.ctw-window .highlightedEntity,
.ctw-window .postcoordActionClickable:hover {
  background-color: #eee;
}
.ctw-window .highlightedEntityPv {
  background-color: #eee;
  border-right: 2px solid #eee !important;
  border-bottom: 2px solid #eee !important;
}
.ctw-window .highlightedParent {
  position: relative;
}
.ctw-window .highlightedEntityArrow {
  left: -15px;
  position: absolute;
  color: #d45800;
}
.ctw-window .icdcodewpc .stemcodestyle {
  font-weight: 500;
}
.ctw-window .icdcodewpc .simplifiedcode {
  text-decoration: underline;
  display: inline-block;
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@-webkit-keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
.ctw-window .icdcodewpc .codedelimamp {
  display: inline-block;
  margin: 0 1px;
  color: #8080e0;
  font-weight: 500;
  font-size: 0.9em;
}
.ctw-window .icdcodewpc .codedelimsl {
  display: inline-block;
  margin: 0 3px;
  color: #df7030;
  font-weight: 700;
  font-size: 0.9em;
}
.ctw-window .icdcodewpc .xchaptercodestyle {
  font-size: 0.9em;
  color: #666;
}
.ctw-window .postcoordSticky {
  position: -webkit-sticky;
  position: sticky;
  top: -10px;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 20px;
  z-index: 100001;
}
.ctw-window .postcoordForSelection {
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fef6e8 !important;
  padding: 10px;
}
.ctw-window .postcoordForSelection .postcoordCode {
  font-size: 110%;
}
.ctw-window .postcoordForSelection button {
  color: #4169e1;
  background-color: #fff;
  border: 1px solid #7a7a7a;
}
.ctw-window .postcoordForSelection .postcoordForSelectionLeft {
  float: left;
}
.ctw-window .postcoordForSelection .postcoordForSelectionRight {
  float: right;
}
.ctw-window .propertyPostcoordinationSummary .pccodeset {
  list-style-type: none;
  margin: 0;
  margin-top: 0;
  margin-left: 0;
  padding: 0;
}
.ctw-window .propertyPostcoordinationSummary .liFlex {
  display: -ms-flexbox;
  display: flex;
}
.ctw-window .propertyPostcoordinationSummary .axis {
  width: 200px;
  color: #505050;
  font-size: 0.9em;
  font-weight: 400;
  color: #2e45b1;
}
.ctw-window .propertyPostcoordinationSummary .axisWithName {
  margin-top: 10px;
}
.ctw-window .propertyPostcoordinationSummary .values {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.ctw-window .propertyPostcoordinationSummary .pccode {
  font-weight: 600;
  color: #444;
  font-size: 0.9em;
  margin-right: 10px;
}
.ctw-window .propertyPostcoordinationSummary .pctitle {
  color: #444;
  font-size: 0.9em;
  margin-right: 10px;
}
.ctw-window .propertyPostcoordinationSummary .pcdelete {
  font-size: 0.8em;
  cursor: pointer;
}
.ctw-window .postcoordSearch .rtitle {
  color: #2e45b1;
}
.ctw-window .postcoordSearch .rsubtitle {
  font-style: italic;
  color: #505050;
}
.ctw-window .postcoordSearchInput input {
  margin-right: 10px;
  width: 40%;
}
.ctw-window .postcoordSearchInputToResult {
  position: relative;
}
.ctw-window .postcoordSearchResult {
  position: absolute;
  z-index: 100000;
  top: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  min-width: 40%;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-height: 300px;
  overflow-y: auto;
}
.ctw-window .postcoordSearchResult .closeSearch {
  margin-right: 10px;
  margin-left: 10px;
  cursor: pointer;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.ctw-window .postcoordSearchResult ul {
  list-style: none;
  padding-left: 0;
}
.ctw-window .postcoordSearchResult ul ul {
  padding-left: 18px;
}
.ctw-window .postcoordSearchResult .postcoordFlex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.ctw-window .postcoordSearchResult .labelinh {
  cursor: pointer;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 4px;
}
.ctw-window .postcoordSearchResult .codeinh {
  -ms-flex-preferred-size: 7em;
  flex-basis: 7em;
  font-weight: 600;
  color: #505050;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ctw-window .postcoordSearchResult .titleinh {
  width: 100%;
}
.ctw-window .postcoordSearchResult .postcoordPvs {
  font-size: small;
  background-color: #fef6e8;
  z-index: 1002;
  overflow: auto;
  margin-left: 7em;
  cursor: auto;
}
.ctw-window .postcoordSearchResult .clickinh:hover {
  background-color: #eee;
}
.ctw-window .postcoordSearchResult .searchError {
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}
.ctw-window .messageright {
  float: right;
}
.ctw-window .messageleft {
  float: left;
}
.ctw-window .wordlist ul {
  list-style: none;
  margin-left: -40px;
}
.ctw-window .wordlist li {
  cursor: pointer;
  width: 140px;
  text-indent: 0px;
  padding-left: 10px;
}
.ctw-window .wordlist li:hover {
  background-color: #eee;
}
.ctw-window .wordlist .dontChangeResult {
  color: #b0a0a0;
}
.ctw-window .entitylist ul.toplevel,
.ctw-window .entityWindow ul.toplevel {
  list-style: none;
}
.ctw-window .entitylist ul.toplevel ul,
.ctw-window .entityWindow ul.toplevel ul {
  margin-left: 40px;
}
.ctw-window .entitylist em.foundpc,
.ctw-window .entityWindow em.foundpc {
  font-weight: 700;
  font-style: normal;
  color: red;
}
.ctw-window .entitylist em.found,
.ctw-window .entitylist em.found em.wbe,
.ctw-window .entityWindow em.found,
.ctw-window .entityWindow em.found em.wbe {
  font-weight: 700;
  font-style: normal;
  color: #d45800;
}
.ctw-window .entitylist em.found em.nonwbe,
.ctw-window .entityWindow em.found em.nonwbe {
  font-weight: 400;
  font-style: normal;
  color: #d45800;
}
.ctw-window .entitylist em.foundpc em.wbe,
.ctw-window .entityWindow em.foundpc em.wbe {
  font-weight: 700;
  font-style: normal;
  color: red;
}
.ctw-window .entitylist em.foundpc em.nonwbe,
.ctw-window .entityWindow em.foundpc em.nonwbe {
  font-weight: 400;
  font-style: normal;
  color: red;
}
.ctw-window .entitylist em.wbe,
.ctw-window .entityWindow em.wbe {
  font-weight: 700;
  font-style: normal;
  color: #d45800;
}
.ctw-window .entitylist em.nonwbe,
.ctw-window .entityWindow em.nonwbe {
  font-weight: 400;
  font-style: normal;
  color: #d45800;
}
.ctw-window .searchresults h5 {
  color: #d45800;
}
.ctw-window .searchresults h4 {
  color: #d45800;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}
.ctw-window .detailsicon {
  font-size: smaller;
  color: #728ead;
  cursor: pointer;
}
.ctw-window .detailsiconatpv {
  color: #728ead;
  cursor: pointer;
  margin-left: 44px;
}
.ctw-window .browsericon {
  font-size: smaller;
  color: #d45800;
  cursor: pointer;
}
.ctw-window a.browsericon {
  text-decoration: none;
}
.ctw-window a.browsericon:visited {
  color: #d45800;
}
.ctw-window .pvs {
  font-size: small;
  background-color: #fef6e8;
  z-index: 1002;
  overflow: auto;
  margin-left: 8em;
}
.ctw-window .destinationentitiesdiv .toplevel li {
  margin-bottom: 3px;
}
.ctw-window .toplevel li {
  list-style: none;
}
.ctw-window .searchresults .title {
  text-align: left;
  margin-left: 10px;
}
.ctw-window .searchresults ul dt.thecode {
  font-weight: 700;
  color: #606060;
  text-align: left;
  cursor: pointer;
}
.ctw-window .searchresults ul dt.thecode-4 {
  width: 3em;
}
.ctw-window .searchresults ul dt.thecode-5 {
  width: 3.4em;
}
.ctw-window .searchresults ul dt.thecode-6 {
  width: 3.9em;
}
.ctw-window .searchresults ul dt.thecode-7 {
  width: 4.6em;
}
.ctw-window .searchresults ul dt.thecode-8 {
  width: 4.9em;
}
.ctw-window .searchresults ul dt.thecode-9 {
  width: 5.2em;
}
.ctw-window .searchresults ul dt.thecode-10 {
  width: 5.9em;
}
.ctw-window .searchresults ul dt.thecode-11 {
  width: 6.5em;
}
.ctw-window .searchresults ul dt.thecode-12 {
  width: 7em;
}
.ctw-window .searchresults dl {
  margin-top: 0;
  margin-bottom: 3px;
}
.ctw-window .sortoption {
  position: relative;
  float: right;
  font-size: 0.9em;
  color: #4169e1;
}
.ctw-window .listhead {
  margin-bottom: 30px;
}
.ctw-window .chdistro {
  margin-left: -40px;
  list-style: none;
}
.ctw-window .ch01 {
  background-color: #f7c3b5;
}
.ctw-window .ch02 {
  background-color: #e5cbf8;
}
.ctw-window .ch03 {
  background-color: #beeb9f;
}
.ctw-window .ch04 {
  background-color: #79bd8f;
}
.ctw-window .ch05 {
  background-color: #d0fcff;
}
.ctw-window .ch06 {
  background-color: #ededed;
}
.ctw-window .ch07 {
  background-color: #f2e088;
}
.ctw-window .ch08 {
  background-color: #95c3c7;
}
.ctw-window .ch09 {
  background-color: #ffff9d;
}
.ctw-window .ch10 {
  background-color: #c6f4d5;
}
.ctw-window .ch11 {
  background-color: #e3d2b4;
}
.ctw-window .ch12 {
  background-color: #fff7ea;
}
.ctw-window .ch13 {
  background-color: #7da626;
}
.ctw-window .ch14 {
  background-color: #bcd952;
}
.ctw-window .ch15 {
  background-color: #eefec3;
}
.ctw-window .ch16 {
  background-color: #6dbcdb;
}
.ctw-window .ch17 {
  background-color: #ff9c47;
}
.ctw-window .ch18 {
  background-color: #facdac;
}
.ctw-window .ch19 {
  background-color: #f2e088;
}
.ctw-window .ch20 {
  background-color: #94e5d5;
}
.ctw-window .ch21 {
  background-color: #d1dbbd;
}
.ctw-window .ch22 {
  background-color: #91aa9d;
}
.ctw-window .ch23 {
  background-color: #bdd4de;
}
.ctw-window .ch24 {
  background-color: #f2ebbf;
}
.ctw-window .ch25 {
  background-color: #c3cfeb;
}
.ctw-window .ch26 {
  background-color: #d7d8dc;
}
.ctw-window .ch27 {
  background-color: #d9cb9e;
}
.ctw-window .chapter {
  font-size: 0.9em;
  vertical-align: central;
}
.ctw-window .freq {
  font-style: italic;
  font-size: 0.9em;
  position: absolute;
  right: 8px;
  top: 0;
}
.ctw-window .chtitlediv {
  position: relative;
  margin-left: 10px;
  padding-right: 24px;
  padding-left: 20px;
  text-indent: -20px;
}
.ctw-window .chaptertitle,
.ctw-window .showallbutton {
  cursor: pointer;
  text-decoration: underline;
}
.ctw-window .showallbutton {
  position: absolute;
  top: -20px;
}
.ctw-window #chapters {
  position: relative;
}
.ctw-window .important {
  margin-left: 6px;
  cursor: default;
}
.ctw-window .importantlabel {
  background-color: #dbf2fe !important;
}
.ctw-window .importantlabelInDetails {
  background-color: #cde8f6 !important;
}
.ctw-window #flexisearchbtn {
  background-color: #03038d;
  color: #eee;
  padding: 1px 8px;
  cursor: pointer;
  margin-right: 2px;
  display: inline-block;
}
.ctw-window .flexisearchwarning {
  position: absolute;
  top: 30px;
  right: 6px;
  color: #03038d;
  font-weight: 300;
}
.ctw-window .flexi {
  color: #03038d;
  font-weight: 300;
}
.ctw-window .clipboard {
  color: #777;
  font-weight: 300;
}
.ctw-window .pcicon {
  color: #4169e1;
  font-size: 0.8em;
  font-weight: 300;
}
.ctw-window .notleaf {
  background-color: #ececec;
  color: #555;
  font-weight: 400;
  padding-left: 2px;
  font-size: 1.1em;
  padding-right: 2px;
}
.ctw-window .chopped {
  color: #d45800;
}
.ctw-window select {
  color: #4169e1;
}
.ctw-window .filterSwitch {
  position: relative;
  display: inline-block;
  top: 2px;
  right: 1px;
  width: 43px;
  height: 17px;
}
.ctw-window .filterSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ctw-window .filterSwitch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ctw-window .filterSwitch .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ctw-window .filterSwitch input:checked + .slider {
  background-color: #9acbb1;
}
.ctw-window .filterSwitch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #9acbb1;
  box-shadow: 0 0 1px #9acbb1;
}
.ctw-window .filterSwitch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.ctw-window .filterSwitch .slider.round {
  border-radius: 34px;
}
.ctw-window .filterSwitch .slider.round:before {
  border-radius: 50%;
}
.ctw-window .filterSwitchLabel {
  margin-right: 6px;
  margin-left: 6px;
  color: #777;
}
.ctw-window .filterSwitchStar {
  color: #d45800;
  cursor: help;
}
.ctw-window #statusFlexContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.ctw-window .statusFlexWords {
  text-align: left;
  color: #777;
}
.ctw-window .statusFlexInfo {
  text-align: center;
}
.ctw-window .statusFlexFilter {
  text-align: right;
}
.ctw-window .statusError {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
