a.info{
	position:relative; /*this is the key*/
	z-index:1;
	text-decoration:none;
	color: rgb(51,51,102);
}

a.info:hover{
 z-index:25;
}

/*info span*/
a.info span{
 display: none;
}
a.info:hover span{ /*the span will display just on :hover state*/
	z-index:100;
	display:block;
	position:absolute;
	text-align:left;
	top:1em;
	right:-2em;
	width:200px;
	border:1px solid rgb(230,230,230);
	padding:0.5em;
	background-color:rgb(242,242,242);
	color:rgb(60,60,20);
}


/*info baloon*/
a.info div.baloon{
	display:none;
}
a.info:hover div.baloon{
	display:block;
	width:230px;
	position:absolute;
	text-align:left;
	top:12px;
	right:-200px;
}
a.info div.baloonTop{
	background-image:url('/style/img/baloon-top.gif');
	background-repeat:no-repeat;
	background-position:left top;
	height:18px;
	overflow:hidden;
}
a.info div.baloonBody{
	background-image:url('/style/img/baloon-body.gif');
	background-repeat:repeat-y;
	background-position:center top;
	padding-left:35px;
	padding-right:15px;
}
a.info div.baloonBottom{
	background-image:url('/style/img/baloon-bottom.gif');
	background-repeat:no-repeat;
	background-position:left top;
	height:10px;
	overflow:hidden;
}

/*info baloon-r*/
a.info div.baloonR{
	display:none;
}
a.info:hover div.baloonR{
	display:block;
	width:230px;
	position:absolute;
	text-align:right;
	top:12px;
	right:-20px;
}
a.info div.baloonR div.baloonTop{
	background-image:url('/style/img/baloon-top-r.gif');
	background-repeat:no-repeat;
	background-position:left top;
	height:18px;
	overflow:hidden;
}
a.info div.baloonR div.baloonBody{
	background-image:url('/style/img/baloon-body-r.gif');
	background-repeat:repeat-y;
	background-position:center top;
	padding-left:15px;
	padding-right:35px;
}
a.info div.baloonR div.baloonBottom{
	background-image:url('/style/img/baloon-bottom-r.gif');
	background-repeat:no-repeat;
	background-position:left top;
	height:10px;
	overflow:hidden;
}

/*info blue*/
a.infoBlue{
	position:relative; /*this is the key*/
	z-index:1;
	text-decoration:none;
}
a.infoBlue:hover{
}
a.infoBlue span{
 display: none;
}
a.infoBlue:hover span{ /*the span will display just on :hover state*/
	z-index:25;
	display:block;
	position:absolute;
	min-width:200px;
	background-color:rgb(255,255,255);
	border:1px solid rgb(215,215,255);
	padding:10px;
	color:rgb(60,60,20);
}
\