/*             styles for the star rater                */
.star-rating{
	list-style:none;
	margin:0;
	padding:0;
	width:75px;
	height:14px;
	line-height:14px;
	position: relative;
	background: url(/images/star_rating.gif) top left repeat-x;
	filter:alpha(opacity=100);
	opacity:1;
}

.star-rating li{
  display:inline;
	padding:0 !important;
	margin:0 !important;

	/*\*/
	float: left;
	/* */
}

.star-rating li a{
	display:block;
	width:15px;
	height:14px;
	text-decoration: none;
	z-index: 20;
	position: absolute;
	padding: 0;
	font-size:0;
}

.star-rating li a.rated{
	background: url(/images/star_rating_rated.gif) left bottom;
}


.star-rating li a:hover{
	background: url(/images/star_rating.gif) left bottom;
	z-index: 1;
	left: 0;
}

.star-rating a.one-stars{
	left: 0;
}
.star-rating a.one-stars:hover{
	width:15px;
}

.star-rating a.two-stars{
	left:15px;
}
.star-rating a.two-stars:hover{
	width: 30px;
}

.star-rating a.three-stars{
	left: 30px;
}
.star-rating a.three-stars:hover{
	width: 45px;
}

.star-rating a.four-stars{
	left: 45px;
}
.star-rating a.four-stars:hover{
	width: 60px;
}

.star-rating a.five-stars{
	left: 60px;
}
.star-rating a.five-stars:hover{
	width: 75px;
}

