.css-fukidashi {
	padding: 0;
	margin: 0;
}
.fukidashi_text {
	position: relative;
}
.fukidashi {
	display: none;
	*width: 200px;
	position: absolute;
	margin-left: 100px;
	margin-top: -90px;
	*top: 0;
	*left: 250px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi:after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}

.fukidashi_text:hover + .fukidashi {
	display: block;
}