table, body, input, p, pre, dt, dd {
    font-family: Verdana;
    font-size: 13px;
    text-decoration: none;
}



.okVal {
    color: green;
}

hr {
    border: 0;
    color: #aaa;
    background-color: #aaa;
    height: 1px;
    width: 700px;
}

.widthVal {width: 700px;}
/*
1600 пикселей — для компьютеров
960 пикселей — для планшетов
375 пикселей — для телефонов
*/
@media screen and (max-width: 700px) {
    .widthVal {width: 100%;}
    hr {width: 100%;}
}
.vocWidthVal {width: 540px;}
@media screen and (max-width: 540px) {
    .vocWidthVal {width: 100%;}
}

li {
    margin-top: 7px;
    margin-bottom: 7px;
}

ol ol ol {
    list-style-type: none; /* Убираем исходные маркеры */
    counter-reset: item; /* Обнуляем счетчик списка */
}

li li li::before {
    content: '1.' counter(item) ' '; /* Добавляем 1. */
    counter-increment: item; /* Задаём имя счетчика */
}

input {
    margin: 3px 0px 3px 0px;
    padding: 0px;
}

/*
table.hat {
    background: #f2f2f2;
    border: 1px #aaa solid;
    border-collapse: collapse;
    width: 640;
}
*/
.hat td {
    border: 1px #aaa solid;
    padding: 0.2em;
    text-align: center;
    height: 45;
}

table.subd {
    background: #f2f2f2;
    border: 1px #aaa solid;
    border-collapse: separate;
    border-radius: 5px;
    -moz-border-radius: 5px;
    width: 190;
}

.subd td {
    text-align: center;
    height: 40;
}

table.subdhead {
    background: #f2f2f2;
    border: 1px #aaa solid;
    border-collapse: separate;
    border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
}

.subdhead td {
    text-align: center;
    height: 40;
}

table.wikitable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}

.wikitable th,
.wikitable td {
    border: 1px #aaa solid;
    padding: 0.2em;
    text-align: center;
}

.wikitable th {
    background: #f2f2f2;
}

.wikitable caption {
    font-weight: bold;
}

a {
    text-decoration: none; /* Убирает подчеркивание для ссылок */
}

a:hover {
    text-decoration: underline; /* Добавляем подчеркивание при наведении курсора на ссылку */
}

input {
    padding: 3px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #222;
    background: #F7F7F7;
    outline: none;
    border-top: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-right: 1px solid #E7E6E6;
    border-bottom: 1px solid #E7E6E6;
}

input[type="submit"] {
    width:120px;
    float: right;
    background: #3F9D4A;
    border: none;
    overflow: visible;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}