body {
	font-family: Arial, Helvetica, sans-serif;
  color: white;
  
  background-image: url("/legacy_images/greysquares.png");
}

a:link, a:visited {
  color: orange;
  
}
a:hover, a:active {
	  color:gray;
}


     div#banner { 
       position: absolute; 
       top: 0; 
       left: 0; 
       background-color: #708090; 
       width: 100%;
		height:25px;
		z-index:1;

	   
     }
     div#banner-content { 
       margin: 0 auto; 
       padding: 0px; 
	   z-index:2;
      }
     div#main-content { 
       padding-top: 70px;
	   z-index:3;
    }
	
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  top: 50px; /* Place the button at the bottom of the page */
  right: 30px; /* 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: black; /* 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 */
}