.hidden { display:none; }

.pageCover { 
position:fixed; 
z-index:10; 
background-color:rgba(255,255,255,0); 
width:100vw; 
height:100vh; 
top:0; 
left:0;
}

.modal { 
position:absolute; 
z-index:100; 
background-color:aliceblue;
border:2px double grey;
width: 50%; 
height:80vh; 
top:9%; 
left:25%; 
text-align:center;
}

.modalTitle {
margin:0;
background-color:rgb(41, 41, 41);
color:#ff0;
height: 25px; 
padding:5px;
font-weight:bold;
font-size:1.1em;
}
.modalInfo {
margin:0;
background-color:rgb(230, 230, 230);
height: 120px; 
padding:5px;
}

.modalTable {
margin:0;
background-color:rgb(204, 204, 204);
height: 582px; 
padding:5px;
}

#close { 
background-color:#474747;
color:#ff0;
border:1px solid #e0e0e0;
padding:5px 10px;
}

#close:hover { cursor: pointer; background-color:#1b1a1b; }