/* Tooltip container */
div.tt, span.tt {
    position: relative;
    display: inline-block;
    border-bottom: 0px dotted #999999; 
    cursor:pointer;
}

/* Tooltip text */
div.tt, span.tt .ttt {
    visibility: hidden;
    width: 140px;
    margin-left: -40px;
    bottom:120%;
    left:50%;
    background-color: white;
    color: black;
    text-align: center;
    padding: 6px 6px;
    border-radius: 5px;
    border: 1px solid #006600;
    position: absolute;
    z-index: 1000;
    font-size:1em;
	font-weight:normal;
}


.ttt.big {
    width: 240px;
    margin-left: -80px;
}

.ttt em {
	text-decoration:underline;
	font-style:normal
}



/* Show the tooltip text when you mouse over the tooltip container */
.tt:hover .ttt {
    visibility: visible;
}


.ttt p {
	margin: 0px;
	padding: 0px;
}

.ttt h3 {
	display:none;
}