/*
+----------------------------------------------------------------+
|                                                                |
|   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: inline-block;
    position: relative;
    width: auto;
    opacity: 1;
    font-size: 0;
    color: transparent;
}

/*span is added in main.js file*/
.post-ratings > img {
    position: relative;
    z-index: 2;
    opacity: 0;
}

.post-ratings > span {
    position: absolute;
}
.post-ratings > span:after{
    color: #e3e1e1;
    font-size: 16px;
    font-family: 'FontAwesome';
    content: "\f005";
    position: relative;
    left: -1em;
    z-index: 1;
}

.post-ratings > img[src*="rating_on"] + span:after{
    content: "\f005";
    color: #f9a450;
}

.post-ratings > img[src*="rating_half"] + span:after{
    content: "\f123";
}

.post-ratings > img[src*="rating_over"] + span:after{
    content: "\f005";
    color: #e23751;
}


.post-ratings-loading {
    display: none;
    height: 16px;
    text-align: left;
}

.post-ratings-image {
    border: 0;
}

.post-ratings img,
.post-ratings-loading img,
.post-ratings-image img {
    border: 0;
    padding: 0;
    margin: 0;
}

.post-ratings-text {
    display: none !important;
}

.post-ratings-comment-author {
    font-weight: normal;
    font-style: italic;
}