/* STAR RATING */
ul.star-rating 
{
	padding:0;
	margin: 0;
	width: 50px;		
	height: 8px;
	position: relative;
	margin-top: 5px;
	background: url(../images/stars.png) top left repeat-x;
}
.star-rating li {
	list-style: none;
	padding:0px;
	margin:0px;
	/*\*/
	float: left;
	/* */
}
.star-rating li a
{
	display:block;
	width: 10px;
	height: 8px;
	text-decoration: none;
	text-indent: -50px;
	z-index: 20;
	position: absolute;
	padding: 0px;

	font-size: 1px;
	color: #f0eee1;
}
.star-rating li a:hover 
{
  background: url(../images/stars_hover.png);
  background-repeat: repeat-x;
	z-index: 2;
	left: 0px;
}
.star-rating a.one-star 
{
	left: 0px;
}
.star-rating a.one-star:hover 
{
	width:10px;
}
.star-rating a.two-stars 
{
	left:10px;
}
.star-rating a.two-stars:hover 
{
	width: 20px;
}
.star-rating a.three-stars 
{
	left: 20px;
}
.star-rating a.three-stars:hover 
{
	width: 30px;
}
.star-rating a.four-stars 
{
	left: 30px;
}	
.star-rating a.four-stars:hover 
{
	width: 40px;
}
.star-rating a.five-stars 
{
	left: 40px;
}
.star-rating a.five-stars:hover 
{
	width: 50px;
}
.star-rating li.current-rating 
{
	background: url(../images/stars.png) bottom left repeat-x;
	position: absolute;
	height: 8px;
	display: block;
	text-indent: -50px;
	font-size: 1px;
	color: #f0eee1;
	z-index: 1;
}

