ul.rating {
	width: 105px;
	height: 20px !important;
	margin: 0 !important;
	padding: 0;
	list-style: none !important;
	position: relative;
	float: left;
	background: url('/images/star-matrix.gif') no-repeat 0 0;
}

/* add these classes to the ul to effect the change to the correct number of stars */
body ul.nostar {background-position:0 -20px}
body ul.onestar {background-position:0 -20px}
body ul.twostar {background-position:0 -40px}
body ul.threestar {background-position:0 -60px !important;}
body ul.fourstar {background-position:0 -80px}
body ul.fivestar {background-position:0 -100px}
body ul.starerror {background-position:0 -122px}

ul.rating li {
	cursor: pointer;
 /*ie5 mac doesn't like it if the list is floated\*/
	float:left;
	/* end hide*/
	text-indent: -999em;
	display: block;
	height: 20px;
	list-style: none !important;
	background: none !important;
}
ul.rating li a {
	position:absolute;
	left:0;
	top:0;
	width:21px;
	height:20px;
	text-decoration:none;
	z-index: 200;
}
ul.rating li.one a {left:0}
ul.rating li.two a {left:21px;}
ul.rating li.three a {left:42px;}
ul.rating li.four a {left:63px;}
ul.rating li.five a {left:84px;}
ul.rating li a:hover {
	z-index:2;
	width:105px;
	height:20px;
	overflow:hidden;
	left:0;	
	background: url('/images/star-matrix.gif') no-repeat 0 0
}
ul.rating li.one a:hover {background-position:0 -20px;}
ul.rating li.two a:hover {background-position:0 -40px;}
ul.rating li.three a:hover {background-position:0 -60px}
ul.rating li.four a:hover {background-position:0 -80px}
ul.rating li.five a:hover {background-position:0 -100px}