* {
    box-sizing: border-box;
}

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


body {
    font-family: "Lato", sans-serif;
}
		  
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;
}

 
#peopleicons {
    border : 1px;
    background-color : black
}
.peopleiconcolumn1 {
    float : left;
    max-width : 24.99%;
    padding : 5px;
}
.peopleiconrow1::after {
    content : "";
    clear : both;
    display : table;
}
.peopleiconcolumn2 {
    float : left;
    width : 24.99%;
    padding : 5px;
}
.peopleiconrow2::after {
    content : "";
    clear : both;
    display : table;
}

.iconcolumn {
    float :left;
    width : 125px;
    cursor: pointer;
    background-color: #333;
}
.iconcolumn a {
    padding :5px;
    font-size : large;
    font-weight : normal;
    vertical-align: middle;
    display: table-cell;
    color: white;
}
.iconcolumn a:hover {
    background-color: #111;
}

.iconrow::after {
    content :"";
    clear : both;
    display : table;
}
.scrollcolumn {
    float : left;
/*    width : 69.99%;*/
    padding : 5px;
    font-size : large;
    vertical-align: middle;
    display : table-cell;
}
.scrollrow::after {
    content : "";
    clear : both;
    display : table;
}
.iconheading {
    color : rgb(233, 126, 62);
    font-weight : normal ;
    cursor: pointer;
}

#excount {
    background-color : rgb(233, 50, 15);
    font-weight: bold;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    width: 100%;
}


#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;
}


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

