/*** TOOL TIP : STATS ***/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/ /* If you want dots under the hoverable text */
}
.link_to_pg{
	color:#000;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 41px;
	white-space:nowrap;
	
	border: 1px solid black;
	border-color:#999;
	font-size:13px;
	font-weight:normal;
    background-color: #FFF;
    color: #971010;
    text-align: center;
    padding: 1px 3px;
	margin: 3px 3px;
    border-radius: 3px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}
/*** TOOL TIP : ENDS ***/