/* CSS Document */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin-top:  60px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
	padding-bottom: 40px; /* Adjust to your footer's height */
}
 /* Style the navigation menu */
/*
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}*/
.topnav {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0; right: 0;
    z-index: 10;
    width: 100%
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #tvwLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #18245F;
  color: white;
}

