.numberlist{
	width:auto;

}
.numberlist ol{
	            counter-reset: li;
				list-style: none;
				padding:1em;
				
			}

			
.numberlist a{
				position: relative;
				display: block;
				padding: .1em .1em .1em 1em;
				margin: .5em 0;
				background: #FFF;
				color: #444;
				text-decoration: none;
				-moz-border-radius: .3em;
				-webkit-border-radius: .3em;
				border-radius: .3em;
				
			}

.numberlist a:hover{
				background: #cbe7f8;
				text-decoration:none;
				
			}
.numberlist a:before{
				content: counter(li);
				counter-increment: li;
				position: absolute;	
				left: -1.5em;
				margin-top: -0.5em;
				background: #337ab7;
				height: 2.3em;
				width: 2.3em;
				line-height: 2em;
				border: .2em solid #fff;
				text-align: center;
				font-weight: bold;
				-moz-border-radius: 2em;
				-webkit-border-radius: 2em;
				border-radius: 2em;
				color:#FFF;
			}
