﻿.tooltip {
	position: relative;
	z-index: 0;
	text-Decoration: none;
	color: #0033ff;
}
.tooltip:hover{
	background-color: transparent;
	z-index: 50;
}
.tooltip span, .tooltiphid span { /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 0px;
	left: -10000px;
	border:none;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.tooltip span img { /*CSS for enlarged image*/
	border-width: 2px;
	padding: 1px;
}
.tooltip:hover span { /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	background-color: #fff8c7;
	border: solid 1px #c99c46;
	left: -160px; /*position where enlarged image should offset horizontally */
	padding: 5px;
	text-align: left;
	width: 150px;
}
.tooltip:visited{color: #0033ff;}