@media only screen and (max-width: 800px) {
  ul#menu_desktop {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border-bottom: solid 1px #EBEBEB;
    border-top: solid 3px #2F5C86;
    position: relative;
    font-size: 0.9em;
  }

  ul#menu_desktop li {
    display: inline;

  }

  ul#menu_desktop li a {
    float: left;
    line-height: 40px;
    color: #4F5052;
    text-decoration: none;
    margin: 0;
    padding: 0 2%;
    background: #fff;
    font-weight: bold;
  }

  /* APPLIES THE ACTIVE STATE */
  ul#menu_desktop .current a, ul#menu_desktop li:hover > a  {
    color: #fff;
    text-decoration: none;
    background: #2F669E;
  }

  /* THE SUBMENU LIST HIDDEN BY DEFAULT */
  ul#menu_desktop  ul {
    display: none;
    margin: 0;
    padding: 0;
  }

  /* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
  ul#menu_desktop li:hover > ul {    
    display: block;
    width: 100%;
    height: 35px;
    position: absolute;
    margin: 40px 0 0 0;
    background: #2F669E; 
  }

  ul#menu_desktop li:hover > ul li a {
    float: left;
    line-height: 35px;
    color: #fff;
    text-decoration: none;
    margin: 0;
    padding: 0 17px 0 17px;
    background: #2F669E url(../images/ke.png) no-repeat right center;
    font-weight: 100;
  }
  ul#menu_desktop li:hover > ul li a:hover {
    color: #F8ECAE;
    text-decoration: none;
    text-shadow: none;
  }
}
