.contentToggle.initialized {
  transition: height 0.2s ease;
}
.contentToggle.-shown .contentToggle_show {
  display: none;
}
.contentToggle:not(.-shown) .contentToggle_hide {
  display: none;
}
.contentToggle_show a {
  cursor: pointer;
  font-style: italic;
  transition: height 2s ease;
  font-size: 0.8em;
  font-weight: bold;
  color: #1173ca;
	white-space: nowrap;
}
.contentToggle_show:after {
  /*
	content: ">";
  display: inline-block;
  font-size: 18px;
  margin-left: 0.3em;
  transform: scale(1.2, 0.5) translateY(0.2em);
  font-style: normal;
  font-weight: bold;
	*/
  /*
    content: "\2192";
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    margin-left: .2em;
    transform: scale(.8, 1);
    */
}
.contentToggle_hide {
  color: gray;
  font-size: 0.8em;
}
.contentToggle_content {
  overflow: hidden;
  transition: height 0.2s ease;
}
.contentToggle_content > p:first-child {
  margin-top: 0;
}
.contentToggle_toggle {
  cursor: pointer;
  font-weight: bold;
}
.contentToggle_toggle > span {
  font-weight: bold !important;
}
.contentToggle_toggleLastWord {
  white-space: nowrap;
}
.contentToggle_toggleLastWord:after {
  content: "";
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 0.5em;
  transform: translateY(-5px) rotate(45deg);
  -webkit-transform: translateY(-5px) rotate(45deg);
  transition: transform 0.2s ease;
}
.contentToggle.-shown .contentToggle_toggleLastWord:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}