/*
	by Andrew Habib
*/

p.justify {
	text-align: justify;
}

section.justify {
	text-align: justify;
	text-justify: auto;
}

b, strong {
	color: #000;
	font-weight: 550;
}

i {
	font-style: italic;
}

bi {
	color: #000;
	font-weight: 550;
	font-style: italic;
}

u {
	text-decoration: underline;
}

u.title {
	text-underline-offset: 20%
}

#my-photo {
	width: 200px;
	padding-top: 10px;
	padding-bottom: 40px;
}

#badge {
	width: 40px;
	margin: 0 0 0 0;
	display: block;
}

/* Labeled list */

dl {
	display: grid;
	grid-template-columns: max-content auto;
	margin-bottom: 1.5em;
}

dt {
	grid-column-start: 1;
	/* width: 120px;  */
	float: left;
	clear: left;
	overflow: hidden;
	/* text-align: right;	  */
	/* margin: 0 0 0 1em; */
	padding: 0 0 .75em .5em;
	/* font-weight: 600; */
	color: #000;
}

dd {
	grid-column-start: 2;
	/* margin: 0 0 0 1em; */
	padding: 0 0 .75em 1em;
}

/* Tables */

table {
	width: 100%;
}

table.default {
	width: 100%;
	margin-bottom: 0em;
	text-align: justify;
}

table.default tr {
	border-top: solid 1px #eee;
	border-bottom: solid 1px #eee;

}

table.default tr:first-child {
	border-top: 0;
}

table.default tr.nobottom {
	border-bottom: 0;
}

table.default td {
	padding: 1em .5em 1em .5em;

}

table.default th { 
	font-size: 1.2em;
	text-align: left;
	color: #0c2340;
	color: #0A122A;
	padding: 1em 0em 1em 0em;
}

table.default th.middle-head {
	padding: 2em 0em 1em 0em;
}


.blank_row {
	height: 4em !important;
	/* overwrites any other rules */
	background-color: #fff;
	border-top: 0;
	border-bottom: 0;
}

/* Tooltip */

/* Tooltip container */

.tooltip {
	position: relative;
	display: table-cell;
	vertical-align: top;
	padding: 1em 1em 0em 0em;
}

/* Tooltip text */

.tooltip .tooltiptext {
	/* float: right;
clear: both; */
	visibility: hidden;
	width: 200px;
	background-color: #0c2340;
	background-color: #0A122A;
	color: #fff;
	text-align: center;
	padding: 0 0 0 0;
	border-radius: 6px;
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 2;
	/* -webkit-transition: visibility 0s, opacity 0.5s linear;
transition: visibility 0s, opacity 0.5s linear; */
	top: 70%;
	left: 30%;
	margin-left: -90px;
	/* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 0.9;
}

.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	bottom: 100%;
	/* At the top of the tooltip */
	left: 50%;
	margin-left: -10px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #0c2340 transparent;
	border-color: transparent transparent #0A122A transparent;
}
