/**
 * Allows users to to rate posts
 *
 * @copyright Copyright (C) 2009 crurf.info
 * @license http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons License version 3.0 or higher
 * @package ajax_rating
 */
 
.post_rating {
	border: none !important;
	padding: 0.5em 10px !important;
}

.post_rating a {
	float: left;
	margin-right: 3px;
}

.post_rating a.rate_yes {
	color: #3C922F;
	font-weight: normal;
	background-image: url('./images/rate_yes.png');
	background-color: #EEF9EB;
	background-repeat: no-repeat;
	border: 1px outset #3C922F;
	padding: 2px 4px 2px 20px;
	white-space: nowrap;
	float: left;
	line-height: 10px;
	text-decoration: none;
}

.post_rating a.rate_yes:hover {
	background-color: #FFFFFF;
}

.post_rating a.rate_no {
	color: #AE3738;
	font-weight: normal;
	background-image: url('./images/rate_no.png');
	background-color: #F9EBEB;
	background-repeat: no-repeat;
	border: 1px outset #AE3738;
	padding: 2px 4px 2px 20px;
	white-space: nowrap;
	float: left;
	line-height: 10px;
	text-decoration: none;
}

.post_rating a.rate_no:hover {
	background-color: #FFFFFF;
}

.post_rating ul.star { 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	width: 85px; 
	height: 20px; 
	left: 10px; 
	top: -5px; 
	position: relative; 
	float: left; 
	background: url('./images/stars.gif') repeat-x; 
	cursor: pointer; 
}

.post_rating li { 
	padding: 0; 
	margin: 0; 
	float: left; 
	display: block; 
	width: 85px; 
	height: 20px; 
	text-decoration: none; 
	text-indent: -9000px; 
	z-index: 20; 
	position: absolute; 
	padding: 0; 
}

.post_rating li.curr { 
	background: url('./images/stars.gif') left 25px; 
	font-size: 1px; 
}

.post_rating div.user { 
	left: 15px; 
	position: relative; 
	float: left; 
	font-size: 13px; 
	font-family: arial; 
	color: #888; 
}
