.send input,
.send textarea {
	outline: none;
	border: 1px solid DarkGreen;
	border-radius: 5px;
	border-top: none;
	border-left: none;
}
.send button {
	padding: 3px 7px;
	color: DarkGreen;
	background: none;
	border: 1px solid DarkGreen;
	border-radius: 5px;
}
.send button:hover {
	background: DarkGreen;
	color: White;
}
input + .send_ans {
	display: none;
}
input:checked + .send_ans {
	display: block;
}
.answer {
	padding-left: 3%;
}
.rev_button {
	padding: 3px;
}
.rev_button:hover {
	color: White;
	background-color: DarkGreen;
	border-radius: 5px;
	text-decoration: none;
}
/*sprite with stars*/
#reviewStars-input input:checked ~ label, #reviewStars-input label, #reviewStars-input label:hover, #reviewStars-input label:hover ~ label {
  background: url('../images/star.png') no-repeat;
}
#reviewStars-input { 
  /*fix floating problems*/
  overflow: hidden;
  *zoom: 1;
  /*end of fix floating problems*/  
  position: relative;
  float: left;
  margin-left: 1em;
}
#reviewStars-input input {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;  
  width: 27px;
  height: 26px;  
  position: absolute;
  top: 0;
  z-index: 0;
}
#reviewStars-input input:checked ~ label {
  background-position: 0 -26px;
  height: 26px;
  width: 27px;
}
#reviewStars-input label {
  background-position: 0 0;
  height: 26px;
  width: 27px;
  float: right;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}
#reviewStars-input label:hover, #reviewStars-input label:hover ~ label {
  background-position: 0 -26px;
  height: 26px;
  width: 27px;
}
#reviewStars-input #star-0 {
  left: 0px;
}
#reviewStars-input #star-1 {
  left: 53px;
}
#reviewStars-input #star-2 {
  left: 106px;
}
#reviewStars-input #star-3 {
  left: 159px;
}
#reviewStars-input #star-4 {
  left: 212px;
}
#reviewStars-input #star-5 {
  left: 265px;
}
