body {
	margin: 0px;
	font-family: "Lato", sans-serif;
	background-color: #fafafa;
	font-size: 16px;
}

.logoheader {
	margin-left: auto;
    margin-right: auto;
	margin-top: -30px;
	padding-top: 150px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 60px;
	max-width: 800px;
}

.logo {
	display: block;
    margin: auto;
	max-width: 100%;
    height: auto;
}

.mainsection{
	max-width: 800px;
	margin-left: auto;
    margin-right: auto;
	margin-top:-15px;
	padding-top:15px;
}

.mainsection h2{
	display: table;
    margin: 50px auto 50px auto;
    padding: 10px;
	background-color: #333;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
}

.mainsection p{
	font-size: 1.2em;
	line-height: 1.5em;
	margin-top: -5px;
	padding-left: 30px;
	padding-right: 30px;
	font-weight: lighter;
}

.mainsection a{
	color: black;
}

.mainsection a:visited{
	color: black;
}

/*
------------------------------------------
Top Navigation Start
------------------------------------------
*/

.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.98;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  padding-top: 16px;
  padding-bottom: 16px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav .icon {
  display: none;
}

.topnav .item {
  width: 20%;
}

@media screen and (max-width: 600px) {
	
  .topnav a:not(:first-child) {
	display: none;
  }
  
  .topnav .icon {
    float: right;
    display: block;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 10px;
	color: #f2f2f2;
	font-size:24px;
	cursor: pointer;
  }
  
  .topnav .item {
    text-align: left;
	padding-left: 16px;
	width: 50%;
  }
  
  .topnav a.item {
    color: #333;
  }
  
  .topnav a.item:hover {
    background-color: #333;
    color: #333;
  }

  .topnav.responsive {
	position: fixed;
    top: 0;
    width: 100%;	
  }
  
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
	padding-left: 16px;
	padding-right: 16px;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
	color: #f2f2f2;
  }
  
  .topnav.responsive a.item:hover {
    background-color: #333;
    color: #f2f2f2;
  }
  
  .topnav.responsive .item {
    width: 50%;
  }

}