#pp-container ol {
	counter-reset: li;
	list-style: none;
	margin-bottom: 1em;
	padding: 0;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#pp-container a {
	position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    margin: .5em 0 .5em 1em;
    background: #ddd;
    color: #444;
    text-decoration: none;
	transition: all 0.25s ease 0s;
	border-radius: .3em;
}

#pp-container a:hover {
	background: #444;
}

#pp-container a:before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
    left: -1.6em;
    top: 50%;
    height: 2em;
    width: 2em;
    margin-top: -1.3em;
    line-height: 2em;
	color: #666;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	transition: all 0.25s;
}

#pp-container a:hover:after {
    color: #ccc;
}

#pp-count {
	display: block;
	float: right;
	color: #222;
	border-style: solid;
	border-color: #666;
	border-width: 1px;
	border-radius: .4em;
	background-color: #f6f6f6;
	font-size: 95% !important;
	margin-top: -1.5em;
}