/* Set universal hyperlink color */
a:link {
  color: blue;
  text-decoration: none;
}
a:visited {
  color: #1414B4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/* Main content- Create a centered div with light blue background */ 
 .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background: #EFFFF9;
	/* background: #d4eaf3; */
	}

/* Indent text */
.indent { 
	margin-left: 30px; 
	}

/* Center content */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Images in 2 columns */
.row {
  display: flex;
}

.column {
  flex: 50%;
  padding: 5px;
}

/* Make images resize responsively, and center them within their containers */
.responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* display images side by side- not used 
.imgContainer{
    float:left;
	width: 50%;
}
*/

/* Responsive two column image layout- not used 
div.imgcontainer {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
}

.two-columns {
  width: 48%;
  display: inline-block;
}
*/

/* Table padding- not used
th, td {
  padding-left: 10px;
}	
*/

/*
 Set universal font size for p- not used 
p {
  font-size: 18px;
  
}
*/

/* 
Set universal font size for li- not used 
li {
	font-size: 18px;
}
*/

/* Navigation  starts- not used */
/* Add a black background color to the navigation bar 
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar 
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover 
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link 
.topnav a.active {
  background-color: #b6a993;
  color: white;
}
/* Navigation ends */
 
