  .toolTip, .toolTip1, .toolTip2, .imageToolTip { /* 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(images/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: auto;
 position: absolute; /* Absolute will make the tooltip float above other content in the page */
 top: 0px;
 margin-left:22px;
 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:999999;
 }

.toolTipMid { /* Middle section of the tooltip */
 padding: 5px;
 background: #82D5F0;
 color:#000000;
}

 #wrapper {
 width: 900px;
 margin: 20px auto;
 padding: 30px;
 background: #FFF;
 border: solid 1px #666;
 }
 
 
 .MidBox { /* Middle section of the tooltip */
	width:190px;
 }

.toolTip.bigTootltip .toolTipMid{
width:200px;
}
