@charset "ISO-8859-1";


*, *:before, *:after {
	box-sizing: border-box;
}


body {
	position: relative;
	font-family: 'Times New Roman';
	background-color: white  !important;
	height: 100%;
	width: 100%;
	padding: 0px 0px 0px 0px;
	border: 0px solid yellow;
	margin: auto;
	overflow: auto;
	border:1px solid black;
}

.titleStyle {
	font-size:22px;
}


a {
	color:black;
	text-decoration: underline;
	text-decoration-style: dotted;
}

a:hover {
	color:black;
	text-decoration: none;
	cursor:help;
}

.debugBorder {
	border:0px solid black;	
}


.imgStyle {
	background-position: center; /* Center the image */
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: contain;  		
}

.centerFlex {
	display: flex;
    align-items: center;
    justify-content: center;
}

.centerAbsolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


.blackBold {	
	font-WEIGHT: bold;	
	color: white;
	font-family: Times New Roman;
	text-shadow: black 5px 5px 10px, white -5px -5px 30px;
}

.bb {	
	font-WEIGHT: bold;	
	color: black;
	font-family: Times New Roman;
	
}

.popupStyle {
	position:absolute;
	display:block;
	border:black 5px solid;
	border-radius:5px;
	box-shadow: 5px 5px 4px grey;
	background-color:white;
	opacity: 0;
	transition: opacity 1s; 
	padding:20px;
}

.popupStyle.fade {
  opacity: 1;
  transition: opacity 1s; 
}




.clearStyle {
	box-shadow: none;
	text-shadow: none;
}


.uLine {	
	text-decoration: underline;
	text-decoration-style: dotted;
	
}
 
/* top: 100%; */
	/* transform: translateY(-100%); */
	


