1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#dhtmltooltip
{
font-family: sans-serif;
font-size: 9pt;
font-weight: normal;
position: absolute;
width: 150px;
border: 0px solid black;
padding: 2px;
background-color: #eeeeee;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
/* filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135); */
}
|