/* Add a black background color to the top navigation */
.topnav {
            background-color: rgba(225, 225, 225, 0.9);
			padding:8px;
            overflow: hidden;
			
        }

/* Style the links inside the navigation bar */
.topnav a {
		display:row;
            float: right;
            color: #333;
            text-align: center;
            padding: 8px 16px;
            text-decoration: none;
            font-size: 1.1em;
			/*border:solid 1px #bbb;*/
			border-radius:4px;
			margin: 0 8px;
			 overflow: hidden;
        }
		
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  }

 /* Change the color of links on hover */
        .topnav a:hover {
            background-color: #666666;
            color: white;
        }
		@media (max-width: 800px){
	.topnav a {
                border: solid 1px #bbb;
				font-size: 3vw;
				padding:4px 8px;
			}
			.nomedia{
			display:none}
		}

/* Add a color to the active/current link */
        .topnav a.active {
            background-color: orange;
			border:none;
            color: white;
        }