table {
    width:100%;
    text-align:center;
    border-collapse:collapse;
    border-bottom:1px solid #E5E5E5;
    border-top:1px solid #E5E5E5;
    margin-bottom:20px;
}
table td {
    padding:8px 10px;
    border-right:1px solid #E5E5E5;
}
table tr:hover {
    background-color:#E6E5FF;
}
table th {
    padding: 8px 5px;
    color: #1f1f1f;
    text-align: left;
    border-right: 1px solid #E5E5E5;
    font-weight: normal;
    background: #efefef;
}
table tr {
    border-left:1px solid #E5E5E5;
    border-top:1px solid #E5E5E5;
}


.help-container {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
    background-color: white;
}
body {
    background: white;
}
.logo {
    width: 20%;
    margin: auto;
}
blockquote {
    padding: 5px;
    margin-bottom: 5px;
    overflow: hidden;
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    border-radius: 4px;
}

h2,h3,h4 {
    text-align: center;
}


.help-container > ol {
    counter-reset: li; /* Устанавливает идентификатор */
    list-style: none; /* Удаляем стандартную нумерацию */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

ol ol {
    margin: 0 0 0 2em; /* Отступ для вложенных списков */
}
ol a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
    background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}

ol a:hover{
    background: #eee;
}

ol a:hover:before{
    transform: rotate(360deg);
}

ol a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}