html {    }

body {
    background-image: linear-gradient(to right, #ffffff 8%, #555555, #555555, #ffffff 92%);
    margin:0px 0px 0px 0px;
    font-family: Trebuchet MS, Arial, Helvetica, Times New Roman;
    -webkit-text-size-adjust: 100%;
}

/* Styles for screens 480px wide or less (e.g., mobile) */
@media only screen and (max-width: 480px) {
  body {
    font-size: 14px; /* Smaller font for mobile */
  }
  .container {
    padding: 10px; /* Less padding */
  }
}

p {
    color: #002c69;
    font-family: Trebuchet MS, Arial, Helvetica, Times New Roman;
    font-size: 18px;
    }

a { color: #2c88c9; }
a:link { color: #002c69; }
a:visited { color: #2c88c9; }
a:active {   }
a:focus {   }
a:hover { color: #002c69; }

h1 {
	color: #002c69; text-align: center;
	}

h3 {
	color: #002c69; text-align: center;
	}


/* Images */

/* Lists */

ul {   }
ol {   }

ul li {   }
ol li {   }

dl {   }
dt {   }
dd {   }

/* Tables */

table { width:100% }

tr {   }
.odd {   }
.even {   }

th {   }
thead, th {   }

tbody {   }

th, td, caption {   }
caption {   }

tfoot {   }
.tfooter {   }

/* Containers */

#wrapper { 
    width:1050px;
    margin:0px auto;
    background-color:#ffffff;
    }

#header { 
    width:100%;
    overflow: hidden;
    }

#logo {
	float: left;
	width: 250px;
	margin: 0 0 0 50px;
}

#logo img {
    width:150px;
    margin: 20px;
    }

#menu {
	width: 625px;
	height: 100px;
	float: right;
	margin: 20px 0px 0px 0px;
}

#menu ul li {
	display: inline;
	line-height: 18px;
	margin-bottom: 12px;
	float: left;
}

#menu ul li a {
	display: inline-block;
	padding: 0px 10px 10px 10px;
	margin: 0 5px;
	text-decoration: none;
	font-size: 12px;
	color: #2c88c9;
	line-height: 50px;
}

#menu ul li:hover {
	border-bottom: 3px solid #002c69;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #ffffff;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 14px;
  color: #2c88c9;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 14px;
  border: none;
  outline: none;
  color: #2c88c9;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ffffff;
  color: #002c69;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #2c88c9;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.current {
	font-weight: bold;
	color: #444;
	border-bottom: 3px solid #2c88c9;
}

#flags {
	width: 150px;
    float: right;
    margin: 50 10 0 0;
}

#banner {
    width: 100%;
    border-top: 1px #002c69 solid;
}
    
#banner h1 {
	text-align: center;
}

#banner img {
	width:100%;
}

#banner h3 {
    font-style: italic;
    text-align: center;
}

#pres img {
    display: block;
    width: 300px;
    margin: auto;
}

#index-content {
	width: 80%;
	margin: auto;
}

#index-content p {
	width: 100%;
	text-align: justify;
	line-height: 150%;
}

#index-content img {
	border-radius: 8px;
	margin: auto;
}

#selector {
    text-align: center;
    color: #002c69;
}

#selector select {
	border-color: #002c69;
	color: #002c69;
}

#selector option {
	color: #002c69;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

#main {
    width: 100%;
    height: 2100px;
}

summary {
  list-style: none; /* or list-style-type: none; */
}
/* Webkit-specific pseudo-element for broader compatibility */
summary::-webkit-details-marker {
  display: none;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.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.9);
  /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 1000px;
}

#caption {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

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

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

#content {   
	width: 70%;
	margin: auto;
	padding: 0 0 40px 0;
}

#formleft {
	margin: auto;
}

#formleft a { color: #002c69; }
#formleft a:link { color: #002c69; }
#formleft a:visited { color: #002c69; }
#formleft a:active { color: #002c69;  }
#formleft a:focus { color: #002c69;  }
#formleft a:hover { color: #002c69; }


#formleft p {
	font-size: 16px;
	color: #002c69;
	line-height: 140%;
}

#formleft img {
	width: 300px;
}

#form-content {
	margin: auto;
	line-height: 140%;
}

#form {
	margin: auto;
	padding: 0 0 0 100;
	color: #002c69;
}

#form ol {
	list-style-type: none;
}

#form label {
	float: left;
	width: 150px;
	text-align: right;
	display: block;
}

#form input {
	width: 280px;
	margin-bottom: 16px;
	margin-left: 10px;
	background: #eeeeee;
	border: 1px #002c69 solid;
}

.submit {
	width: 90px;
	height: 25px;
	margin-left: 240px;
	font-size: 12px;
	background-color: #002c69;
	color: #eeeeee;
	border: 1px #eeeeee solid;
	border-radius: 12px;
}

#form p {
	font-size: 16px;
	color: #002c69;
}

#form h4 {
	text-align: center;
	font-size: 18px;
	color: #ff0000;
}

#form h2 {
	text-align: center;
	font-size: 24px;
	color: #002c69;    
}

#jack p {
	width: 100%px;
	text-align: center;
}

#jack img {
    width: 50px;
}

#footer {
    width: 100%;
    background-color: #002c69;
    height: 35px;
    }
    
#fleft {
	float: left;
	width: 200px;
}

#fleft a {
	border: 0px #002c69 solid;
}

#fleft img {
	margin: 0px 0px 0px 25px;
}

#fright {
	float: right;
	width: 200px;
}

#fright p {
	color: #ffffff;
	font-size: 10px;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 280px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #002c69; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
