@charset "utf-8";
/* CSS Document */

/* いいねボタン */
.actions {
	float:right;
	position:relative;
}
.actions .like {
	background: url(/sys_images/btn_like.gif) no-repeat;
	height: 20px;
	width: 70px;
	text-indent: -9999pt;
	vertical-align: middle;
	cursor: pointer;
	float:left;
}
.actions .like:hover {
	background-position: -80px 0;
}
.actions .like.clicked {
	background-position: -160px 0;
}
.actions .like div {
	display: none;
}
.actions .like:hover div, .actions .like.clicked:hover div {
	font-size: 11px;
	background: #fff;
	border: #ccc 1px solid;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: auto;
	position: absolute;
	right:0;
	top: 20px;
	padding: 10px;
	width: 240px;
	text-indent: 0;
	visibility: visible;
	z-index:999;
	display : block;
}
