ol {
    
    list-style: none; /* Remove default numbering */
    *list-style: none; /* Keep using default numbering for IE6/7 */
    font: 17px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 0em;
   
	padding-left: 400px;
	border-radius: 5px
}

ol ol {
    margin: 0 0 0 0em; /* Add some left margin for inner lists */
}
.rounded-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 0em;
    *padding: .4em;
    margin: .5em 0;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: .7em;
    transition: all .3s ease-out;  
	width: 175px;	
	border: .1em solid #653D15;

	
}

.rounded-list a:hover{
    background: #3F250B;
}

.rounded-list a:hover:before{
    transform: rotate(360deg);  
}

.rounded-list a:before{
    
    position: absolute; 
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #0e0700;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #0e0700;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
	width: 40px;

}