@charset "utf-8";
/* Star Rating CSS Document */
/* all the stars are contained in one matrix to solve rollover problems with delay */
/* the background position is just shifted to reveal the correct image. */
/* the images are 18px by 15px and the background position will be shifted in negative  increments */
/*  key:  B=Blank : Y=Yellow  /
/*..... The Matrix ....... */
/* colours ....Background position */
/* B B B B B - (0 0)*/
/* Y B B B B - (0 -25px)*/
/* Y Y B B B - (0 -50px)*/
/* Y Y Y B B - (0 -75px)*/
/* Y Y Y Y B - (0 -100px)*/
/* Y Y Y Y Y - (0 -125px)*/


/* 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,.rating2{
	width:90px;
	height:15px;
	margin:0;
	padding:0;
	list-style:none;
	position:relative;
	background: url(/grafik/side9/hydrogen/images/rate_ratingstars.png) no-repeat 0 0;
}
.rating2{	background: url(/grafik/side9/hydrogen/images/ratingstars_small.png) no-repeat 0 0;overflow:hidden}
/* add these classes to the ul to effect the change to the correct number of stars */
.nostar {background-position:0 -125px}
.onestar {background-position:0 -100px}
.twostar {background-position:0 -75px}
.threestar {background-position:0 -50px}
.fourstar {background-position:0 -25px}
.fivestar {background-position:0 0}
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:18px;
	height:15px;
	text-decoration:none;
	z-index: 200;
}
ul.rating li.one a {left:0}
ul.rating li.two a {left:18px;}
ul.rating li.three a {left:36px;}
ul.rating li.four a {left:54px;}
ul.rating li.five a {left:72px;}
ul.rating li a:hover {
	z-index:2;
	width:90px;
	height:15px;
	overflow:hidden;
	left:0;	
	background: url(/grafik/side9/hydrogen/images/rate_ratingstars.png) no-repeat 0 0
}
ul.rating li.one a:hover {background-position:0 -100px;}
ul.rating li.two a:hover {background-position:0 -75px;}
ul.rating li.three a:hover {background-position:0 -50px}
ul.rating li.four a:hover {background-position:0 -25px}
ul.rating li.five a:hover {background-position:0 0}
/* end rating code */

