        .SimpleTip
        {
            position: relative;
            color: blue;
        }
        .SimpleTip div
        {
            /* hide tool tip box */
            display: none;
        }
        /* -- STYLE : 1 --*/
        .SimpleTipHover
        {
            position: relative;
 		 z-index: 100;
            color: #069;
            cursor: help; /* show help icon along with regular mouse icon */
        }
        /* style the tool tip */
        .SimpleTipHover div
        {
            /* you can change anything in the styling attributes below */
            font-size: 10px;
            font-weight: normal;
            width: 85%;
            padding: 4px;
            border: 2px solid #FFC252;  /* #FFC568;*/
            background-color: #F2FFB3;  /* #FFFFE0; #FFF9E4;*/
            color: #2A3334; /* #555; DON'T CHANGE ANYTHING BEYOND THIS LINE */ /* making round corners for Moziall Firefox and Safari. IE dosen't support */
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
	    	  position: absolute;
            display: block;
            left: +15px; /* correct positioning*/
            top: +16px; /* adjust positioning from top so that tool tip will come above the elemnt */
            text-align: left; /* make it visible above the all elment, z-index decide the order of elements we show on page. 5000 is much higher value and tool tip will always come above of all elements */
            z-index: 5000;
        }
	.SimpleTipHoverCW
        {
            position: relative;
 		 z-index: 100;
            color: #069;
            cursor: help; /* show help icon along with regular mouse icon */
        }
        /* style the tool tip */
        .SimpleTipHoverCW div
        {
            /* you can change anything in the styling attributes below */
            font-size: 12px;
            font-weight: normal;
            width: 90%;
            padding: 4px;
            border: 2px solid #FFC568;
            background-color: #FFFFE0; /*#FFF9E4;*/
            color: #555; /* DON'T CHANGE ANYTHING BEYOND THIS LINE */ /* making round corners for Moziall Firefox and Safari. IE dosen't support */
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
	    	  position: absolute;
            display: block;
            left: +15px; /* correct positioning*/
            top: +16px; /* adjust positioning from top so that tool tip will come above the elemnt */
            text-align: left; /* make it visible above the all elment, z-index decide the order of elements we show on page. 5000 is much higher value and tool tip will always come above of all elements */
            z-index: 5000;
        }

