a.info {
	position:relative;           /*this is the key*/
	z-index:24;
	text-decoration:none;
}
a.info h1 {
	font-weight: bold;
	font-size: 14px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -15px;
	margin-left: 0px;
}
a.info:hover {
	z-index:25;
	background-color:#ffff66;
}
a.info span {
	display: none;  /* hide the span text using this css */
}
a.info:hover span { /*the span will display just on :hover state*/
	display:block;
	width:325px;
	border: 1px solid #CCC; /* border colour */
	background-color:#d8e8f2; /* background colour here */
	color: #333; /* text colour */
	z-index:30;
	text-align: left;
	left: 0px;
	padding: 15px;
	position: absolute;
}
/* SOLO ie6 */
* html a.info:hover span {
	margin-top: 40px;
}
/* Align to left */
a.info2 {
	position:relative;           /*this is the key*/
	z-index:24;
	text-decoration:none;
}
a.info2 h1 {
	font-weight: bold;
	font-size: 14px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -15px;
	margin-left: 0px;
}
a.info2:hover {
	z-index:25;
	background-color:#ffff66;
}
a.info2 span {
	display: none;  /* hide the span text using this css */
}
a.info2:hover span { /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	width:325px;
	border: 1px solid #CCC; /* border colour */
	background-color:#d8e8f2; /* background colour here */
	color: #333; /* text colour */
	z-index:30;
	text-align: left;
	padding: 15px;
	left: -275px;
}
/* SOLO ie6 */
* html a.info2:hover span {
	margin-top: 40px;
}
