<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">nav.wellnav {
	display:flex;
	width:100%;
	margin:0 !important;
	font-family: 'Open Sans', sans-serif;
	font-size:1.2em;
	background:#333;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	flex-wrap:wrap;}
nav.wellnav &gt; a {padding:1em;color:#EEE !important;transition: all 0.3s ease;}  
nav.wellnav &gt; a.title {font-weight:bold;}  
nav.wellnav &gt; a:hover {background:#639;}
nav.wellnav &gt; a.icon { display:none; }
 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 550px) {
  nav.wellnav a:not(:first-child) {display: none;}
  nav.wellnav a.icon {
    order:2;
    display: block;
  }
  nav.wellnav {
	justify-content:space-between;
	flex-wrap:nowrap;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  nav.wellnav.responsive {position: relative;flex-direction:column;}
  
  
  nav.wellnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  nav.wellnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} </pre></body></html>