.toolTip { /* This is the hook that the jQuery script will use */
	padding-right:0px; /* This is need to make sure that the help icon is always visible */
	background:  url(../images/dot.png) no-repeat right;
	color: #3366FF;
	cursor: help; 
	width:10px;height:10px;float:left;
	position: relative; /* This contains the .toolTipWrapper div that is absolutely positioned  */
}

.toolTipWrapper {
    color: #fff;
    display: none;
    float: left;
    font-size: 9pt;
    padding: 15px 0;
    position: absolute;
    top: 20px;
    width: 300px;
    height: 50px;
}
.toolTipTop {
    background: url("../images/bubbletop.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 7px;
}
.toolTipMid {
    background: url("../images/bubblemid.png") repeat-x scroll center top #000;
    padding: 10px;
}
.toolTipBtm {
    background: url("") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 5px;
}
.toolTipMid .caption{margin:0 0 5px 0; font-family: arial;
    font-size: 1.1em;
    font-weight: bold;} 