/*
Wordpress Popular Posts plugin stylesheet
Developed by Hector Cabrera
cabrerahector.com | @cabrerahector

Use the following classes to style your popular posts list as you like.
*/

/* Styles the "Sorry, no data so far" message */
.wpp-no-data {
}

/* UL - Popular Posts container styles */
.wpp-list {	
}

	/* LI - Post container styles */
	.wpp-list li {
		overflow: hidden;
		float: none;
		clear: both;
	}
	
	/* Styles for the popular post in view */
	.wpp-list li.current {
	}
	
		/* Thumbnail styles */
		.wpp-thumbnail {
			display: inline;
			float: left;
			margin: 0 5px 0 0;
			border: none;
		}

		/* Title styles */
		.wpp-post-title {
		}
		
		/* Excerpt styles */
		.wpp-excerpt {
		}
		
		/* Stats tag styles */
		.wpp-meta, .post-stats {
			display: block;
			font-size: 0.8em;
			font-weight: bold;
		}
			
			/* Comments count styles */
			.wpp-comments {
			}
			
			/* Views count styles */
			.wpp-views {
			}
			
			/* Author styles */
			.wpp-author {
			}
			
			/* Post date styles */
			.wpp-date {
			}
			
			/* Post category styles */
			.wpp-category {
			}
		
		/* WP-PostRatings styles */
		.wpp-rating {
		}
/* サイドバーの人気記事一覧レイアウト */
ul.wpp-list li {
  border-bottom: 1px dashed #bbb;
  counter-increment: wpp-count;
  position: relative;
}
ul.wpp-list li:before {
  display: block;
  padding: 15px 15px;
  color: #fff;
  background-color: #333;
  content: counter(wpp-count);
  position: absolute;
  opacity: 1;
  z-index: 10000;
  border-radius: 0px;
  top: 0px;
  left: 0px;
}
/***** Popular Post Widget for Blogger *****/
.popular-posts{background:#f6f6f6; margin:5px; margin-top:-5px;}
.popular-posts ul{border-radius:3px; box-shadow:0 3px 4px 3px #ededed; font-size:10pt;margin:0 auto;padding:0}
.popular-posts ul li{border:0px solid #fff; background:#f6f6f6; line-height:2em;list-style-type:none;margin:0;overflow:hidden;padding:1px 37px!important; margin-bottom:1.5px;}
.popular-posts ul li:hover{background:#c9d5ea;background:linear-gradient(135deg,#f4f8ff 0,#3b95bf 50%,#3b95bf 50%,#f4f8ff 100%);}
.popular-posts ul li a{padding:1px 20px;margin:-10px -20px;}
.popular-posts a{font-weight:bold; color:#666; text-decoration:none; font-size:12px;}
.popular-posts a:hover{color:#555;}
#PopularPosts1 h2{display:none;}