/*---------- bubble tooltip -----------*/
a.tt{
    font-size:10px;
}
a.tt{
    position:absolute;
    z-index:24;
    text-decoration:none;
    font-size:10px;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25; color: #aaaaff; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:0px; left:0;
	padding: 15px 0 0 0;
	width:200px;
	color: #993300;
    text-align: center;
	filter: alpha(opacity:90);
	KhtmlOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
	text-align:left;
	font-size:10px;
	
}
a.tt:hover span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(../../images/bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(../../images/bubble_filler.gif) repeat bottom;
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(../../images/bubble.gif) no-repeat bottom;
}
.ttGrid 
{
 font-size:10px;	
}

/* tooptip 

.ui-tooltip {
    background: #003f5f;
    color: white;
    border: none;
    padding: 0;
    opacity: 1;
}
.ui-tooltip-content {
    position: relative;
    padding: 8px;
}
*/

.ui-tooltip, .arrow:after {
    background: #003f5f;
  }
  .ui-tooltip {
    background: #003f5f;
    color: white;
    border: none;
    padding: 0;
    opacity: 1;
  }
.ui-tooltip-content {
    position: relative;
    padding: 8px;
}
  
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    tranform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }