a.tooltip
{
	position:relative; /*this is the key to making the tooltip work*/
	z-index:0;
	text-decoration:none;
	color:#000066
}
a.tooltip .ttip
{
	display: none;
}
a.tooltip:hover
{
	z-index:1;
	text-decoration:none;
	color:#FF0000;
}
a.tooltip:hover .ttip
{
	display:block;
	position:absolute;
	top:20px;
	left:30px;
	width:140px;
	border:2px solid #4C91CA;
	background-color:#CBE2F5;
	color:#000000;
	font-size:11px;
	font-style:normal;
	padding:5px;
	text-decoration:none;
	text-align:left;
	font-weight: normal;
}

.info
{	
	width: 13px;
	height: 13px;
	background-image: url(../images/info_btn_on.gif);
	background-repeat: no-repeat;
}
.info img 
{
	width: 13px;
	height: 13px;
	border: 0;
}
a.info
{
	position:relative; /*this is the key to making the tooltip work*/
	z-index:0;
	text-decoration:none;
	color:#000066
}
a.info .ttip
{
	display: none;
}
a.info:hover
{
	z-index:1;
	text-decoration:none;
	color:#FF0000;
}
a.info:hover .ttip
{
	display:block;
	position:absolute;
	top:20px;
	left:30px;
	width:200px;
	border:2px solid #4C91CA;
	background-color:#CBE2F5;
	color:#000000;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	font-style:normal;
	padding:5px;
	text-decoration:none;
	text-align:left;
	font-weight: normal;
}
.info a:hover img
{
	visibility:hidden;
}

