.ratingParent{
	margin: 20px 0;
	position: relative;
}
.ratingParent button{
	background: #f3f3f3;
	border: 1px solid #c0c0c0;
	padding-left: 40px;
	font-size: 12px;
	line-height: 39px;
	color: #828282;
	width: 142px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: 16px 5px;
	white-space: nowrap;
}
.ratingParent button.like{
	background-image: url(/public/images/icons/vote_like.png);
	background-position: 16px 11px;
}
.ratingParent button.dislike{
	background-image: url(/public/images/icons/vote_dislike.png);
	background-position: 16px 11px;
}
.ratingParent button.like:hover{
	background-image: url(/public/images/icons/vote_like_hover.png);
	background-position: 16px 12px;
	background-color: #f0f0f0;
}
.ratingParent button.dislike:hover{
	background-image: url(/public/images/icons/vote_dislike_hover.png);
	background-position: 15px 11px;
	background-color: #f0f0f0;
}
.ratingParent button.voted{
	opacity: 0.2;
	cursor: default;
}

.ratingParent .review { 
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ratingParent[uservote="-1"] button.dislike[like="-1"] {
  background-image: url(/public/images/icons/vote_dislike_disabled.png);
  cursor: default;
  background-position: 16px 11px;
  background-color: #E3E3E3;
  pointer-events:none;
}

.ratingParent[uservote="1"] button.like[like="1"] {
  background-image: url(/public/images/icons/vote_like_disabled.png);
  cursor: default;
  background-position: 16px 11px;
  background-color: #E3E3E3;
  pointer-events:none;
}