.nav {
  background-color: #fff;
  width: 100%;
  z-index: 200; }
  .nav_logo { display: none; }
  .nav_bar {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    padding: 40px 10px 0px 0px;
    text-align: center; }
  .nav a { text-decoration: none; }
    .nav a:visited {}
    .nav a:hover { text-decoration: underline; }
  .nav li {
    display: inline;
    font-size: 110%;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 3px;
    margin-right: 3px;
  }
  .nav_selected {
    border-radius: 4px;
    padding: 5px 7px 5px 7px;
    background-color: #f1f1f8;
  }
  .nav_noselect {
    padding: 5px 7px 5px 7px;
  }

/*

    Läsplatta
    --------------------

*/
@media screen and (min-width: 768px) {

  .nav {
    background: url('/images/logo_bg.jpg') top center no-repeat;
    /* position: fixed; */ }
    .nav_logo_mobile { display: none; }
    .nav_logo {
      display: block;
      background: url('/images/logo.jpg') top left no-repeat;
      position: relative;
      height: 260px;
      width: 100%;
    }
    .nav_bar {
      padding: 30px 10px 10px 0px;
      text-align: center;
    }
    .nav li {
      margin-left: 10px;
      margin-right: 10px;
    }

}


/*

    Desktop
    --------------------

*/
@media screen and (min-width: 990px) {

  .nav_logo {
    background: url('/images/logo_desktop.jpg') top left no-repeat;
    width: 990px;
    margin-left: auto;
    margin-right: auto; }
  .nav_bar {
    padding: 30px 0px 15px 0px;
    text-align: right;
  }
  .nav li {
    margin-left: 0px;
    margin-right: 15px;
  }

}

/*

    TV
    --------------------

*/
@media screen and (min-width: 1200px) {

  .nav_logo {
    background: url('/images/logo.jpg') top left no-repeat;
    width: 1200px; }

}