/*
    Document   : puretip
    Created on : 12-Sep-2010, 11:18:01
    Author     : Martin Brampton based on various published ideas
    Description: CSS for pure CSS tooltip
*/

a.glossarylink {
	border-bottom: 1px dashed #802A2A;
	text-decoration: none;
	color: 83235E;       /* couleur rajoutée */
	position:relative; /*this is the key*/
	z-index:24;
}

a.glossarylink:hover {
	position: relative;
	text-decoration: none;
	color: 83236E;       /* couleur rajoutée */
	z-index:25;
}

a.glossarylink span {
	color: 83237E;       /* couleur rajoutée */
	display: none;
}

a.glossarylink:hover span {
	display: block;
	position: absolute;
	top: 10px;
	left: -6px;
	padding: 5px;
	z-index: 100;
	border: 1px dotted #404040;
	opacity: 0.9;
	filter: alpha(opacity=90); /* needed for IE, ignored by others */
	text-decoration: none;
	color: 83238E;       /* couleur rajoutée */
}

