/*-----------------------------------------------------------------------------------------------*/
/*                                            TOOLTIP                                            */
/*-----------------------------------------------------------------------------------------------*/

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

	.toolTipWrapper { /* The wrapper holds its insides together */
		width: 400px;
		position: absolute; /* Absolute will make the tooltip float above other content in the page */
		top: 10px;
		display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
		color: #000;
		/*font-weight: bold;*/
		font-size: 10px; /* A font size is needed to maintain consistancy */
                z-index: 11;
	}

		.toolTipTop { /* Top section of the tooltip */
			width: 400px;
			height: 30px;
			background: transparent url(../images/tooltip/bubbleTop.gif) no-repeat;
		}

		.toolTipMid { /* Middle section of the tooltip */
			padding: 4px 8px;
			background: #A1D40A url(../images/tooltip/bubbleMid.gif) repeat-x top;
		}

		.toolTipBtm { /* Bottom Section of the tooltip */
			height: 13px;
                        width: 400px;
			background: transparent url(../images/tooltip/bubbleBtm.gif) no-repeat;
		}




		