/* Skip link */
a.skiplink {
  padding: 6px;
  font-weight: normal;
  position: absolute;
  top: -40px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: transparent;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 100;
}
a.skiplink:focus {
  position:absolute;
  font-weight: normal;
  left:0px;
  top:0px;
  background:#333333;
  outline:0;
  -webkit-transition: top .1s ease-in, background .5s linear;
  transition: top .1s ease-in, background .5s linear;
}

/* UO Libraries logo bar */
#uo-topbar {
  background-color: #124734;
  position: relative;
  height: 52px;
}
#uolib-logo {
  display: inline-block;
  height: 40px;
  position: relative;
  top: 7px;
}
#uolib-logo img {
  height: 36px;
}

/* Header for actual site */
#main-header {
  height: 108px;
  border-bottom: 1px solid black;
}
#main-header a, #main-header a:focus, #main-header a:hover {
  color: #006600;
  font-weight: normal;
  text-align: center;
  text-shadow: 0px 0px 16px #fff, 0px 0px 8px #fff;
  text-decoration: none;
}

@media only screen and (min-width: 1201px) {
  #main-header a h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1200px) {
  #main-header {
    height: 80px;
  }
  #main-header a h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 950px) {
  #main-header {
    height: 64px;
  }
  #main-header a h1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 401px) and (max-width: 600px) {
  #main-header {
    height: 64px;
  }
  #main-header a h1 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 400px) {
  #main-header {
    height: 50px;
  }
  #main-header a h1 {
    font-size: 18px;
  }
  #uolib-logo img {
    height: 30px;
    padding-top: 5px;
  }
}

/* Hamburger menu since it can't live in the nav like bootstrap prefers */
.navburger .icon-bar {
  border-top: 3px solid yellow;
}
@media only screen and (min-width: 769px) {
  .navburger {
    display: none;
  }
}

/* Give a little space after newspaper nav */
#newspaper_nav {
  margin-bottom: 16px;
}
