@charset "utf-8";

#like-vote {
  height: 25px;
  margin: 13px;
}

#vote-button {
  background-color: #3F5FB9;
  border-radius: 4px;
  cursor: pointer !important;
  height: 25px;
  width: 60px;
}
#vote-info {
  font-size: 12px;
  margin-left: 70px;
  padding-top: 4px;
}
#vote-button, #vote-info {
  display: inline-block;
  position: absolute;
}

.voted, .notvoted 
{
	display: block;
	height: 25px;
	width: 20px;
}

.notvoted 
{
	background: url("vote.png") no-repeat scroll 3px -37px rgba(0, 0, 0, 0) !important;
}

.voted
{
	background: url("vote.png") no-repeat scroll 3px 3px rgba(0, 0, 0, 0) !important;
}


.vote-text {
  color: #FFFFFF;
  float: right;
  font-size: 14px;
  padding-right: 7px;
  padding-top: 4px;
}

.voted, .notvoted, .vote-text{
  display: inline-block;
}