/* tooltip styling. uses a background image (a black box with an arrow) */ 
div.tooltip { 
    /*background:transparent url(/img/gray.png) no-repeat scroll 0 0;*/
background-color: transparent;
background-image: url(/img/gray.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: scroll;

    font-size:12px; 
    height:190px; 
    padding:30px; 
    width:325px; 
    font-size:14px; 
    display:none; 
    color:#000;
    top: 100;
    left: 100; 
    z-index: 1000;
} 
div.tooltipmyobj { 
    background:transparent url(/img/gray-myob.png) no-repeat scroll 0 0; 
    font-size:12px; 
    height:190px; 
    padding:30px; 
    width:325px; 
    font-size:14px; 
    display:none; 
    color:#000;
    top: 100;
    left: 100; 
} 
div.tooltipmydoc { 
    background:transparent url(/img/gray-docs.png) no-repeat scroll 0 0; 
    font-size:12px; 
    height:190px; 
    padding:30px; 
    width:325px; 
    font-size:14px; 
    display:none; 
    color:#000;
    top: 100;
    left: 100; 
} 
