@charset "utf-8";
/* CSS Document */

a.tooltip{
    position:relative;  /*this is the key*/
   /* z-index:24; background-color:#ccc;*/
	z-index:24; 
	display: block;
    color:#000;
    text-decoration:none;}

/*a.tooltip:hover{z-index:25; background-color:#ff0}*/
a.tooltip:hover{z-index:25;	border:none;}

a.tooltip .tooltip__, a.tooltip span{
    display:none;
	padding: 5px;
	position: absolute;
    top:2em; 
	left:2em; 
	width: 100%;
    border:1px solid #828282;
    background-color:#EBEBEB; color:#000;
    text-align: left; 
	line-height: 12pt;
}

a.tooltip:hover .tooltip__, a.tooltip:hover span{ /*the span will display just on :hover state*/
	display: block;
	white-space: normal;
}