body {
    font-family: verdana,arial,helvetica;
    font-size: 12pt;
    background-color:  GhostWhite;
}

.div-1 {
    padding-left: 20px;
    padding-right: 40px;
}

.div-2 {
    padding-left: 60px;
    padding-right: 40px;
}

td.bd, th.bd {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 5px;
}

tr.bd:nth-child(even) {
  background-color: rgb(30, 144, 255,.15);
}

.container {
    display: flex;
    align-items: center;
    justify-content: left;
}

#rFloat img {
    max-width: 100%;
    float: right;
    padding-left: 10px;
}

#lFloat img {
    max-width: 100%;
    float: left;
    padding-right: 10px;
}

.image {
    flex-basis: 55%;
}

.text {
    font-size: 20px;
    padding-left: 0px;
}

a {
    color: DodgerBlue;
    target: _blank;
    text-decoration: none;
}

h2 {
    color: DodgerBlue;
    background-color: Silver;
}

h3 {
    color: Coral;
    background-color: LightGrey;
    font-style: italic;
}

/* Style The Dropdown Button */
.dropbtn {
    /*background-color: #f1f1f1;*/
    background-color: rgb(51, 51, 51);
    color: Coral;
    font-size: 16px;
    padding: 8px 10px;
    border: none;
    cursor: pointer;
}

/* 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: absolute;
    background-color: dodgerBlue;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    z-index: 1;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    /*background-color: #f1f1f1;*/
    color: Black;
    background-color: ghostWhite;
    display: block;
}

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    /*background-color: CEE3F6;*/
    background-color: ghostWhite;
    display: block;
}

.navbar {
    /*overflow: hidden;*/
    background-color: rgb(51, 51, 51);
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    left:10;
    width: calc(100% - 20px); /* Full width */
    z-index: 9999;
}

.main {
  padding: 0px;
  margin-top: 50px;
  height: auto; /* Used in this example to enable scrolling */
}
