/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal7-reference.css.)
 */
/**
 * 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.
 */
/**
 * Primary tabs
 */
/* line 22, ../sass/tabs.scss */
ul.primary li {
  border-bottom: 0;
  margin: 0 3px 0 0;
}
/* line 26, ../sass/tabs.scss */
ul.primary li.active {
  border-bottom: 1px solid #000;
  margin-bottom: -1px;
  /* Overlap the ul's border. */
}
/* line 29, ../sass/tabs.scss */
ul.primary li.active a {
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  border-top: solid 1px #000;
}
/* line 36, ../sass/tabs.scss */
ul.primary a:link,
ul.primary a:visited {
  color: #333333;
  background: #f2f2f2;
  letter-spacing: 1px;
  padding: 5px 10px 5px 10px;
  text-align: center;
}
/* line 44, ../sass/tabs.scss */
ul.primary a:hover {
  background: #505050;
  color: #fff;
  text-decoration: underline;
}
/* line 51, ../sass/tabs.scss */
ul.primary a.active {
  color: #fff;
  background: #000;
}

/**
 * Secondary tabs
 */
/* line 61, ../sass/tabs.scss */
ul.secondary {
  font-size: .9em;
  margin-top: -1.5em;
  /* Collapse bottom margin of ul.primary. */
  padding-bottom: .5em;
  border-bottom: none;
}
/* line 67, ../sass/tabs.scss */
ul.secondary a:link,
ul.secondary a:visited {
  color: #333333;
  background: #f2f2f2;
  padding: 5px;
}
/* line 74, ../sass/tabs.scss */
ul.secondary a:hover,
ul.secondary a:focus {
  background: #505050;
  color: #fff;
  text-decoration: underline;
}
/* line 80, ../sass/tabs.scss */
ul.secondary a.active,
ul.secondary a:active {
  border-bottom: 1px solid #000;
  margin-bottom: -1px;
  /* Overlap the ul's border. */
  background: #000;
  color: #fff;
  padding: 5px;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  border-top: solid 1px #000;
}

/**
 * Basic positioning styles shared by primary and secondary tabs.
 */
/* line 97, ../sass/tabs.scss */
ul.primary,
ul.secondary {
  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;
  border-bottom: 1px solid #bbb;
  list-style: none;
  margin: 1em 0 1.5em;
  padding-bottom: 0;
  white-space: nowrap;
}
/* line 106, ../sass/tabs.scss */
ul.primary li,
ul.secondary li {
  float: left;
  margin: 0.5em 3px 0;
}
/* line 110, ../sass/tabs.scss */
ul.primary a,
ul.secondary a {
  border: 1px solid #e9e9e9;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}
