/* CSS Document */
body {
	margin: 0px;
	}
.test {
border-left: 1px solid #999999;
border-right: 1px solid #999999;
}
/* CSS Document */
a.info {
position: relative;
/*text-decoration: none;
*/
color: black;
border: 4px red;
}
a.info span {
display: none;
}
a.info:hover {
background: none; /* correction d'un bug IE */
z-index: 500;
}
a.info:hover span {
border: 1px;
border-color:#FF0000;	
display: inline;
position: absolute;
top: 2em;
left: 1em;
background: yellow;
text-align: center;
color: black;
padding: 8px;
}
