/* Jatt (Just Another Tooltip) overall */
.tooltip, .preview, .screenshot { 
cursor: pointer;

}

/* tooltip only, don't add a default width to
 preview/screenshot tooltips or the image won't fit inside */
#tooltip { 
width: 350px; 

}  

/*position: absolute; top: 800px; right: 620px; direction: e; width: 300px; background: #f2f2f2; color: #666; */
/* basic tooltip style */
#tooltip, #preview {
 color: #666;
 background: #f2f2f2;
 border: 1px solid #ccc;
 padding: 8px;

 display: none;
 /*opacity: 0.9;*/ /*0.9*/
/* filter: alpha(opacity=95);*/
 text-align: left;
 border-radius: .1em;
 -moz-border-radius: .1em;
 -webkit-border-radius: .1em;
 z-index: 1000;
}

/* close button (span) */
#tooltip .close, #preview .close {
 position: absolute;
 top: 3px;
 right: 3px; direction: e;
 display: none;
 cursor: pointer;
 text-indent: -9999px;
 background: url(../images/close.gif) center center no-repeat;
 width: 16px;
 height: 16px;
}