
/* nvaigation bar */
nav
{
  position: sticky;
  top: 23pt;
  
  background: #FAFCFC;
  
  display: flex;
  justify-content: center;
}


/* centered container */

nav>div
{
  width: 100%;
  max-width: 30cm;
  
  padding: 15pt;
  
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/* logo */

nav>div>div:first-child
{
  display: flex;
  justify-content: center;
}

nav>div>div:first-child>table td:first-child
{
  padding-right: 5pt;
}

nav>div>div:first-child>table div:first-child
{
  font-size: 0.9em;
}

nav>div>div:first-child>table div:nth-child(2)
{
  color: #339999;
  font-weight: bold;
}

nav>div>div:first-child>table div:last-child
{
  font-size: 0.8em;
}


/* links */

nav>div>div:last-child
{
  margin-top: 15px;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-flow: row wrap;
}

nav>div>div:last-child>a:last-child>img
{
  width: 24pt;
  height: 16pt;
}

nav a
{
  margin-left: 15pt;
  font-size: 1em;
  text-decoration: none;
}