/*
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;
    border-bottom: 1px solid #eee;
    list-style-type: none;
    margin-bottom: 10px;
    margin-right: 0;
    padding-bottom: 10px;
    text-align: left;
    width: auto;
    font-weight: normal;
    color: #4d4d4d;
    line-height: 1.2em;
	}
	
	.wpp-list li a{
    color: #4d4d4d;
	text-decoration: none;
	}
	
	.wpp-list li::before, .wpp-list li::after {
    content: "";
    display: table;
}

.wpp-list li img {
    border: 1px solid #eee;
    box-shadow: none;
    margin: 2px 10px 2px 0;
    padding: 3px;
}
	
	/* 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 */
		.post-stats {
			display:block;
			font-size:9px;
			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 {
		}