* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}


body {
    font-family: "Lato", sans-serif;
}
		  
.bodytext {
  margin: auto;
  max-width: 55ex;
}

	a:link { text-decoration: none; }

	a:visited { text-decoration: none; }

	a:hover { text-decoration: none; }

	a:active { text-decoration: none; }


   .feet {
	 color: black; 
	 font-weight: normal;
	 font-size: 16px;
   }
   .k0 {
     color: black; 
	 font-weight: normal;
	 font-size: 16px;
   }
   .k1 {
     color: black; 
	 font-weight: bold;
	 font-size: 16px;
   }
   .b0 {
     color: darkslateblue; 
     font-weight: normal;
	 font-size: 16px;
   }
   .b1 {
     color: darkslateblue; 
	 font-weight: bold;
	 font-size: 16px;
   }
   .licon {
     float: left;
     height: 16px;
   }

ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    flex: auto;
    padding: 14px 16px;
    margin: 0;
}

li a {
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
    padding: 14px 16px;
}

li a:hover:not(.active) {
    background-color: #111;
}

.active {
//    background-color: #4CAF50;
}

 
      .box {
        display: flex;
        flex-flow: column;
        height: 100%;
      }
      .box .row {
        border: 1px dotted #0313fc;
      }
      .box .row.header {
        flex: 0 1 auto;
      }
      .box .row.content {
        flex: 1 1 auto;
      }
      .box .row.footer {
        flex: 0 1 40px;
	background-color: #333;
      }








#header {
	background-color : rgb(233, 50, 15);			
	padding-top : 0px;
	padding-bottom : 0px;
	padding-left : 0px;
	padding-right : 30px;
	border : 2px solid black;
	max-height : 10%;
	}


.headercolumn {
    float : left;
    width : 20%;
    padding : 0px;
}
.headercolumn2 {
    float : left;
    width : 80%;
    padding : 0px;
}
.headerrow::after {
    content : "";
    clear : both;
    display : table;
}


#pageheading {
    border : 1px;
    background-color : rgb(233, 50, 15);			
    padding-top : 5px;
    padding-bottom : 5px;
    padding-left : 30px;
    padding-right : 30px;
    border : 2px solid black;
}


 /* Three image containers (use 25% for four, and 50% for two, etc) */
.bodycolumn1 {
  display: flex;
  float: left;
  width: 33.30%;
  padding: 5px;
  display: table-row;
  height: 200vh;
}

/* Clear floats after image containers */
.bodyrow1::after {
  display: flex;
  content: "";
  clear: both;
  display: table;
} 

.bodycolumn2 {
  display: flex;
  float: left;
  width: 66.60%;
  padding: 8px;
  display: table-row;
}

/* Clear floats after image containers */
.bodyrow2::after {
  display: flex;
  content: "";
  clear: both;
  display: table;
} 




/* Dropdown Button */
.btn {
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    //  background-color: rgb(233, 126, 62);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    
    
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: relative;
    background-color: #f1f1f1;
    min-width: 320px;
    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: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* The container <div> - needed to position the dropup content */
.dropup {
    position: relative;
    display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
    display: none;
    position: absolute;
    bottom: 50px;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropup */
.dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* 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;} 

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  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 */
.modal-content {
  position: relative;
  background-color: rgb(233, 126, 62); // #fefefe;
  margin: auto;
  padding: 0px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: rgb(233, 50, 15); // #5cb85c;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}


table, th, td {
    border-collapse: collapse;
    padding: 10px;
}


/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
    #excount{
	width: 100%;
    }
    .hidden-mobile {
    	display: none;
    }
    .expand-mobile {
	width: 150%;
    }

}
/* Other devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 601px) {
        with: 100%;
/*        width: fill;   responsive width for larger screen sizes */
    }
}

