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

.toolTip { /* This is the hook that the jQuery script will use */
	padding-right: 20px; /* This is need to make sure that the help icon is always visible */
	color: #f9e48f;
	cursor:pointer;
	position: relative; /* This contains the .toolTipWrapper div that is absolutely positioned  */
}

	.toolTipWrapper { /* The wrapper holds its insides together */
		width: 250px;
		position: absolute; /* Absolute will make the tooltip float above other content in the page */
		top: -10px;
		margin-left:42px;
		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: 9pt; /* A font size is needed to maintain consistancy */
		z-index:20000;
	}
		.toolTipCorner{
			width:23px;
			height:15px;
			position:absolute;
			left:-22px;
			background:url(corner.png) no-repeat;
		
		}
	
		.toolTipTop { /* Top section of the tooltip */
			height: 9px;
			background: transparent url(top.png) no-repeat;
		}

		.toolTipMid { /* Middle section of the tooltip */
			padding: 1px 5px 1px 10px;
			background: url(mid.png) repeat-y;
			color:#000000;
		}
		
		.toolTipBtm { /* Bottom Section of the tooltip */
			height: 10px;
			background: transparent url(bottom.png) no-repeat;
		}
		
		


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

.toolTipUpper { /* This is the hook that the jQuery script will use */
	padding-right: 20px; /* This is need to make sure that the help icon is always visible */
	color: #f9e48f;
	cursor:pointer;
	position: relative; /* This contains the .toolTipWrapper div that is absolutely positioned  */
}

	.toolTipWrapperUpper { /* The wrapper holds its insides together */
		width: 250px;
		position: absolute; /* Absolute will make the tooltip float above other content in the page */
		bottom:25px;
		display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
		color: #000;
		font-weight: bold;
		margin-left:-70px;
		font-size: 9pt; /* A font size is needed to maintain consistancy */
		z-index:20000;
	}
		.toolTipBottomCorner{
			width:17px;
			height:12px;
			position:absolute;
			left:22px;
			bottom:-11px;
			background:url(bottomCorner.png) no-repeat;
		
		}
	
		.toolTipTop { /* Top section of the tooltip */
			height: 9px;
			background: transparent url(top.png) no-repeat;
		}

		.toolTipMid { /* Middle section of the tooltip */
			padding: 1px 5px 1px 10px;
			background: url(mid.png) repeat-y;
			color:#000000;
		}
		
		.toolTipBtm { /* Bottom Section of the tooltip */
			height: 10px;
			background: transparent url(bottom.png) no-repeat;
		}
				



		