@charset "utf-8";
.floatImg {
	position: fixed;
	z-index: 10;
	transition: none;
}
.floatImg img {
	display: block;
}
.floatImg span {
	position: absolute;
	top: 0;
	right: 0;
	width: 21px;
	height: 21px;
	cursor: pointer;
	background: url(close.jpg) 0 0 no-repeat;
	opacity: 0;
	transition: opacity .3s;
}
.floatImg:hover span {
	opacity: 1;
}
.floatImg span:hover {
	background-position: 0 -21px;
}