/* Правила для печатной версии представления данных. */

@media print {
  body {
    color: #000;
    font: 12pt "Times New Roman", Times, serif;
  }

  /* Скрываем элементы, не требующиеся в печатной версии:
     "шапку", блоки навигации и "подвал". */
  #header, #hmenu, #menusupport, #footer, .menu, .special {
    display: none;
  }
  /* Скрываем элементы, не требующиеся как в печатной версии,
     так и в версии для карманных компьютеров: */
  .no {
    display: none;
  }

  /* Оформление заголовков в основном тексте: */
  #text h1, #text h2 {
    font-family: Arial, Helvetica, sans-serif;
  }
  #text h1 {
    font-size: 16pt;
  }
  #text h2 {
    font-size: 14pt;
  }

  /* Представление списков в основном тексте: */
  #text ul, #text ol {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* Оформление ссылок в основном тексте: */
  #text a {
    color: #000;
    text-decoration: none;
  }

  /* Оформление таблиц: */
  table {
    border-collapse: collapse;
    border: solid 1px #000;
  }
  td, th {
    padding: 5px 10px;
    border: solid 1px #000;
  }
  th {
    text-align: center;
    font-weight: bold;
  }
  td {
    font-size: 80%;
  }
  .cbold {
    text-align: center;
    font-weight: bold;
  }
  .center {
    text-align: center;
  }
  .ital {
    font-style: italic;
    white-space: nowrap;
  }
}