/* Menu toggle is using the media queries from the standard, tablet and smalltouch layout settings */
@media only screen and (max-width:320px) {

  .at-mt .at-menu-toggle-button {
    position: static;
    top: 0;
  }
  .at-mt .menu-toggle {
    display: none;
  }
  .at-mt .menu-toggle ul li,
  .at-mt .menu-toggle ul li a {
    display: block;
    float:none;
  }
}
@media only screen and (min-width:321px) and (max-width:580px) {

  .at-mt .at-menu-toggle-button {
    position: static;
    top: 0;
  }
  .at-mt .menu-toggle {
    display: none;
  }
  .at-mt .menu-toggle ul li,
  .at-mt .menu-toggle ul li a {
    display: block;
    float:none;
  }
}
@media only screen and (min-width:581px) and (max-width:768px) {

  .at-mt .at-menu-toggle-button {
    position: static;
    top: 0;
  }
  .at-mt .menu-toggle {
    display: none;
  }
  .at-mt .menu-toggle ul li,
  .at-mt .menu-toggle ul li a {
    display: block;
    float:none;
  }
}
@media only screen and (min-width:769px) and (max-width:1024px) {

  .at-mt .at-menu-toggle-button {
    position: absolute;
    top: -99999em;
  }
  .at-mt .menu-toggle {
    display:block !important;
  }
}
@media only screen and (min-width:980px) {

  .at-mt .at-menu-toggle-button {
    position: absolute;
    top: -99999em;
  }
  .at-mt .menu-toggle {
    display:block !important;
  }
}
.at-mt .at-menu-toggle div.contextual-links-wrapper ul.contextual-links{display:none}