1div.plugin_rating {
2    line-height: 20px;
3    height: 20px;
4    font-size: 20px;
5
6    a {
7        width: 20px;
8        height: 20px;
9
10        // hide text
11        display: inline-block;
12        text-indent: -1000px;
13        overflow: hidden;
14    }
15
16    a.plugin_rating_down {
17        background: transparent url(pix/thumbs-o-down_333333_20.png) bottom center no-repeat;
18        margin-right: 5px;
19    }
20
21    a.plugin_rating_down.act {
22        background: transparent url(pix/thumbs-down_333333_20.png) bottom center no-repeat;
23    }
24
25    a.plugin_rating_up {
26        background: transparent url(pix/thumbs-o-up_333333_20.png) bottom center no-repeat;
27    }
28
29    a.plugin_rating_up.act {
30        background: transparent url(pix/thumbs-up_333333_20.png) bottom center no-repeat;
31    }
32
33    span {
34        display: inline-block;
35        margin-right: 5px;
36    }
37
38    span.intro {
39        font-size: 16px;
40    }
41}