a:link
  {
  font-weight: normal;
	color: blue;
	text-decoration: none;
  }
a:hover {
	color: gray;
	text-decoration: none;
	}
	
a:active { 
		 color: white; 
		 text-decoration: none 
		 }
				 
a:visited { 
		  color: red; 
		  text-decoration: none 
		  }

@media screen {

body
  {
   background-color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
   font:Verdana, Geneva, Arial, Helvetica, sans-serif;;
	color: black;
	align:center;
	margin: 0em;
	padding: 0em;
	width:100%; 
   height:100%;
    }

	#header {
	background-color:#CCD6E2;
	position: fixed;
	width: 100%;
	align: center;
	top:0px;
	padding:2px;
	}
	
		#footer {
	background-color:#CCD6E2;
	}
	
	#content {
	background-color:;
	align: center;
    width: 80%;
	top:0px;
	}
	
	.top-line {
    margin-top: 160px;
    padding:  0;
	}
	
	img { 
	width: ;
	border : none;
	}
	
	.btn {
	 background-color: #CCD6E2;
	 border: none;
	 color: black;
	 padding: 8px 8px;
	 font-size: 16px;
	 cursor: pointer;
	 }
	
	.btn:hover {
	background-color: RoyalBlue;
	}

 #footer {
  background-color:#e8e8e8;
	text-align:center;
	bottom:0px;
	padding:1px;
	align: center;
	}
	
	/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.vl {
  border-left: 1px solid black;
  height: 60px;
}

.responsive {
  width: 100%;
  height: auto;
}

/* The actual popup  line 46 align popup*/
.popup .popuptext {
  visibility: hidden;
  width: 300px;
  background-color:#D7E2D1 ; /* #003569 */
  color: #1B3D62;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 28%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}	
