#skipToMain{
    display: none;
}

.navbar-default {
    background-image: -webkit-linear-gradient(top, #fff 0, #fff 100%);
    background-image: -o-linear-gradient(top, #fff 0, #fff 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#fff));
    background-image: linear-gradient(to bottom, #fff 0, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
    border-radius: 0;
}

.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.active>a {
    background-image: -webkit-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -o-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f2f2f2), to(#fafafa));
    background-image: linear-gradient(to bottom, #f2f2f2 0, #fafafa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#fffafafa', GradientType=0);
}

.navbar-inverse {
    border-radius: 0;
}

@media(max-width: 767px){
    #navbar-main, #navbar-lang{
          position: absolute;
          top: 0;
          left: -999px;
          height: 1px;
          width: 1px;
          clip: rect(1px, 1px, 1px, 1px);
          white-space: nowrap;
          display: none !important;
      }
  
      #navbar-main.expanded, #navbar-lang.expanded{
          position: fixed;
          width: 100%;
          height: 100%;
          z-index: 1;
          top: 0;
          left: 0;
          bottom: 0;
          background-color: #FFFFFF;
          overflow-x: hidden;
          clip: auto;
          white-space: normal;
          display: block !important;
      }
  }