1 2 .hidden_tooltip { 3 display:none; 4 } 5 6 span.visible_tooltip { 7 display:block; 8 position:absolute; 9 top:10px; 10 left:21px; 11 width:300px; 12 font-size:9px;; 13 padding-left:5px; 14 padding-right:5px; 15 border:1px solid black; 16 background-color:#FFFFCC; 17 text-decoration:none; 18 color:#000000; 19 z-index:10; 20 } 21 22 a{ 23 text-decoration:none; 24 } 25 span { 26 z-index=100; 27 } 28 img, table{ 29 z-index:1; 30 } 31 32 .tooltipSource { 33 position:relative; 34 }