/* Tooltip hover functionality */
a.tooltip { 
	position: relative;
	text-decoration: none;
	padding-left: 2px;
}
a.tooltip:hover { z-index: 1000000; border: none; /*note: IE needs this line for some unknown reason */}
a.tooltip span { 
	z-index: 1050;
	position: absolute;
	text-align:left; 
	top: 12px; 
	left: -200000px; 
	padding: 0; 
	margin: 5;
	width: 400px; 
	border: 1px solid #999;
	line-height: normal; 
	color: #666666; 
	background-color: #ffffff !important;
	font-size: 10px; 
	overflow: hidden; 
	text-decoration: none;	
}
a.tooltip:hover span em { 
	font-style: normal;
	font-size: 10px;
	display: block;
	padding: 5px;
	background-color: #ffffff !important; 
}
a.tooltip:hover span strong { 
	color: #333333; 
	font-size: 10px; 
	padding: 3px 5px; 
	display: block; 
	width: auto; 
	border-bottom: 1px solid #ccc; 
	font-weight: bold; 
	background-color: #ffffff !important; 
}
a.tooltip:hover span { 
	left: 0; 
}
