/* Tooltip
----------------------------------*/
.ui-tooltip {

    padding:3px;
    position:absolute;
 

    opacity:.80;
    filter: alpha(opacity=80); /*per Internet Explorer 6-7*/
    filter: alpha(opacity=80); /*per Internet Explorer 8*/
    z-index:9999;
    -o-box-shadow: 0 0 5px #aaa;
    -moz-box-shadow: 0 0 5px #aaa;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;

}

.ui-tooltip-content{
    background-color:#565f4f;
    color:#ffffff;
    padding:10px;

}

/* Fades and background-images don't work well together in IE6, drop the image */
* html .ui-tooltip {
    background-image: none;


}
body .ui-tooltip { border-width:0px; }