/*-----------------------------------------------------------------------------------------------*/
/*                                      SIMPLE jQUERY TOOLTIP                                    */
/*                                      VERSION: 1.1                                             */
/*                                      AUTHOR: jon cazier                                       */
/*                                      EMAIL: jon@3nhanced.com                                  */
/*                                      WEBSITE: 3nhanced.com                                    */
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
/*                         CSS RESET (MODIFIED VERSION OF YAHOO UI CSS RESET)                    */
/*-----------------------------------------------------------------------------------------------*/



/*-----------------------------------------------------------------------------------------------*/
/*                                            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 */
	background: transparent url(/themes/ideyne/help.png) 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 */
		min-width: 110px;
			max-width:130px;
		position: absolute; /* Absolute will make the tooltip float above other content in the page */
		top: 20px; z-index:500;
		left:-300px;
		display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
		color: #555; background: #eee;
		 border-radius:3px; border:1px solid #b4b4b4;
		font-size: 9pt; /* A font size is needed to maintain consistancy */
	}
	
		.toolTipTop { /* Top section of the tooltip */
			min-width: 100px;
			max-width:120px;
			height: 0px;
			background: #eee; border-radius:0 0 15px 15px ; 
		}

		.toolTipMid { /* Middle section of the tooltip */
			min-width: 100px;
			max-width:120px;position: relative;  z-index:500;
			padding: 8px 15px; border-radius: 3px ;
			background: white;
			box-shadow:0 0 10px #888;
		}
		
		.toolTipBtm { /* Bottom Section of the tooltip */
			min-width: 100px;
			max-width:120px;
			height: 0px;
			background: #eee; 
		}
		
		
		
		
		