@charset "UTF-8";
/* CSS Document */



ol li {
    position: relative;
   padding:1px;
   

    background-color: transparent;
   text-indent: -9999px;
    text-decoration: none;
    transition: all 0.3s ease-out 0s;
    line-height: 0;
-webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);

}

ol li:after {
    position: absolute;
    content: "";
    border: 0.5em solid transparent;
    left: 0;
    top: 50%;
    margin-top: -0.5em;
    transition: all 0.3s ease-out 0s;
    background-color: transparent;
}
ol li:before {
    content: "";
    counter-increment: li;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1em;
    background: transparent;
    
    height: auto;
    width: auto;
    line-height: 0;
    text-align: center;
    font-weight: normal;
}
