H1.header {
  font-family: Times New Roman, serif;
  text-align: center;
  background: #FFFFE0;
  margin: 0%;
}

H2.header {
  text-align: center;
  background: #FFFFE0;
  margin: 0%;
}

H2.menu {
  font-family: Times New Roman, serif; 
  font-size: 20pt;
  text-align: center;
  margin: 0%;
}

P.header {
  font-family: Times New Roman, serif;
  text-align: right;
}

P.center {
  font-family: Times New Roman, serif;
  text-align: center;
}

P {
  font-family: Times New Roman, serif;
  text-align: justify;
  text-indent: 25px;	
}

BODY.main {
  border: 2px;
  padding: 5px;
}

A.menu {
  color: Black;
  font-size: 14pt;
}

td {
  padding: 10px;
  padding-left: 10px;
  padding-top: 10px
}
.rounded {
counter-reset: li; 
list-style: none; 
font: 20px "Trebuchet MS", "Lucida Sans";
padding: 0;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.rounded a {
position: relative;
display: block;
padding: .4em .4em .4em 3em; /* “âåëè÷åí padding-left */
margin: .5em 0 .5em 2em; /* „îáàâëåí margin-left */
background: #FFFFE0;
color: black;
text-decoration: none;
border-radius: .3em;
transition: .3s ease-out;
}
.rounded a:hover {background: #FFFFE0;}
.rounded a:hover:before {transform: rotate(360deg);}
.rounded a:before {
content: counter(li);
counter-increment: li;
position: absolute;
left: -1.3em;
top: 50%;
margin-top: -1.3em;
background: #FFFFE0;
height: 2em;
width: 2em;
line-height: 2em;
border: .3em solid white;
text-align: center;
font-weight: bold;
border-radius: 2em;
transition: all .3s ease-out;
}
.list4a {
    padding:0;
    list-style: none;
    counter-reset: li;
}    
.list4a li {
    position: relative;
    padding:8px 8px 6px 10px;
    margin-left: 40px;
    transition-duration: 0.3s;
}
.list4a li:before {
    border: 6px solid transparent;
    line-height: 30px;
    position: absolute;
    top: 0;
    left:-30px;
    width:42px;
    text-align:center;
    font-size: 13px;
    font-weight: bold;
    color: #FFA07A;
    counter-increment: li;
    content: counter(li);
    transition-duration: 0.3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    }
.list4a li:hover:before {
    color: #A52A2A;    
}
.list4a li:after {
    position: absolute;
    top: 0;
    left: -30px;
    width: 42px;
    height: 42px;
    border: 6px solid #FFA07A;
    border-radius: 50%;
    content: '';
    opacity: 0.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
.list4a li:hover:after {
    animation: 500ms ease-in-out 0s bounceIn;
    opacity: 1;
}    
 
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.3, 1.3, 1.3);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}