/* main */

/* rating */

.rating{
	width:100px;
	height:20px;
	margin:0 0 20px 0;
	padding:0;
	list-style:none;
	clear:both;
	position:relative;
	background: url(star-matrix.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 -20px}
.twostar {background-position:0 -40px}
.threestar {background-position:0 -60px}
.fourstar {background-position:0 -80px}
.fivestar {background-position:0 -100px}
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:20px;
	height:20px;
	text-decoration:none;
	z-index: 200;
}
ul.rating li.one a {left:0}
ul.rating li.two a {left:20px;}
ul.rating li.three a {left:40px;}
ul.rating li.four a {left:60px;}
ul.rating li.five a {left:80px;}
ul.rating li a:hover {
	z-index:2;
	width:100px;
	height:20px;
	overflow:hidden;
	left:0;	
	background: url(star-matrix.gif) no-repeat 0 0;
}
ul.rating li.one a:hover {background-position:0 -120px;}
ul.rating li.two a:hover {background-position:0 -140px;}
ul.rating li.three a:hover {background-position:0 -160px}
ul.rating li.four a:hover {background-position:0 -180px}
ul.rating li.five a:hover {background-position:0 -200px}
/* end rating code */
h3{margin:0 0 2px 0;font-size:110%}


