/* CSS Document */

body {
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  background-color: #333;
  overflow: hidden;
}

a:link
{
	color: #3C7DFF;
}

a:visited
{
	color: #3C7DFF;
}

a:hover
{
	color: #3C7DFF;
}

a:active
{
	color: #3C7DFF;
}

p.contactlink
{
	font-size: 40px;
}
/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  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 an active class to highlight the current page */
.topnav a.active {
  background-color: #3C7DFF;
  color: white;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

