/* Tooltip container */
.llaTooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
	margin: 0px 0px 15px 450px;
}

/* Tooltip text */
.llaTooltip .llaTooltiptext {
    visibility: hidden;
    width: 1000px;
	top: 100%;
	left: 50%;
	margin-left: -500px;
    background-color: grey;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
	z-index: 9000;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.llaTooltip:hover .llaTooltiptext {
    visibility: visible;
}
#topicContent h1 {
	margin: 10px 0px 0px 0px;
}