 /* Dropdown Button Start  */
/*.dropbtn {
	background-color: silver;
	color: black;
	padding: 2px;
	font-size: 12px;
	border: none;
	cursor: pointer;
}*/

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
	background-color:gray;
}



/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	/*display: none;*/
	display: inline-block;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 6px 12px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 
/* Dropdown Button End */ 
 
 
 
 
 /* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.maintable {
	text-align:center;
	border:1px solid silver;
	width:100%;
	margin-top:3px
} 

.maintable-tr {
	font-size:10px;
	background-color:silver;
	border:1px solid gray;
	font-weight: bold;
	

}



.maintable tr:hover {
	border-color:rgb(183, 211, 192);
	font-weight: bold;
}

.maintable tr:active {
	background-color: rgb(152, 243, 181);
	font-weight: bold;
}

.maintable tr:focus {
	background-color: rgb(152, 243, 181);
	font-weight: bold;
}

.lineselect {
	background-color:rgba(212, 219, 215, 0.959);
	font-weight: bold;
}


/* Added for CSS Grids */
/*html{
	height: 100%;
  }
  
body { 
margin: 0; 
display: grid;
height: 100%;
grid-template-areas:
	  "header_section"
	  "Site-content_section"
	  "footer_section";
grid-template-rows: 100px 100% 50px; /
}
.header { 
grid-area: header_section;
background-color: #FDD; 
}
.Site-content { 
grid-area: Site-content_section;
background-color: #DFD; 
}
.footer {
grid-area: footer_section;
background-color: #049e8c;
}
*/
/* Added for CSS Grids */