


a:link {
    color: #1A25BF; 
    background-color: transparent; 
    text-decoration: none;
}

a:visited {
    color: #1A25BF;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: darkblue;
    background-color: transparent;
    text-decoration: underline;
}


/* Container needed to position the button. Adjust the width as needed */
.container {
  position: relative;
  width: 100%;
}

/* Make the image responsive */
.container img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.container .btn1 {
  position: absolute;
  top: 70%;
  left: 95%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: white;
  padding: 0px 0px;
  border: none;
  cursor: pointer;
  border-radius: 7px;
}

.container .btn1:hover {
  background-color: white;
}
.container .btn2 {
  position: absolute;
  top: 70%;
  left: 90%;
  width: 40px;
  height: 37px;
  background-color: #fff;
  color: white;
  padding: 0px 0px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.container .btn2:hover {
  background-color: white;
}







* {box-sizing: border-box}
body {font-family: Arial, Helvetica, sans-serif;}


.navbar {
  overflow: hidden;
  background-color: #718597;
  
}

.navbar a {
  display: table-cell;
  vertical-align: middle;
  float: left;
  color: white;
  text-align: center;
  padding: 10px ;
  text-decoration: none;
  text-align: center;
  width: 16.66%;
}


.navbar a:hover {
  background-color: #1A25BF;
 
}

a.active {
  background-color: #5E8FD9;
 
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
  }
}






.dropdown {
  float: left;
  overflow: hidden;
  text-align: center;
  width: 11.1%;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown:hover .dropbtn {
  background-color: #1A25BF;
  width: 100%;
}

.dropbtn.active {
  background-color: #5E8FD9;
  width: 100%;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #DDE2E6;
  min-width: none;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: inherit;
  padding: 10px;
  text-decoration: inherit;
  display: block;
  text-align: left;
  width: 100%;
  height: 38px;
}

.dropdown-content a:hover {
  background-color: #1A6FBF;
  width: 100%;
  height: 38px;
}

.dropdown:hover .dropdown-content {
  display: block !important;
}







div {
    text-align: justify;
    text-justify: inter-word;
   
}

body {  
padding-left: 2em; 
padding-right: 2em; 
padding-bottom: 1em; 
padding-top: .5em;
}







.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 1000%;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 0%;
  margin-left: -635%;
}




.tooltip:hover .tooltiptext {
  visibility: visible;
}

img.wrap {
  float: right;
  padding: 0 0 0 30px;
}

