/*
+----------------------------------------------------------------+
|																							|
|	WordPress Plugin: WP-PostRatings								|
|	Copyright (c) 2012 Lester "GaMerZ" Chan									|
|																							|
|	File Written By:																	|
|	- Lester "GaMerZ" Chan															|
|	- http://lesterchan.net															|
|																							|
|	File Information:																	|
|	- Post Ratings CSS File															|
|	- wp-content/plugins/wp-postratings/postratings-css.css			|
|																							|
+----------------------------------------------------------------+
*/


.post-ratings {
	display: block;
    width: 70px;
    position: absolute;
    top: 10px;
    right: 10px;
	
	/*width:100%;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	 background-color: #ffffff; */
}
.post-ratings-loading {
	display: none;
	height: 16px;
	text-align: left;
}
.post-ratings-image {
	border: 0px;
}
.post-ratings IMG, .post-ratings-loading IMG, .post-ratings-image IMG {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.post-ratings-text {
}
.post-ratings-comment-author {
	font-weight: normal;
	font-style: italic;
}

.rating__score {
    text-align: center;
    color: white;
    background-color: #DA6666;
    border-radius: 50%;
    font-size: 26px;
    font-family: impact;
	padding: 5px;
}

.rating__thumbs {
    text-align: center;
	margin-top: 2px;
}

.rating__thumbs img:first-child{
	margin-right: 5px;
	width: 30px;
	cursor:pointer;
	-moz-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	transform: scale(-1, 1);
	filter: FlipH;
	-ms-filter: "FlipH";
}
.rating__thumbs img:last-child{
	margin-left: 5px; 
	width: 30px;
	cursor:pointer;
	-moz-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	transform: scale(1, -1);
	
	filter: FlipV;
	-ms-filter: "FlipV";
	
}

@media (max-width: 480px) {
	.post-ratings {
		left: 20px;
		top: 95px;
	}
}