.toolTip {
	padding-right: 20px;
	background: transparent url(help.gif) no-repeat right;
	color: #36F;
	cursor: help;
	position: relative;
}
.toolTipWrapper { /* The wrapper holds its insides together */
	width: 175px;
	position: absolute; /* Absolute will make the tooltip float above other content in the page */
	top: 20px;
	display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
	color: #FFF;
	font-weight: bold;
	font-size: 9pt; /* A font size is needed to maintain consistancy */
	z-index:100;
}
.toolTipTop { /* Top section of the tooltip */
	width: 175px;
	height: 30px;
	background: transparent url(bubbleTop.gif) no-repeat;
}
.toolTipMid { /* Middle section of the tooltip */
	padding: 8px 15px;
	background: #d9edf7 url(bubbleMid.gif) repeat-x top;
}
.toolTipBtm { /* Bottom Section of the tooltip */
	height: 13px;
	background: transparent url(bubbleBtm.gif) no-repeat;
}