/**
 * Based on http://komodomedia.com/blog/samples/star_rating/example2.htm
 * Styles for the star rater 
 */
table.rating_details_table td.sf_rating_bar_bg {
	background: lightblue;
}

table.rating_details_table div {
	background: blue;
}

.star-rating{
	list-style: none;
	margin: 0;
	padding: 0;
	height: 14px;
	position:relative;
	overflow:hidden;
	background: url(/images/main/small_rate.gif) top left repeat-x;		
}
.star-rating li{
	padding: 0;
	margin: 0;
	width: 15px;
	height: 14px;
	/*\*/
	float: left;
	/* */
}

.star-rating li.current-rating{
	background: url(/images/main/small_rate.gif) left center;
	position: absolute;
	height: 14px;
	display: block;
	text-indent: -9000px;
	z-index: 1;
	left:0px;
}

/* remove halo effect in firefox   */
a:active{
	outline: none;
}

