/**
 * @file
 * Secondary Menu styling and layout.
 *
 * This is the very top menu with login etc.
 */
/**
 * Legacy IE support.
 */
/**
 * Font faces, stacks and sizes.
 */
/**
 * Colors, etc.
 */
/**
 * Partials to be shared with all .scss files.
 */
/**
 * Layout element mixins.
 */
/* The white box with grey border that surrounds most content. */
/* The grey box that surrounds content. */
/* The white box containing the main content. Has a green top border. */
/* Content inset into the white box */
/* Content inset on grey background */
/* Content on a lightgrey background with darker border ie left nav and right column of a normal page */
/* Button-like styling for inset box that sits at normal white box level. */
/* Button with a plus icon to the left. */
/* standard button across site. */
/**
 * Text element mixins.
 */
/**
 * Styles.
 */
/* line 13, ../sass/secondary-menu.scss */
#secondary-menu-wrapper {
  *position: relative;
  *zoom: 1;
  height: 33px;
}
/* line 51, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#secondary-menu-wrapper:before, #secondary-menu-wrapper:after {
  content: "";
  display: table;
}
/* line 56, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#secondary-menu-wrapper:after {
  clear: both;
}

/* line 18, ../sass/secondary-menu.scss */
#secondary-menu {
  text-align: right;
  padding-top: 8px;
  padding-right: 0;
  margin: auto;
  margin: auto;
  color: #fff;
}
/* line 25, ../sass/secondary-menu.scss */
#secondary-menu a {
  color: #fff;
  font-size: 0.9em;
  padding: 5px;
}
/* line 29, ../sass/secondary-menu.scss */
#secondary-menu a:hover {
  text-decoration: underline;
}
/* line 33, ../sass/secondary-menu.scss */
#secondary-menu #user-control-link.collapsed {
  background: #005e49;
  color: #FFF;
}
/* line 38, ../sass/secondary-menu.scss */
#secondary-menu #user-control-link:after {
  content: url("../images/arrow-down-icon.png");
  padding-left: 3px;
}
/* line 43, ../sass/secondary-menu.scss */
#secondary-menu #user-control-link.collapsed:after {
  content: url("../images/arrow-up-icon.png");
  padding-left: 3px;
}
/* line 49, ../sass/secondary-menu.scss */
#secondary-menu #user-control-link.login:after {
  content: none;
}

/**
 * Layout.
 */
/* line 57, ../sass/secondary-menu.scss */
#secondary_menu {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 16px;
  padding-right: 16px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  *behavior: url("../sass-extensions/box-sizing-polyfill/boxsizing.htc");
  clear: left;
}

/**
 * Media Queries.
 */
/* phones */
@media all and (max-width: 768px) {
  /* line 68, ../sass/secondary-menu.scss */
  #secondary-menu {
    padding-left: 10px;
  }
}
