﻿html {    }

body {
    background-color:#eeeeee;
    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 {
    text-align: center;
}

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

#index-content {
	width: 100%;
	text-align: center;
}

#index-content p {
	width: 100%;
}

#index-content img {
	width: 100%;
}

#slider {
    
}

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

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* 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 (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 600px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 600px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

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

/* The Close Button */
.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;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

#content {   
    margin: auto;
    width: 98%;
}

#content img {
    height: 12px;
}

#cmdtable img {
    height: 15px;
}

#cmd tr {
  border: 1px #002c69 solid;
  border-radius: 8px;
}

#cstable tr {
  border: 1px #002c69 solid;
  border-radius: 8px;
}

#entable tr {
  border: 1px #002c69 solid;
  border-radius: 8px;
}

#sctable tr {
  border: 1px #002c69 solid;
  border-radius: 8px;
  width: 33%;
}

#sutable tr {
  border: 1px #002c69 solid;
  border-radius: 8px;
}

#hstable {
    width: 400px;
    margin: auto;
}

#hstable tr {
  border: 1px #002c69 solid;
  border-radius: 8px;    
}

#head {
    background-color: #002c69;
    color: #ffffff;
    text-align: center;
    font-size: 36px;
    height: 55px;
    border: 1px #002c69 solid;
    border-radius: 20px;    
}

#smhead {
    background-color: #002c69;
    color: #ffffff;
    text-align: center;
    font-size: 26px;
    height: 55px;
    border: 1px #002c69 solid;
    border-radius: 20px;        
}

#hshead {
    color: #002c69;
    text-align: center;
    font-size: 26px;
}

#co {
    color: #002c69;
    font-size: 22px;
    width: 50%;
    text-align: right;
    padding: 5px 5px;
}

#gb {
    color: #002c69;
    font-size: 22px;
    width: 50%;
    text-align: left;
    margin: 5px 5px;
}

#smco {
    color: #002c69;
    font-size: 18px;
    width: 50%;
    text-align: right;
    padding: 5px 5px;
}

#smgb {
    color: #002c69;
    font-size: 18px;
    width: 50%;
    text-align: left;
    margin: 5px 5px;
}

#schead {
    color: #002c69;
    text-align: center;
    font-size: 18px;
    height: 30px;
}

#hshead {
    color: #002c69;
    text-align: left;
    font-size: 18px;
    height: 30px;
    width: 35%;
    padding: 0 0 0 50px;
}

#hsgb {
    color: #002c69;
    font-size: 18px;
    width: 50%;
    text-align: center;
    margin: 5px 5px;
}

#divs {
    background-color: #dddddd;
    color: #002c69;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    height: 35px;
    border: 1px #002c69 solid;
    border-radius: 10px;
}

#rates {
    text-align: center;
    border: 1px #002c69 solid;
    border-radius: 10px;
}

#rates img {
    height: 35px;
}

#encr {
    color: #002c69;
    text-align: center;
    font-size: 16px;
    height: 30px;
    width: 25%;
    vertical-align: middle;
}

#sccr {
    color: #002c69;
    text-align: center;
    font-size: 16px;
    height: 30px;
    width: 200px;
}

#hscr {
    color: #002c69;
    text-align: center;
    font-size: 16px;
    height: 30px;
}

#legend {
    padding: 0 0 0 20px;
}

#legend table {
    width: 20%;
    border: 1px #002c69 solid;
    border-radius: 8px;
}

#legend td {
    color: #002c69;
    font-size: 11px;
}

#legend img {
    height: 15px;
}

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