/*
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;
		margin-bottom:10px;
	}
	
	/* Styles for the popular post in view */
	.wpp-list li.current {
	}
	
		/* Thumbnail styles */
		.wpp-thumbnail {
			float:left;
			clear:left;
			margin-right:10px !important;
			padding:3px !important;
			border:1px #CCCCCC solid;
			vertical-align: bottom;
			webkit-box-shadow: 0 1px 2px rgba(0,0,0,.4);
			moz-box-shadow: 0 1px 2px rgba(0,0,0,.4);
			box-shadow: 0 1px 2px rgba(0,0,0,.4);
			webkit-border-radius: 7px;
			moz-border-radius: 7px;
			border-radius: 7px;
		}

		/* Title styles */
		.wpp-post-title {
			font-size:16px;
			font-weight:bold;
		}
		
		/* Excerpt styles */
		.wpp-excerpt {
			display:inline;
		}
		
		/* Stats tag styles */
		.post-stats {
			display: inline-block;
			font-size:12px;
			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 {
			display:inline;
		}