/**
 *  * Progress bars with centered text
 *   */

.progress {
    position: relative;
}

body { padding-top: 70px; }

.progress span {
    position: absolute;
    display: block;
    width: 100%;
    color: black;
}

@media only screen and (min-width : 768px) {
    /* Make Navigation Toggle on Desktop Hover */
    .dropdown:hover .dropdown-menu-hover {
        display: block;
    }
}

th a.th-header-link {
	color: black;
}

th a.th-header-link.th-header-link-selected {
	color: darkgreen;
}

.print-only {
    display: none;
}

@media print {
	body {
		background-color: white;
		color: black;
        padding-top: 0px;
        font-size-adjust: 0.4;
	}
	#header,#footer {
		visibility: hidden;
		height: 0px;
	}
	.no-print {
    	display: none;
  	}

    .print-only {
        display: unset;
    }
}