/*********************/
/** jRating CSS **/
/*********************/

#jRating, .jRating {
    background-color:#B1AFAF
}

/**Div containing the color of the stars */
.jRatingAverage {
	/*background-color:#f4c239;*/
    background: url('icons/babysit_big_blue.png') 0 0 repeat-x;
	position:relative;
	top:0;
	left:0;
	z-index:4 ; /*2;*/
	height:100%;
	max-width: 100%;
}
.jRatingAverage.small { /* for Small icons only */
    background: url('icons/babysit_small_blue.png') 0 0 repeat-x;
}

.jRatingColor {
	/*background-color:#f4c239;*/
    background: url('icons/babysit_big_blue.png') 0 0 repeat-x;
	position:relative;
	top:0;
	left:0;
	z-index: 4; /*2;*/
	height:100%;
}
.jRatingColor.small {  /* for Small icons only */
    background: url('icons/babysit_small_blue.png') 0 0 repeat-x;
}

/** Div containing the stars **/
.jStar {
	position:relative;
	left:0;
	z-index:3;
}

/** P containing the rate informations **/
p.jRatingInfos {
    position: absolute;
    z-index: 9999;
    background: transparent;
    color: #000;
    display: none;
    width: 400%;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    padding: 0px 5px;
    border: 0px none;

}
	p.jRatingInfos span.maxRate {
		color:#c9c9c9;
		font-size:14px;
	}


