/* Post Like System */
.post-like { /* default for all */
	width: auto;
	font-size: 13px;
	font-size: 1.1rem;
	line-height: 1.846153846;
}
.post-like a { /* default for links */
	font-weight: normal;
	display: inline-block;
	width: auto;
	-moz-transition: all 0.3s ease-out 0.2s;
	-webkit-transition: all 0.3s ease-out 0.2s;
	-o-transition: all 0.3s ease-out 0.2s;
	color: #666;
}
.post-like a > .like { /* space for X */
	padding-left: 2px;
}
.post-like .count { /* default for count */
	width: auto;
	display: inline-block;
}
.post-like a > .unliker  { /* hides the remove link */
	opacity: 0;
	filter:alpha(opacity=0);
	width: 0;
	display: inline-block;
}
.post-like a:hover > .unliker  { /* shows the remove link */
	opacity: 1;
	filter:alpha(opacity=100);
	width: auto;
}
.post-like .liked,
.post-like .alreadyliked,
.post-like .prevliked,
.post-like .pastliked { /* red on like */
	color: #da1b1b;
}
.post-like a:hover > .prevliked,
.post-like a:active > .prevliked,
.post-like a:focus > .prevliked,
.post-like a:hover > .pastliked,
.post-like a:active > .pastliked,
.post-like a:focus > .pastliked {
	display: none;
	width: 0;
}
.post-like .disliked { /* default on unlike */
	color: #666;
}
.post-like a:hover > .disliked,
.post-like a:active > .disliked,
.post-like a:focus > .disliked {
	display: inline-block;
	width: auto;
}
.post-like a:hover,
.post-like a:hover > .disliked,
.post-like a:active > .disliked,
.post-like a:focus > .disliked,
.post-like a:hover > .alreadyliked,
.post-like a:active > .alreadyliked,
.post-like a:focus > .alreadyliked,
.post-like a:hover > .liked,
.post-like a:active > .liked,
.post-like a:focus > .liked { /* default on hover */
	color: #000;
}
