/* CSS Document */

#content { z-index:10;}

div#content a.tooltip {
    position:relative; /*this is the key*/
    z-index:24; 
    color:#CC6633;
    text-decoration:underline;
	background-color: #ffffff;
}

div#content a.tooltip:hover{z-index:25; background-color:#fff; color:#CC6633;}

div#content a.tooltip span{display: none;}

div#content a.tooltip:hover span{ /*the span will display just on :hover state*/
    display:block;
	position:absolute; top:-180px; left:50px; width:auto; 
    background-color:#ffffff; 
	font-size: 11px; color:#CC6633;
    text-align: left;
	text-decoration: none;
	padding:5px;
	border:1px solid  #d1cdc7;

}
	
div#content a.tooltip:hover ul {
	padding-left: 25px; 
}


