@charset "utf-8";
/* PAGE SPECIFIC STYLES: FOR PRINT.HTML ONLY */

.tooltip {
	position: relative;
	display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.tooltiptext  {
	/* Use half of the width (120/2 = 60), to center the tooltip */
	margin-left: -135px;
	left: 50%;
	width: 240px
}

.tooltip .tooltiptext {
	/* [disabled]visibility: hidden; */
	opacity: 0;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	position: absolute;
	margin-top: -47px;
	z-index: 1;
	padding-left: 15px;
	transition: 0.5s;
	/* [disabled]top: 100%; */
}
.tooltip:hover .tooltiptext {
	opacity: 1;
	/* [disabled]visibility: visible; */
}

.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	bottom: 100%;  /* At the top of the tooltip */
	/* [disabled]left: 50%; */
	/* [disabled]margin-left: -5px; */
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}


.tooltip p {
	font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;

}

/* SMALL SCREENS: ALLOWS IMAGES TO USE 100% WIDTH (COMPENSATES FOR 5% MARGINS) */
@media screen and (max-width:575px){
.tooltip {
	margin-left: -5%;
	margin-right: -5%;
}
}

/* LARGE SCREENS: ALLOWS IMAGES TO OVERHANG H1 */
@media screen and (min-width:576px){
.tooltip {
	margin-left: -60px;
	margin-right: -60px;
}
}

