<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
  HEADER
  height = 120px 


*/
header {
  margin: 0px;
  padding: 0px 20px;
  position: relative;
  z-index: 100;
}
header a {
  display: inline-block;
  margin-right: 15px;
  float: left;
}
header img {
  width: 100px; 
}
header h1 {
  margin-bottom: -20px;
  padding: 0px;
}
header h6 {
  margin-top: 8px;
  font-size: 12px;

}
header hr {
  height:3px; 
  margin:2px 0px 2px 0px; 
  padding:0px; 
  color: #333; 
  background-color: #333; 
  border:none;
}

h1.light {color: #FFF;}
h6.light {color: #CCC;}
hr.light {
  color: #F0F0F0; 
  background-color: #F0F0F0; 
}

nav {
  position: absolute;
  top: 0px;
  right: -10px;
  overflow: hidden;
}
nav a {
  min-height: 80px;
  min-width: 100px;
  margin: 0px;
  text-align: center;
  float: right;
  font-size: 18px;
  font-variant: small-caps;
  line-height: 80px;
  letter-spacing: 1px;
}
nav.light a {color: #FFF;}
nav.light a:hover {color: #6699FF;}

select {
  position: absolute;
  right: 0px;
  bottom: 20px;
}

.overlay, .navbar, .header_menu { display: none; }

@media screen and (max-width: 1000px) {
  nav, .logo { display: none; }

  .navbar {
    position: fixed;
    top: 0px;
    right: 0px;

    min-height: 1000px;
    width: auto;

    margin: 0px;
    padding: 20px 40px;
    overflow-x: hidden;
    background-color: #FFF;
    transition: 1.0s;
    z-index: 200;
  }
  .navbar a {
    min-height: 80px;
    min-width: 100px;
    margin: 0px;
    display: block;
    text-align: center;
    float: none;
    font-size: 18px;
    font-variant: small-caps;
    line-height: 80px;
    letter-spacing: 1px;
  }
  .close {
    font-size: 12px;
    color: #999;
  }
  .overlay {
    position: fixed;
    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;
    background-color: #666;
    opacity: 0.75;
    z-index: 110;
  }
  .header_menu {
    position: absolute;
    top: 18px;
    right: -10px;
    display: initial;
    background: transparent;
    border: none;
  }
  .header_menu img {
    width: 50px;
  }
  .show {
    display: initial;
  }

}




</pre></body></html>