#menu-box {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#027d2b+0,01561b+100 */
background: #027d2b; /* Old browsers */
background: -moz-linear-gradient(top, #027d2b 0%, #01561b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #027d2b 0%,#01561b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #027d2b 0%,#01561b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#027d2b', endColorstr='#01561b',GradientType=0 ); /* IE6-9 */
}
#menu{
	z-index:5000;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}
#menu li{
	font-weight:bold;
  display: block;
  float: left;
  width:14.28% ;/*8=12.5%*/
  margin: 0;
  padding: 0; }
  
#menu li a{
  display: block;
  padding: 10px 0 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#027d2b+0,01561b+100 */
background: #027d2b; /* Old browsers */
background: -moz-linear-gradient(top, #027d2b 0%, #01561b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #027d2b 0%,#01561b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #027d2b 0%,#01561b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#027d2b', endColorstr='#01561b',GradientType=0 ); /* IE6-9 */
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-right:solid 1px #ccc;
 
}


#menu li a:hover{
  background: #fff;
  color:#027D2B;
}
#toggle{ 
 display: none;
}
@media only screen and (max-width: 990px ) {/*768px*/
#menu {
	border-top: 1px solid #ccc;
}
    #menu li{
    width: 25%;
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (max-width: 480px) {
  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #027D2B;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #027D2B;
    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: #027D2B;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
}