@charset "UTF-8";
/* CSS Document */

#menu{
    /* [disabled]max-width: 960px; */
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    padding-top: auto;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

#menu li{
    display: block;
    float: left;
    width: 33%;
    margin: 0;
    padding: 0;
    font-weight: bold;
  }
  
#menu li a{
  display: block;
  padding: 12px 0 10px;
  background: #fff;
  color: #444;
  text-align: center;
  text-decoration: none;
}
#menu li a:hover{
  background: #fff;
  color:#0fA4e6;
}
#toggle{ 
 display: none;
}
@media only screen and (max-width: 768px) {
    #menu li{
    width: 25%;
    border-bottom: 1px solid #444;
  }
}
@media only screen and (max-width: 480px) {
  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #222;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #444;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #222;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
}
