/*
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.
*/

div#wpposts {
padding-bottom: 40px;
}
/* Styles the "Sorry, no data so far" message */
.wpp-no-data {
}

/* UL - Popular Posts container styles */
.wpp-list {	
font-family: 'Open Sans', sans-serif;
	
}

ul.wpp-list {
margin: 11px 0px;
border-bottom: 2px solid #e7e9ee;

}

.wpp-list ul {
margin: 0px;
}

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

		/* Title styles */
		.wpp-post-title, h2.wpp-title {
		font-weight:700;
		font-size:16px;
		color: rgb(85, 85, 85);
		line-height: 1.25em;
		}
		h2.wpp-title {
		font-size:14px !important;
		}
		
		/* Excerpt styles */
		.wpp-excerpt, .wpp-excerpt a {
		font-size:14px;
		line-height: 1.4em;
		overflow: auto;
		}

		.wpp-excerpt p {
		margin: 7px 0px 14px 0px;
        }
		
		/* 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-ratings {
		font-family: 'Open Sans', sans-serif;
		font-size:12px;
		}
		.wpp-ratings .ratings_meta {
		padding: 0px;
		background-color: white;
		display: inline;
		float: none;
		}
        .wpp-ratings .ratings_image {
	    display:none;
        }
        .wpp-ratings .ratings_meta:before {
    	content: '\2022  ';
    	color: black;
		white-space:pre;
        }
		.wpp-ratings .ratings_count {
		display: inline;
		color: black;
		font-size:12px;
}