@CHARSET "UTF-8";
/*********************************************************************
 * copyright:   	network.hu
 * name:        	n_rating.css
 * projekt:     	www.network.hu
 * release: 	 		2008.06.19.
 * description: 	network 1.0 rating styles
 * developer:   	eFBe
**********************************************************************
 * small | [11x11px]
**********************************************************************/

.n_ratingcontainer_small {
	margin: 0px;

	display: block;
	height: 11px;
	width: 55px;
	overflow: hidden;
}

.n_ratingcontainer_small .n_ratingstar {
	display: block;
	width: 11px;
	height: 11px;
	overflow: hidden;
	
	float: left;
	
	cursor: default;
}

/* before | after | :hover - png hack js ain't works with rating */

.n_ratingcontainer_small A.n_beforerating {
	background-repeat: no-repeat;
	background-position: top left;
	
	background-image: url(/images/frontend/n_ratingstarbefore_11.png);
}

.n_ratingcontainer_small A.n_afterrating {
	background-repeat: no-repeat;
  background-position: top left;
	background-image: url(/images/frontend/n_ratingstarafter_11.png);
}

.n_ratingcontainer_small A.n_halfrating {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(/images/frontend/n_ratingstarhalf_11.png);
}


/**********************************************************************
 * big | [19x19px]
**********************************************************************/

.n_ratingcontainer_big {
  margin: 0px;

  display: block;
  height: 19px;
  width: 95px;
  overflow: hidden;
}

.n_ratingcontainer_big .n_ratingstar {
  display: block;
  width: 19px;
  height: 19px;
  overflow: hidden;
  
  float: left;
  
  cursor: pointer;
}

.n_ratingcontainer_big A.n_beforerating {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(/images/frontend/n_ratingstarbefore_19.png);
}

.n_ratingcontainer_big A.n_afterrating {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(/images/frontend/n_ratingstarafter_19.png);
}

.n_ratingcontainer_big A.n_duringrating {
  background-repeat: no-repeat;
  background-position: top left;
  background: url(/images/frontend/n_ratingstarduring_19.png) no-repeat top left;
}

.n_ratingcontainer_big A.n_halfrating {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(/images/frontend/n_ratingstarhalf_19.png);
}



/* service */
.n_ratingcontainer_big A.n_passivestar {
	cursor: default;
} 


