
/* 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-wrapper{
	padding:10px;
	width: 90px;
	margin: auto;
	display: block;  
}

#stars .rating{
	width:70px;
	height:12px;
	margin:3px 0 0 0;
	padding:0;
	list-style:none;
	/*clear:both;*/
	position:relative;
	/*float:left;*/
	background: url(../images/star-big.gif) no-repeat 0 0;
}
/* add these classes to the ul to effect the change to the correct number of stars */
#stars .nostar {background-position:0 0}
#stars .onestar {background-position:0 -12px}
#stars .twostar {background-position:0 -24px}
#stars .threestar {background-position:0 -36px}
#stars .fourstar {background-position:0 -48px}
#stars .fivestar {background-position:0 -60px}

#stars ul.rating li {
	cursor: pointer;
 /*ie5 mac doesn't like it if the list is floated\*/
	float:left;
	/* end hide*/
	text-indent:-999em;
}
#stars ul.rating li a {
	position:absolute;
	left:0;
	top:0;
	width:15px;
	height:12px;
	text-decoration:none;
	z-index: 200;
}
#stars ul.rating li.one a {left:0}
#stars ul.rating li.two a {left:15px;}
#stars ul.rating li.three a {left:30px;}
#stars ul.rating li.four a {left:45px;}
#stars ul.rating li.five a {left:60px;}

#stars ul.rating li a:hover {
	z-index:2;
	width:65px;
	height:12px;
	overflow:hidden;
	left:0;	
	background: url(../images/star-big.gif) no-repeat 0 0
}
#stars ul.rating li.one a:hover {background-position:0 -12px;}
#stars ul.rating li.two a:hover {background-position:0 -24px;}
#stars ul.rating li.three a:hover {background-position:0 -36px}
#stars ul.rating li.four a:hover {background-position:0 -48px}
#stars ul.rating li.five a:hover {background-position:0 -60px}

/* end rating code */
h3{margin:0 0 2px 0;font-size:110%}