
/* 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;  
}

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

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:9px;
	height:9px;
	text-decoration:none;
	z-index: 200;
}
ul.rating li.one a {left:0}
ul.rating li.two a {left:9px;}
ul.rating li.three a {left:18px;}
ul.rating li.four a {left:27px;}
ul.rating li.five a {left:36px;}

ul.rating li a:hover {
	z-index:2;
	width:45px;
	height:9px;
	overflow:hidden;
	left:0;	
	background: url(../images/star.gif) no-repeat 0 0
}
ul.rating li.one a:hover {background-position:0 -9px;}
ul.rating li.two a:hover {background-position:0 -18px;}
ul.rating li.three a:hover {background-position:0 -27px}
ul.rating li.four a:hover {background-position:0 -36px}
ul.rating li.five a:hover {background-position:0 -45px}

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