ol{
	counter-reset: li; /* Initiate a counter */
	list-style: none; /* Remove default numbering */
	*list-style: decimal; /* Keep using default numbering for IE6/7 */
	padding: 0;
	margin-bottom: 4em;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.rounded-list a{
	position: relative;
	display: block;
	padding: .4em .4em .4em 1.5em;
	*padding: .4em;
	margin: .5em 0;
	background: #ddd;
	color: #000;
	text-decoration: none;
	border-radius: .3em;
	transition: all .3s ease-out;	
	font-weight: normal;
	font-size:8pt;
	line-height:160%;
}

.rounded-list a:hover{
	background: #eee;
}

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