/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */
/**
 * Convert px to em
 * Stolen from https://github.com/stubbornella/oocss, modified with default value
 *
 * @param $px - the value in pixel you want to convert
 * @param $context - the context in pixel e.g. you want to set margin on your text,
 * and font size on your text is equivalent to 14px, then your context is 14.
 */
/**
 * Override moblle padding
 */
/*
 * Body
 */
/* line 16, ../sass/pages.scss */
body {
  margin: 0;
  padding: 0;
  background: #bababa url('../images/bg-ftc-building-large.jpg?1553619775') no-repeat top center;
}

/* line 22, ../sass/pages.scss */
#page {
  overflow: hidden;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */
/* line 31, ../sass/pages.scss */
#skip-link {
  margin: 0;
}
/* line 34, ../sass/pages.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 0.154em 0 0.231em 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Some utility classes
 */
/* line 49, ../sass/pages.scss */
.mobile-only {
  display: none;
}
@media (max-width: 47.9em) {
  /* line 49, ../sass/pages.scss */
  .mobile-only {
    display: block;
  }
}

/* line 56, ../sass/pages.scss */
.tablet-and-up {
  display: none;
}
@media (min-width: 48em) {
  /* line 56, ../sass/pages.scss */
  .tablet-and-up {
    display: block;
  }
}

/* line 63, ../sass/pages.scss */
.desktop-only {
  display: none;
}
@media (min-width: 60em) {
  /* line 63, ../sass/pages.scss */
  .desktop-only {
    display: block;
  }
}

/**
 * Top (holds alerts)
 */
/* line 73, ../sass/pages.scss */
.top-wrapper {
  background-color: #e5cd25;
}
/* line 47, ../sass/_custom.scss */
.top-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/* line 78, ../sass/pages.scss */
.top-alert-heading {
  width: 25%;
  float: left;
  color: #fff;
  font-size: 1.154em;
  padding: 1em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 47.9em) {
  /* line 78, ../sass/pages.scss */
  .top-alert-heading {
    width: 35%;
    font-size: 1em;
  }
}

/* line 93, ../sass/pages.scss */
.top-alert-link {
  float: left;
  padding: 1em;
  font-size: 1.154em;
  width: 75%;
  font-weight: bold;
}
@media (max-width: 47.9em) {
  /* line 93, ../sass/pages.scss */
  .top-alert-link {
    width: 65%;
    font-size: 1em;
  }
}
/* line 186, ../sass/_custom.scss */
.top-alert-link a {
  text-decoration: none;
}
/* line 188, ../sass/_custom.scss */
.top-alert-link a:hover, .top-alert-link a:focus {
  text-decoration: underline;
}
/* line 104, ../sass/pages.scss */
.top-alert-link a,
.top-alert-link a:visited,
.top-alert-link a:active {
  color: #000;
}

/* line 112, ../sass/pages.scss */
#block-views-top-alerts-block {
  margin: 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QzMjAwMCIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjZDMyMDAwIi8+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNlNWNkMjUiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2U1Y2QyNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #d32000), color-stop(25%, #d32000), color-stop(25%, #e5cd25), color-stop(75%, #e5cd25));
  background-image: -moz-linear-gradient(left, #d32000, #d32000 25%, #e5cd25 25%, #e5cd25 75%);
  background-image: -webkit-linear-gradient(left, #d32000, #d32000 25%, #e5cd25 25%, #e5cd25 75%);
  background-image: linear-gradient(to right, #d32000, #d32000 25%, #e5cd25 25%, #e5cd25 75%);
}
/* line 47, ../sass/_custom.scss */
#block-views-top-alerts-block:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 47.9em) {
  /* line 112, ../sass/pages.scss */
  #block-views-top-alerts-block {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QzMjAwMCIvPjxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjZDMyMDAwIi8+PHN0b3Agb2Zmc2V0PSIzNSUiIHN0b3AtY29sb3I9IiNlNWNkMjUiLz48c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2U1Y2QyNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #d32000), color-stop(35%, #d32000), color-stop(35%, #e5cd25), color-stop(65%, #e5cd25));
    background-image: -moz-linear-gradient(left, #d32000, #d32000 35%, #e5cd25 35%, #e5cd25 65%);
    background-image: -webkit-linear-gradient(left, #d32000, #d32000 35%, #e5cd25 35%, #e5cd25 65%);
    background-image: linear-gradient(to right, #d32000, #d32000 35%, #e5cd25 35%, #e5cd25 65%);
  }
}

/*
 * Header
 */
/* line 127, ../sass/pages.scss */
.header-wrapper {
  background-color: #36709d;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 47.9em) {
  /* line 127, ../sass/pages.scss */
  .header-wrapper {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: url('../images/bg-mobile-header.png?1553619775') no-repeat top center, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJjNTY4NyIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjklIiBzdG9wLWNvbG9yPSIjMmU1YzhkIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iMzMlIiBzdG9wLWNvbG9yPSIjMzk3NmE4IiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjM2I3YWFjIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNDglIiBzdG9wLWNvbG9yPSIjM2I3YWFkIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNjElIiBzdG9wLWNvbG9yPSIjMzg3NGE2IiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iODUlIiBzdG9wLWNvbG9yPSIjMmY1ZThmIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJiNTU4NiIgc3RvcC1vcGFjaXR5PSIwLjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-mobile-header.png?1553619775') no-repeat top center, -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, rgba(44, 86, 135, 0.5)), color-stop(9%, rgba(46, 92, 141, 0.5)), color-stop(33%, rgba(57, 118, 168, 0.5)), color-stop(40%, rgba(59, 122, 172, 0.5)), color-stop(48%, rgba(59, 122, 173, 0.5)), color-stop(61%, rgba(56, 116, 166, 0.5)), color-stop(85%, rgba(47, 94, 143, 0.5)), color-stop(100%, rgba(43, 85, 134, 0.5))), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-mobile-header.png?1553619775') no-repeat top center, -moz-linear-gradient(right, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-mobile-header.png?1553619775') no-repeat top center, -webkit-linear-gradient(right, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-mobile-header.png?1553619775') no-repeat top center, linear-gradient(to left, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
    background-size: cover;
  }
}
@media (min-width: 48em) {
  /* line 127, ../sass/pages.scss */
  .header-wrapper {
    background: url('../images/bg-header.jpg?1553619775') no-repeat top center, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJjNTY4NyIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjklIiBzdG9wLWNvbG9yPSIjMmU1YzhkIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iMzMlIiBzdG9wLWNvbG9yPSIjMzk3NmE4IiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjM2I3YWFjIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNDglIiBzdG9wLWNvbG9yPSIjM2I3YWFkIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iNjElIiBzdG9wLWNvbG9yPSIjMzg3NGE2IiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iODUlIiBzdG9wLWNvbG9yPSIjMmY1ZThmIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJiNTU4NiIgc3RvcC1vcGFjaXR5PSIwLjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-header.jpg?1553619775') no-repeat top center, -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, rgba(44, 86, 135, 0.5)), color-stop(9%, rgba(46, 92, 141, 0.5)), color-stop(33%, rgba(57, 118, 168, 0.5)), color-stop(40%, rgba(59, 122, 172, 0.5)), color-stop(48%, rgba(59, 122, 173, 0.5)), color-stop(61%, rgba(56, 116, 166, 0.5)), color-stop(85%, rgba(47, 94, 143, 0.5)), color-stop(100%, rgba(43, 85, 134, 0.5))), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-header.jpg?1553619775') no-repeat top center, -moz-linear-gradient(right, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-header.jpg?1553619775') no-repeat top center, -webkit-linear-gradient(right, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
    background: url('../images/bg-header.jpg?1553619775') no-repeat top center, linear-gradient(to left, rgba(44, 86, 135, 0.5) 0%, rgba(46, 92, 141, 0.5) 9%, rgba(57, 118, 168, 0.5) 33%, rgba(59, 122, 172, 0.5) 40%, rgba(59, 122, 173, 0.5) 48%, rgba(56, 116, 166, 0.5) 61%, rgba(47, 94, 143, 0.5) 85%, rgba(43, 85, 134, 0.5) 100%), url('../images/bg-header-tile.png?1553619775');
  }
}
/* line 171, ../sass/pages.scss */
.lt-ie9 .header-wrapper {
  background: #244873 url('../images/bg-header.jpg?1553619775') no-repeat top center;
}

/* line 177, ../sass/pages.scss */
#header {
  background: #244873;
  padding-top: 1rem;
}
@media (min-width: 48em) {
  /* line 177, ../sass/pages.scss */
  #header {
    background: none;
    height: 17.385em;
    padding-top: 0;
  }
}

@media (min-width: 48em) {
  /* line 188, ../sass/pages.scss */
  .region-header {
    text-align: right;
    margin-top: 5.231em;
    padding-right: 1.538em;
  }
}

/* line 196, ../sass/pages.scss */
.logo-bg {
  max-height: 172px;
  overflow: visible;
}
@media (max-width: 47.9em) {
  /* line 196, ../sass/pages.scss */
  .logo-bg {
    display: inline-block;
    width: auto;
    overflow: hidden;
    width: 75%;
  }
}
@media (min-width: 48em) and (max-width: 59.9375em) {
  /* line 207, ../sass/pages.scss */
  .logo-bg img {
    position: relative;
    top: 13px;
  }
}

/* line 214, ../sass/pages.scss */
#logo img {
  /* logo image */
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}
@media (max-width: 766px) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 48em) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    max-width: 112%;
    width: 112%;
    padding: 1px 3px;
  }
}
@media (min-width: 877px) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    width: 465px;
    max-width: 465px;
    padding: 3px 5px;
  }
}
@media (min-width: 60em) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    width: 465px;
    max-width: 465px;
    padding: 13px 5px;
  }
}
@media (min-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    max-width: 508px;
    width: 508px;
    padding: 14px 6px;
  }
}
@media (max-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 959px) and (min-resolution: 192dpi) {
  /* line 214, ../sass/pages.scss */
  #logo img {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 877px) {
  /* line 253, ../sass/pages.scss */
  .bulkorder #logo img {
    width: 465px;
    max-width: 465px;
    padding: 0;
  }
}
@media (min-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 253, ../sass/pages.scss */
  .bulkorder #logo img {
    max-width: 515px;
    width: 515px;
    padding: 0;
  }
}
@media (max-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 959px) and (min-resolution: 192dpi) {
  /* line 253, ../sass/pages.scss */
  .bulkorder #logo img {
    max-width: 124%;
    width: 124%;
    padding: 0;
  }
}
@media (max-width: 766px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 766px) and (min-resolution: 192dpi) {
  /* line 253, ../sass/pages.scss */
  .bulkorder #logo img {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 48em) and (max-width: 59.9375em) {
  /* line 280, ../sass/pages.scss */
  .bulkorder.i18n-es #logo img {
    top: 6px;
  }
}
@media (min-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 959px) and (min-resolution: 192dpi) {
  /* line 280, ../sass/pages.scss */
  .bulkorder.i18n-es #logo img {
    max-width: 515px;
    width: 515px;
    padding: 0;
  }
}
@media (max-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 959px) and (min-resolution: 192dpi) {
  /* line 280, ../sass/pages.scss */
  .bulkorder.i18n-es #logo img {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
/* line 299, ../sass/pages.scss */
#logo img img {
  vertical-align: bottom;
}

/* line 304, ../sass/pages.scss */
#logo {
  /* Wrapping link for logo */
  display: block;
  padding: 10px 8px;
  box-sizing: content-box;
}
@media (max-width: 766px) {
  /* line 304, ../sass/pages.scss */
  #logo {
    padding: 0;
  }
}
@media (max-width: 766px) {
  /* line 313, ../sass/pages.scss */
  .win #logo {
    padding: 13px;
  }
}
@media (max-width: 766px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 766px) and (min-resolution: 192dpi) {
  /* line 304, ../sass/pages.scss */
  #logo {
    padding: 0;
  }
}
@media (max-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 959px) and (min-resolution: 192dpi) {
  /* line 304, ../sass/pages.scss */
  #logo {
    padding: 0;
  }
}
@media (min-width: 60em) {
  /* line 304, ../sass/pages.scss */
  #logo {
    display: inline;
  }
  /* line 330, ../sass/pages.scss */
  #logo img {
    margin-right: 1em;
    margin-bottom: 1.538em;
    margin-left: 0;
    margin-top: 1.2em;
  }
}
@media (max-width: 47.9em) {
  /* line 304, ../sass/pages.scss */
  #logo {
    float: left;
    margin-top: 0;
    margin-right: 1em;
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media (min-width: 60em) {
  /* line 304, ../sass/pages.scss */
  #logo {
    margin-top: 1.2em;
    max-width: 33.077em;
  }
}
/* line 349, ../sass/pages.scss */
.bulkorder #logo {
  padding: 0;
  color: #fff;
}
/* line 353, ../sass/pages.scss */
.bulkorder #logo img {
  margin-right: 0;
  margin-bottom: 0;
}
@media (max-width: 959px) {
  /* line 349, ../sass/pages.scss */
  .bulkorder #logo {
    padding: 10px 8px;
  }
}
@media (max-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 959px) and (min-resolution: 192dpi) {
  /* line 349, ../sass/pages.scss */
  .bulkorder #logo {
    padding: 10px 8px;
  }
}
@media (min-width: 959px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 959px) and (min-resolution: 192dpi) {
  /* line 349, ../sass/pages.scss */
  .bulkorder #logo {
    padding: 0;
  }
}
@media (min-width: 48em) and (max-width: 59.9375em) {
  /* line 371, ../sass/pages.scss */
  .bulkorder.i18n-es #logo {
    padding: 0;
  }
}

/* line 378, ../sass/pages.scss */
#name-and-slogan {
  /* Wrapper for website name and slogan */
  float: left;
}

/* line 382, ../sass/pages.scss */
.breadcrumb {
  /* The path to the current page in the form of a list of links */
}
@media (min-width: 48em) {
  /* line 382, ../sass/pages.scss */
  .breadcrumb {
    font-size: 0.923em;
    margin: 0 2.308em 1.846em;
    line-height: 1.1;
  }
}
/* line 389, ../sass/pages.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 393, ../sass/pages.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 400, ../sass/pages.scss */
body.page-taxonomy .breadcrumb {
  display: none;
}

/* line 406, ../sass/pages.scss */
div.messages {
  /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */
  margin: 1.5em 0;
  /* Drupal core uses "6px 0" margin */
}
/* line 409, ../sass/pages.scss */
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 415, ../sass/pages.scss */
.tabs {
  /* See also the tabs.css file. */
  font-size: 0.923em;
}

/* line 419, ../sass/pages.scss */
ul.inline {
  /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
/* line 423, ../sass/pages.scss */
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* line 429, ../sass/pages.scss */
span.field-label {
  /* The inline field label used by the Fences module */
  padding: 0 1em 0 0;
  /* LTR */
}

/* line 433, ../sass/pages.scss */
.item-list .pager {
  /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
/* line 436, ../sass/pages.scss */
.item-list .pager li {
  /* Each page number in the pager list */
  padding: 0 0.615em;
}

/**
 * Page layout
 */
@media (min-width: 48em) {
  /* line 444, ../sass/pages.scss */
  #navigation {
    margin-top: -6.923em;
    margin-bottom: 0.769em;
    width: 100%;
    z-index: 100;
  }
}

/* line 453, ../sass/pages.scss */
.main {
  background-color: #fff;
  margin-top: 22%;
}
@media (min-width: 48em) {
  /* line 453, ../sass/pages.scss */
  .main {
    padding-top: 2.308em;
    margin-top: inherit;
  }
}
@media (min-width: 60em) {
  /* line 453, ../sass/pages.scss */
  .main {
    min-height: 450px;
    margin-top: inherit;
  }
}

@media (min-width: 48em), (min-width: 60em) {
  /* line 466, ../sass/pages.scss */
  #main {
    padding-bottom: 3.077em;
    position: relative;
    top: -3em;
  }
}

@media (min-width: 48em) {
  /* line 477, ../sass/pages.scss */
  .no-sidebars #content {
    padding: 0 2.308em;
  }
}
@media (min-width: 48em) {
  /* line 482, ../sass/pages.scss */
  .two-sidebars #content, .one-sidebar.sidebar-first #content, .one-sidebar.sidebar-second #content {
    padding-right: 2.308em;
    padding-left: 1.538em;
  }
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
@media (max-width: 47.9em) {
  /* line 501, ../sass/pages.scss */
  .region-sidebar-second .block.has-title {
    margin: 1.538em 0;
  }
  /* line 503, ../sass/pages.scss */
  .front .region-sidebar-second .block.has-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 48em) {
  /* line 512, ../sass/pages.scss */
  .one-sidebar .region-sidebar-second .block, .two-sidebars .region-sidebar-second .block {
    margin-right: 1.538em;
  }
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
@media (min-width: 48em) {
  /* line 528, ../sass/pages.scss */
  .one-sidebar .region-sidebar-first .block {
    margin-left: 1.538em;
  }
}
@media (min-width: 48em) {
  /* line 534, ../sass/pages.scss */
  .region-sidebar-first .exposed-filters-sidebar-block-INT {
    margin-left: 0;
    margin-right: 0em;
    background: #f7f7f7;
    border: 1px solid #ddd;
    padding: 14px;
  }
}
/* line 543, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-field-release-date-value-max-date,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-field-release-date-value-min-date,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-date-filter-min-date,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-date-filter-max-date {
  position: relative;
}
/* line 548, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-field-release-date-value-max-date .description,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-field-release-date-value-min-date .description,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-date-filter-min-date .description,
.region-sidebar-first .exposed-filters-sidebar-block-INT .form-item-date-filter-max-date .description {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 2px;
  pointer-events: none;
  font-size: 13px;
  color: #7c7c7c;
  padding-left: 16px;
  background: url(../images/icon_calendar.png) 0 0 no-repeat;
}
/* line 560, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-field-release-date-value-max-wrapper,
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-field-release-date-value-min-wrapper,
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-date-filter-min-wrapper,
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-date-filter-max-wrapper {
  margin-top: 0.75em;
}
/* line 566, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-field-release-date-value-min-wrapper,
.region-sidebar-first .exposed-filters-sidebar-block-INT #edit-date-filter-min {
  padding-bottom: 7px;
}
/* line 571, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT .views-exposed-form .container-inline-date .date-padding {
  float: none;
}
/* line 574, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT .views-exposed-form .container-inline-date .form-item,
.region-sidebar-first .exposed-filters-sidebar-block-INT .views-exposed-form .container-inline-date .form-item input {
  width: 100%;
}
/* line 579, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT input.form-submit {
  border: none;
  background: #336699;
  color: #FFF;
  padding: 5px 33px 5px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  padding: 13px;
  padding-bottom: 8px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 8px;
  text-transform: uppercase;
}
/* line 593, ../sass/pages.scss */
.no-touch .region-sidebar-first .exposed-filters-sidebar-block-INT input.form-submit:hover {
  background: #244873;
}
@media (max-width: 47.9em) {
  /* line 579, ../sass/pages.scss */
  .region-sidebar-first .exposed-filters-sidebar-block-INT input.form-submit {
    margin-left: 0;
  }
}
/* line 600, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT input.form-submit#edit-reset {
  margin-top: 0;
}
/* line 604, ../sass/pages.scss */
.region-sidebar-first .exposed-filters-sidebar-block-INT .views-reset-button input.form-submit {
  background: #767676;
}
/* line 607, ../sass/pages.scss */
.no-touch .region-sidebar-first .exposed-filters-sidebar-block-INT .views-reset-button input.form-submit:hover {
  background: #696969;
}
/* line 614, ../sass/pages.scss */
.one-sidebar .region-sidebar-first .advanced-search-link {
  margin-top: 1.5em;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  /* line 620, ../sass/pages.scss */
  .two-sidebars .region-sidebar-first .block {
    margin-left: 1.538em;
  }
}

/* line 628, ../sass/pages.scss */
span.customSelect {
  font-size: 13px;
  background-color: #fff;
  color: #7c7c7c;
  padding: 3px 7px 4px;
  border: 1px solid #b1b1b1;
}

/* line 636, ../sass/pages.scss */
span.customSelect.changed {
  background-color: #fff;
}

/* line 640, ../sass/pages.scss */
.customSelectInner {
  background: url(../js/jquery.customSelect-master/customSelect-arrow.gif) no-repeat center right;
}

/**
 * Mobile padding
 */
@media (max-width: 47.9em) {
  /* line 647, ../sass/pages.scss */
  .breadcrumb {
    display: none;
  }
}

@media (max-width: 47.9em) {
  /* line 652, ../sass/pages.scss */
  .region-precontent .col-left,
  .region-precontent .col-right,
  .content-wrapper,
  .sidebars {
    padding: 1.538em;
    padding-top: 0;
  }
}

/**
 * Postscript
 */
/* line 665, ../sass/pages.scss */
.postscript-wrapper {
  margin: 1em 1.538em;
}

/*
 * Footer
 */
/* line 672, ../sass/pages.scss */
.footer-wrapper {
  background-color: #4d5155;
  background: #4d5155 url("../images/bg-footer.png") repeat;
  padding-bottom: 2.308em;
}
@media (min-width: 48em), (min-width: 60em) {
  /* line 672, ../sass/pages.scss */
  .footer-wrapper {
    padding-top: 3.077em;
  }
}

/* line 682, ../sass/pages.scss */
#footer {
  padding: 1.231em 1.231em 2.308em 1.538em;
  position: relative;
  color: #fff;
}
/* line 686, ../sass/pages.scss */
#footer a {
  color: #fff;
}
@media (min-width: 48em), (min-width: 60em) {
  /* line 691, ../sass/pages.scss */
  #footer:before {
    content: " ";
    background: url("../images/bg-ftc-acro.png") 0 0 no-repeat;
    width: 37.154em;
    height: 15.692em;
    display: block;
    position: absolute;
    top: 0;
    left: -11.7em;
    z-index: 0;
  }
}
@media (min-width: 48em) {
  /* line 682, ../sass/pages.scss */
  #footer {
    padding: 1.8em 0 0 1.538em;
  }
}

/* line 709, ../sass/pages.scss */
.region-footer-first {
  position: relative;
  z-index: 1;
}
@media (min-width: 60em) {
  /* line 709, ../sass/pages.scss */
  .region-footer-first {
    border-right: 1px solid #888a8d;
  }
}

@media (min-width: 48em) {
  /* line 720, ../sass/pages.scss */
  .region-footer-second .block,
  .stay-connected-subscriptions .block {
    margin-left: 1.231em;
  }
}
/* line 724, ../sass/pages.scss */
.region-footer-second ul,
.stay-connected-subscriptions ul {
  padding: 0;
}
/* line 727, ../sass/pages.scss */
.region-footer-second li,
.stay-connected-subscriptions li {
  display: inline-block;
  margin-right: 12px;
  padding-left: 0;
  list-style: none;
}
/* line 733, ../sass/pages.scss */
.region-footer-second li.facebook a,
.region-footer-second li.twitter a,
.region-footer-second li.youtube a,
.region-footer-second li.rss a,
.region-footer-second li.linkedin a,
.stay-connected-subscriptions li.facebook a,
.stay-connected-subscriptions li.twitter a,
.stay-connected-subscriptions li.youtube a,
.stay-connected-subscriptions li.rss a,
.stay-connected-subscriptions li.linkedin a {
  display: block;
  text-indent: -8765em;
  overflow: hidden;
  width: 30px;
  height: 30px;
  background-image: url('../images/sprites_social.png?1553619775');
  background-position: left top;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 3 / 2), (min--moz-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi) {
  /* line 733, ../sass/pages.scss */
  .region-footer-second li.facebook a,
  .region-footer-second li.twitter a,
  .region-footer-second li.youtube a,
  .region-footer-second li.rss a,
  .region-footer-second li.linkedin a,
  .stay-connected-subscriptions li.facebook a,
  .stay-connected-subscriptions li.twitter a,
  .stay-connected-subscriptions li.youtube a,
  .stay-connected-subscriptions li.rss a,
  .stay-connected-subscriptions li.linkedin a {
    background-image: url('../images/icons-2x/sprites_social-2x.png?1553619775');
    background-size: 30px 330px;
  }
}
/* line 746, ../sass/pages.scss */
.region-footer-second li.twitter a,
.stay-connected-subscriptions li.twitter a {
  background-image: url('../images/sprites_social.png?1553619775');
  background-position: left -100px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 3 / 2), (min--moz-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi) {
  /* line 746, ../sass/pages.scss */
  .region-footer-second li.twitter a,
  .stay-connected-subscriptions li.twitter a {
    background-image: url('../images/icons-2x/sprites_social-2x.png?1553619775');
    background-size: 30px 330px;
  }
}
/* line 751, ../sass/pages.scss */
.region-footer-second li.youtube a,
.stay-connected-subscriptions li.youtube a {
  background-image: url('../images/sprites_social.png?1553619775');
  background-position: left -200px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 3 / 2), (min--moz-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi) {
  /* line 751, ../sass/pages.scss */
  .region-footer-second li.youtube a,
  .stay-connected-subscriptions li.youtube a {
    background-image: url('../images/icons-2x/sprites_social-2x.png?1553619775');
    background-size: 30px 330px;
  }
}
/* line 755, ../sass/pages.scss */
.region-footer-second li.rss a,
.stay-connected-subscriptions li.rss a {
  background-image: url('../images/sprites_social.png?1553619775');
  background-position: left -300px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 3 / 2), (min--moz-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi) {
  /* line 755, ../sass/pages.scss */
  .region-footer-second li.rss a,
  .stay-connected-subscriptions li.rss a {
    background-image: url('../images/icons-2x/sprites_social-2x.png?1553619775');
    background-size: 30px 330px;
  }
}
/* line 759, ../sass/pages.scss */
.region-footer-second li.linkedin a,
.stay-connected-subscriptions li.linkedin a {
  background-image: url('../images/social-linkedin.png?1553619775');
  background-position: left -300px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 3 / 2), (min--moz-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi) {
  /* line 759, ../sass/pages.scss */
  .region-footer-second li.linkedin a,
  .stay-connected-subscriptions li.linkedin a {
    background-image: url('../images/icons-2x/social-linkedin-2x.png?1553619775');
    background-size: 30px 30px;
  }
}
/* line 763, ../sass/pages.scss */
.region-footer-second .stay-connected-footer-block p,
.stay-connected-subscriptions .stay-connected-footer-block p {
  margin-bottom: 2em;
}
/* line 765, ../sass/pages.scss */
.region-footer-second .stay-connected-footer-block p a,
.stay-connected-subscriptions .stay-connected-footer-block p a {
  background: #2d5c8c;
  padding: 11px 16px;
}

@media (min-width: 48em) {
  /* line 772, ../sass/pages.scss */
  .view-homepage-videos p {
    margin: 0 0 0 0;
  }
}

/* line 780, ../sass/pages.scss */
span.off-screen {
  text-indent: -9999px;
  position: absolute;
}

/* line 786, ../sass/pages.scss */
.region-precontent .col-right {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  /* line 789, ../sass/pages.scss */
  .region-precontent .col-left {
    padding-left: 2.308em;
    padding-right: 1.538em;
    padding-bottom: 0;
  }
}

/* line 796, ../sass/pages.scss */
.block-vw-eligibility-alert {
  clear: both;
  min-height: 50px;
  position: relative;
  padding-left: 80px;
  padding-right: 20px;
  border: 2px solid #dbdbdb;
  border-bottom: 5px solid #5f5f5f;
  margin-left: 2.308em;
  margin-right: 0;
  background: url(../images-for-content/vwAlert.png) bottom left no-repeat;
}
/* line 807, ../sass/pages.scss */
.block-vw-eligibility-alert p {
  margin: 0;
  padding-top: 13px;
  color: #c8520e;
  font-size: 1.235em;
}
/* line 812, ../sass/pages.scss */
.block-vw-eligibility-alert p strong {
  text-transform: uppercase;
}
/* line 815, ../sass/pages.scss */
.block-vw-eligibility-alert p a {
  color: #36709d;
  text-transform: none;
  opacity: 1;
}

@media (max-width: 47.9em) {
  /* line 823, ../sass/pages.scss */
  .block-vw-eligibility-alert {
    margin: 1.538em;
    margin-top: 0;
  }
  /* line 826, ../sass/pages.scss */
  .block-vw-eligibility-alert p strong {
    display: block;
  }

  /* line 830, ../sass/pages.scss */
  .region-precontent {
    padding-top: 2em;
  }
  /* line 832, ../sass/pages.scss */
  .region-precontent .col-right {
    padding-bottom: 0;
  }
}
