/* supplement.css — восполнение недостающих стилей (Шаг 9)
   Заголовки и боковое меню сайта были свёрстаны как text-image (GIFBUILDER):
   реальный текст лежит в HTML (span.ir / прямой текст), а показывалась
   фоновая картинка через text-indent:-9999em. Больше половины этих картинок
   в архиве отсутствуют (web.archive.org был offline) — блоки становились
   пустыми. Показываем настоящий текст и убираем зависимость от картинок:
   единообразно для всех таких заголовков (и уцелевших, и потерянных),
   что заодно устраняет сетевой футпринт. Верхнее меню (#main_nav) не трогаем —
   его картинки восстановлены копированием уцелевших вариантов той же метки. */

/* --- reveal image-replacement text --- */
h1.pagetitle, #pagetitle,
h2#cattitle, #cattitle,
h2[style*="typo3temp/GB"],
#local_nav li a .localnav_ir {
  text-indent: 0 !important;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}

h1.pagetitle .ir,
h2#cattitle .ir,
h2[style*="typo3temp/GB"] .ir,
#cattitle .ir {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
}

/* --- typography for revealed text --- */
h1.pagetitle, #pagetitle {
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 1.9em;
  line-height: 1.15;
  font-weight: bold;
  color: #f4aa00;
  margin-bottom: 12px;
}

h2#cattitle, #cattitle {
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 1.3em;
  font-weight: bold;
  color: #f4aa00;
  margin: 0 0 6px 28px;
}

h2[style*="typo3temp/GB"] {
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 1.35em;
  font-weight: bold;
  color: #34383a;
  margin-bottom: 8px;
}

#local_nav li a .localnav_ir {
  display: block;
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 1.35em;
  font-weight: bold;
  color: #34383a;
  margin-bottom: 2px;
}
#local_nav li a:hover .localnav_ir,
#local_nav .active a .localnav_ir {
  color: #f4aa00;
}
