div_vertical_middle {
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    
}

.courier
{
font-family:Courier New;
font-size:16pt;
font-weight:bold
}

.courier2
{  font-family: Wide Latin;
   text-align: justify;
   border-style: solid;
   border-color: #4289b5;
   border-width: 2px 3em;
   margin-right: 6em;
   margin-left: 6em;
   padding-right: 1em;
   padding-left: 1em;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: maroon;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}