@charset "utf-8";
/* CSS Document */
#battle_maps {
	position: relative;
	top: 0; left: 0;
}
div.map {
	position:absolute;
	z-index: 20;
	left:0;
	top:0;
}
div.location {
	position: absolute;
	width: 16px; 
	height: 16px; 
	background: url(map_icons.png);
	font-size: 10px;
	color: white;
	text-align: center;
	line-height: 14px;
}
div.location:hover {
	background-position: -16px 0px;
	z-index: 30;
}
div.location:active {
	background-position: -32px 0px;
}

div.bubble {
	position: absolute;
	opacity: 0.9;
	left: 0;
	top: 0;
	width: 200px;
	height: 50px;
	border: 2px solid #339933;
	background: white;
	padding: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
	font-size: 10px;
	line-height: 12px;
	display: none;
	z-index: 10;
}
div.bubble:hover {
	opacity: 1;
	width: 350px;
	font-size: 13px;
	line-height: 15px;
	height: auto;
	overflow:visible;
}
div.bubble h2 {
	line-height: 24px;
	font-size: 16px;
	margin-top: 0;
	clear: none;
}
div.bubble:hover h2 {
	line-height: 30px;
	font-size: 20px;
}
div.bubble a.external {
	display: block;
	text-align:center;
	color: red;
	text-decoration: none;
}
div.bubble a.external:hover {
	text-decoration: underline;
}
div.bubble a.close {
	color: black;
	float: right;
	display: block;
	background: url(close.png) no-repeat;
	width: 14px;
	height: 14px;
}
div.bubble table {
	float: left;
}
a.close span {
	display: none;
}
#map_value_data {
	display: none;
}
a.child {
	white-space: nowrap;
}
a.fight {
	width: 180px;
	height: 98px;
	background: url(fight.png);
	display: block;
	float: right;
	font-size: 1px;
}
a.fight:hover {
	background-position: 0 -100px;
}
a.fight:active {
	background-position: 0 -200px;
}
a.fight:focus {
	outline: none;
}
