/*WordPress Popular Postsプラグイン*/
#popular-post ul.wpp-list li{
	border: #ccc 0px dotted;
	margin-bottom:10px;
}
#popular-post ul.wpp-list li:last-child{
	border-bottom: #fff 0px dotted;
}
#popular-post {
	counter-reset: wpp-ranking;
}
#popular-post ul{
	list-style-type: none!important;
	padding:10px;

}

#popular-post ul li:before {
	color:#fff;
	content: counter(wpp-ranking, decimal);
	counter-increment: wpp-ranking;
	text-align:center;
	opacity:0.7;
	font-size:12px;
	float:left;
	line-height:25px;
	width: 25px;
	height: 25px;
	background-color:#cccccc;
	border-radius: 2px;
	-moz-border-radius: 2px;
}
#popular-post ul li:first-child:before {
	background-color:#696969;
}
#popular-post ul li:nth-child(2):before {
	background-color:#000000;
}
#popular-post ul li:nth-child(3):before {
	background-color:#000000;
}
#popular-post li img {
	float:left;
	margin-left:-25px;
}
