/* the default rating is placed as a background image in the ul */
/* use the background position according to the table above to display the required images*/
.rating{
	width:173px;
	height:28px;
	margin:0 0 10px 0;
	padding:0;
	list-style:none;
	clear:both;
	position:relative;
	background:url(../images/content_rating/star-matrix.gif) no-repeat 0 0;
}

.nostarDefault{background-position:-177px -75px}
.onestarDefault{background-position:-142px -75px}
.twostarDefault{background-position:-107px -75px}
.threestarDefault{background-position:-72px -75px}
.fourstarDefault{background-position:-37px -75px}
.fivestarDefault{background-position:-2px -75px}

.nostarDefaultHalf{background-position:-142px -100px}
.onestarDefaultHalf{background-position:-107px -100px}
.twostarDefaultHalf{background-position:-72px -100px}
.threestarDefaultHalf{background-position:-37px -100px}
.fourstarDefaultHalf{background-position:-2px -100px}
.fivestarDefaultHalf{background-position:-2px -75px}

.nostarHover{background-position:-177px 0}
.onestarHover{background-position:-142px 0}
.twostarHover{background-position:-107px 0}
.threestarHover{background-position:-72px 0}
.fourstarHover{background-position:-37px 0}
.fivestarHover{background-position:-2px 0}

.nostar{background-position:-177px -25px}
.onestar{background-position:-142px -25px}
.twostar{background-position:-107px -25px}
.threestar{background-position:-72px -25px}
.fourstar{background-position:-37px -25px}
.fivestar{background-position:-2px -25px}

.nostarHalf{background-position:-142px -50px}
.onestarHalf{background-position:-107px -50px}
.twostarHalf{background-position:-72px -50px}
.threestarHalf{background-position:-37px -50px}
.fourstarHalf{background-position:-2px -50px}

.fivestarHalf{
	background-position:-2px -25px;
}

ul.rating li{
	cursor:pointer;
    /*ie5 mac doesn't like it if the list is floated\*/
	float:left;
	/* end hide*/
	text-indent:-999em;
}
ul.rating li a{
	position:absolute;
	left:0;
	top:0;
	width:35px;
	height:28px;
	text-decoration:none;
	z-index:200;
}
ul.rating li.one a{left:2px;}
ul.rating li.two a{left:37px;}
ul.rating li.three a{left:72px;}
ul.rating li.four a{left:107px;}
ul.rating li.five a{left:142px;}
