body:before {
  content: "xs";
  display: none;
}
@media (min-width: 560px) {
  body:before {
    content: "sm";
  }
}
@media (min-width: 768px) {
  body:before {
    content: "md";
  }
}
@media (min-width: 992px) {
  body:before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body:before {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  body:before {
    content: "xxl";
  }
}
/* ============================================================
   Animations
============================================================ */

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */

}
/**
 * Remove default margin.
 */

body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */

}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: yellow;
  color: black;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */

}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
/* 1 */ input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */

}
/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */

}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */

}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*
 * Legal Disclaimer
 *
 * These Fonts are licensed only for use on these domains and their subdomains:
 * essentra.com
 *
 * It is illegal to download or use them on other websites.
 *
 * While the @font-face statements below may be modified by the client, this
 * disclaimer may not be removed.
 *
 * Lineto.com, 2015
 */

@font-face {
  font-family: "Brown-Pro-Regular";
  src: url("../fonts/lineto-brown-pro-regular.eot");
  src: url("../fonts/lineto-brown-pro-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-brown-pro-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Brown-Pro-Bold";
  src: url("../fonts/lineto-brown-pro-bold.eot");
  src: url("../fonts/lineto-brown-pro-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-brown-pro-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Brown-Pro-Light";
  src: url("../fonts/lineto-brown-pro-light.eot");
  src: url("../fonts/lineto-brown-pro-light.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-brown-pro-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Brown-Pro-Thin";
  src: url("../fonts/lineto-brown-pro-thin.eot");
  src: url("../fonts/lineto-brown-pro-thin.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-brown-pro-thin.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ============================================================
   Typography
============================================================ */

html {
  font-size: 16px;
}
body {
  background-color: #ededed;
  color: #4b4b4b;
  font-family: "Brown-Pro-Light", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1 {
  color: #c10a27;
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  padding: 0px 0px 30px 0px;
  padding: 0rem 0rem 1.875rem 0rem;
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}
h1 strong {
  color: #9b0056;
}
h2 {
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 15px 0px 10px 0px;
  padding: 0.9375rem 0rem 0.625rem 0rem;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
}
h2 a:link,
h2 a:visited {
  color: #c10a27;
  text-decoration: none;
}
h2 a:hover,
h2 a:focus,
h2 a:active {
  color: #c10a27;
  text-decoration: underline;
}
h2 strong {
  color: #9b0056;
}
.centeredblock h2,
h2.displaytitle {
  color: #c10a27;
  line-height: 1;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .centeredblock h2,
  h2.displaytitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .centeredblock h2,
  h2.displaytitle {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
h3 {
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 0px 0px 10px 0px;
  padding: 0rem 0rem 0.625rem 0rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
}
ul + h3 {
  padding-top: 25px;
  padding-top: 1.5625rem;
}
h4 {
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
h2.hotspottitle,
h3.hotspottitle,
h2.hotspotsubtitle,
h3.hotspotsubtitle {
  color: #c10a27;
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
h2.hotspotsubtitle,
h3.hotspotsubtitle {
  font-size: 24px;
  font-size: 1.5rem;
}
p {
  margin: 0;
  padding: 0px 0px 15px 0px;
  padding: 0rem 0rem 0.9375rem 0rem;
}
.intro {
  font-family: "Brown-Pro-Light", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .intro {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}
strong,
b {
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
}
blockquote {
  margin: 0;
  position: relative;
  padding: 25px 50px 15px 60px;
  padding: 1.5625rem 3.125rem 0.9375rem 3.75rem;
}
blockquote p:first-child {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 33px;
  line-height: 2.0625rem;
  padding: 0px 0px 25px 0px;
  padding: 0rem 0rem 1.5625rem 0rem;
}
blockquote:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -151px -209px;
  content: '';
  display: block;
  height: 36px;
  margin-right: 8px;
  width: 49px;
  position: absolute;
  top: 25px;
  left: 0;
}
.thumbtextwrapper blockquote {
  padding-right: 0;
  padding-top: 0;
}
.thumbtextwrapper blockquote:before {
  top: 0;
}
.pagecontent h1,
.pagecontent h2,
.pagecontent h3,
.pagecontent h4,
.pagecontent p,
.pagecontent ul,
.pagecontent ol,
.pagecontent dl {
  max-width: 660px;
}
a,
a:visited {
  background: transparent;
  color: #4b4b4b;
  text-decoration: underline;
}
a:hover,
a:focus {
  text-decoration: none;
}
main a,
main a:visited {
  color: #c10a27;
}
/* link with red arrow */

a.arrow {
  background: transparent;
  color: #4b4b4b;
  display: inline-block;
  position: relative;
  padding-left: 18px;
  /* font size */

  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
a.arrow:visited {
  color: #4b4b4b;
}
a.arrow:link,
a.arrow:visited {
  font-family: "Brown-Pro-Regular", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
a.arrow:link em,
a.arrow:visited em {
  font-family: "Brown-Pro-Light", sans-serif;
}
a.arrow:hover,
a.arrow:focus,
a.arrow:active {
  text-decoration: underline;
}
a.arrow:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -119px -68px;
  content: '';
  height: 15px;
  width: 18px;
  position: absolute;
  top: 3px;
  left: 0;
}
a.arrow-lcase:link,
a.arrow-lcase:visited {
  text-transform: none;
}
a.download {
  background: transparent;
  color: #4b4b4b;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  /* font size */

  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
a.download:visited {
  background: transparent;
  color: #4b4b4b;
}
a.download:link,
a.download:visited {
  font-family: "Brown-Pro-Regular", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
a.download:link em,
a.download:visited em {
  font-family: "Brown-Pro-Light", sans-serif;
  font-style: normal;
}
a.download:hover,
a.download:focus,
a.download:active {
  text-decoration: underline;
}
a.download:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -165px -115px;
  content: '';
  height: 21px;
  width: 21px;
  position: absolute;
  top: 1px;
  left: 0;
}
a.download-lcase:link,
a.download-lcase:visited {
  text-transform: none;
}
a.external {
  background: transparent;
  color: #4b4b4b;
  display: inline-block;
  position: relative;
  padding-left: 18px;
  /* font size */

  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
a.external:visited {
  background: transparent;
  color: #4b4b4b;
}
a.external:link,
a.external:visited {
  font-family: "Brown-Pro-Regular", sans-serif;
  text-decoration: none;
}
a.external:link em,
a.external:visited em {
  font-family: "Brown-Pro-Light", sans-serif;
}
a.external:hover,
a.external:focus,
a.external:active {
  text-decoration: underline;
}
a.external:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -219px -62px;
  content: '';
  display: block;
  height: 25px;
  width: 13px;
  position: absolute;
  top: 0;
  left: 0;
}
.featurelinks {
  /*
        
    */
  line-height: 1;
  list-style-type: none;
  padding: 0;
  margin: 15px 0px 30px 0px;
  margin: 0.9375rem 0rem 1.875rem 0rem;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 560px) {
  .featurelinks {
    display: block;
    float: left;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .featurelinks {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .featurelinks {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.featurelinks li {
  border-left: solid 1px #e4e4e4;
  border-bottom: solid 1px #e4e4e4;
  border-top: solid 1px #e4e4e4;
  border-right: solid 1px #e4e4e4;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 560px) {
  .featurelinks li {
    display: inline-block;
    float: left;
    width: 50%;
  }
}
.featurelinks li + li {
  border-left: 0;
}
.featurelinks a,
.featurelinks a:visited {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
  color: #4b4b4b;
  display: block;
  font-family: "Brown-Pro-Regular", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 15px 15px 15px 15px;
  padding: 0.9375rem 0.9375rem 0.9375rem 0.9375rem;
  min-height: 150px;
}
.featurelinks a:after,
.featurelinks a:visited:after {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -119px -68px;
  content: '';
  display: block;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 15px;
  height: 18px;
}
@media only screen and (min-width: 768px) {
  .featurelinks a,
  .featurelinks a:visited {
    min-height: 200px;
  }
}
@media only screen and (min-width: 992px) {
  .featurelinks a,
  .featurelinks a:visited {
    min-height: 240px;
  }
}
.featurelinks a:hover,
.featurelinks a:focus {
  color: white;
  background-color: #c10a27;
  text-decoration: none;
}
.featurelinks a:hover:after,
.featurelinks a:focus:after {
  background-position: -169px -68px;
}
ul {
  margin: 0px 0px 0px 20px;
  margin: 0rem 0rem 0rem 1.25rem;
  padding: 0px 0px 20px 0px;
  padding: 0rem 0rem 1.25rem 0rem;
  list-style-type: disc;
}
ul li {
  margin: 0;
  padding: 0px 0px 8px 0px;
  padding: 0rem 0rem 0.5rem 0rem;
}
ul ul,
ul ol {
  padding: 16px 0px 0px 0px;
  padding: 1rem 0rem 0rem 0rem;
}
ol {
  padding: 0px 0px 8px 0px;
  padding: 0rem 0rem 0.5rem 0rem;
  margin: 0px 0px 0px 22px;
  margin: 0rem 0rem 0rem 1.375rem;
  max-width: 730px;
}
ol li {
  margin: 0;
  padding: 0px 0px 8px 0px;
  padding: 0rem 0rem 0.5rem 0rem;
}
ol ul,
ol ol {
  padding: 16px 0px 0px 0px;
  padding: 1rem 0rem 0rem 0rem;
}
.relatedlinks {
  *zoom: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.relatedlinks:before,
.relatedlinks:after {
  content: "";
  display: table;
}
.relatedlinks:after {
  clear: both;
}
.relatedlinks li {
  margin: 0;
  padding: 4px 0px 4px 0px;
  padding: 0.25rem 0rem 0.25rem 0rem;
}
dl {
  border-top: solid 1px #ededed;
  margin: 0;
  padding: 0;
}
dl dt {
  font-family: "Brown-Pro-Regular", sans-serif;
  margin: 0;
  padding: 0;
}
dl dd {
  border-bottom: solid 1px #ededed;
  margin: 0;
  padding: 5px 0px 25px 0px;
  padding: 0.3125rem 0rem 1.5625rem 0rem;
}
.visuallyhidden,
.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.inline-menu {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.inline-menu li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0px 10px 0px 0px;
  padding: 0rem 0.625rem 0rem 0rem;
}
:-moz-placeholder {
  color: #6d6e71;
}
::-webkit-input-placeholder {
  color: #6d6e71;
}
:-ms-input-placeholder {
  color: #6d6e71;
}
form,
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
legend {
  display: none;
}
input,
select,
textarea {
  color: #4b4b4b;
  border-radius: 0;
  border: solid 1px #e4e4e4;
  font-size: 100%;
  font-family: "Brown-Pro-Light", sans-serif;
  line-height: normal;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}
input {
  padding: 7px 14px 7px 14px;
  padding: 0.4375rem 0.875rem 0.4375rem 0.875rem;
}
.custom-dropdown {
  position: relative;
  display: block;
  vertical-align: middle;
}
.custom-dropdown select {
  padding-right: 2.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-dropdown:before {
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 4px 4px 0;
  content: "";
  position: absolute;
  pointer-events: none;
}
.custom-dropdown:after {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -157px -9px;
  height: 40px;
  width: 40px;
  color: #c10a27;
  content: "";
  display: block;
  right: 0;
  top: 0;
  position: absolute;
  pointer-events: none;
}
.form-group {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  position: relative;
}
.form-control {
  display: block;
  width: 100%;
  padding: 10px 12px 10px 12px;
  padding: 0.625rem 0.75rem 0.625rem 0.75rem;
}
textarea.form-control {
  height: auto;
}
.control-label {
  display: block;
  font-family: "Brown-Pro-Regular", sans-serif;
  width: 100%;
  position: relative;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
.control-label .required {
  font-size: 14px;
  font-size: 0.875rem;
  color: #6d6e71;
  font-family: "Brown-Pro-Light", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
}
.icon-status {
  display: block;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 39px;
  right: 5px;
  overflow: hidden;
  text-indent: 21px;
  background-repeat: no-repeat;
  background-size: 300px 300px;
}
.icon-success {
  background-image: url('../images/icons-site.svg');
  background-position: -15px -116px;
}
.icon-fail {
  background-image: url('../images/icons-site.svg');
  background-position: -67px -116px;
  top: 50px;
}
@media only screen and (min-width: 1200px) {
  .icon-status {
    top: 44px;
  }
  .icon-fail {
    top: 55px;
  }
}
.form-pagination {
  padding: 40px 0px 80px 0px;
  padding: 2.5rem 0rem 5rem 0rem;
}
.form-pagination form {
  display: inline;
}
.form-warning {
  background: #fee6ea;
  padding-left: 10px;
  padding-top: 10px;
  margin-left: -10px;
  margin-bottom: 20px;
}
.form-warning .form-control {
  border: solid 1px #c10a27;
}
.form-warning .control-label {
  color: #c10a27;
}
.form-warning .required {
  color: #c10a27;
}
input[type="reset"],
input[type="submit"],
button[type="submit"],
.btn,
a.btn,
a.btn:visited {
  -webkit-appearance: none;
  background: #4b4b4b;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Brown-Pro-Regular", sans-serif;
  text-align: center;
  line-height: normal;
  padding: 11px 20px 11px 20px;
  padding: 0.6875rem 1.25rem 0.6875rem 1.25rem;
  text-decoration: none;
  position: relative;
  border: none;
  outline: none;
  margin: 0;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  transition: background-color 0.25s;
  *overflow: visible;
}
input[type="reset"]:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.btn:hover,
a.btn:hover,
a.btn:focus,
a.btn:active {
  background: #c10a27;
  color: white;
}
input[type="submit"],
button[type="submit"] {
  text-transform: uppercase;
}
[type="submit"].download-button {
  padding: 7px 20px 7px 15px;
  padding: 0.4375rem 1.25rem 0.4375rem 0.9375rem;
  display: table;
}
[type="submit"].download-button .download-icon {
  background-image: url('../images/icons-site.svg');
  background-position: -105px -105px;
  background-repeat: no-repeat;
  background-size: 300px 300px;
  display: table-cell;
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
[type="submit"].download-button .download-text {
  display: table-cell;
  vertical-align: middle;
  padding: 3px 0px 0px 0px;
  padding: 0.1875rem 0rem 0rem 0rem;
}
a.download-button {
  margin: 10px 0px 20px 0px;
  margin: 0.625rem 0rem 1.25rem 0rem;
  display: inline-block;
}
a.download-button:link,
a.download-button:visited {
  position: relative;
  background: #4b4b4b;
  color: white;
  cursor: pointer;
  font-family: "Brown-Pro-Regular", sans-serif;
  line-height: normal;
  padding: 19px 21px 16px 70px;
  padding: 1.1875rem 1.3125rem 1rem 4.375rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
a.download-button:hover,
a.download-button:focus,
a.download-button:active {
  background: #c10a27;
}
a.download-button:before {
  background-image: url('../images/icons-site.svg');
  background-position: -105px -105px;
  background-repeat: no-repeat;
  background-size: 300px 300px;
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  top: 7px;
  left: 15px;
}
a.external-button {
  margin: 10px 0px 20px 0px;
  margin: 0.625rem 0rem 1.25rem 0rem;
  display: inline-block;
}
a.external-button:link,
a.external-button:visited {
  position: relative;
  background: #c10a27;
  color: white;
  cursor: pointer;
  font-family: "Brown-Pro-Regular", sans-serif;
  line-height: normal;
  padding: 16px 21px 13px 40px;
  padding: 1rem 1.3125rem 0.8125rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
a.external-button:hover,
a.external-button:focus,
a.external-button:active {
  background: #4b4b4b;
}
a.external-button:before {
  background-image: url('../images/icons-site.svg');
  background-position: -268px -120px;
  background-repeat: no-repeat;
  background-size: 300px 300px;
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  left: 15px;
}
.faxdetails {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.faxdetails.focusable:active,
.faxdetails.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
img {
  border: 0;
  display: block;
  image-rendering: optimizeSpeed;
  image-rendering: optimizeQuality;
  -ms-interpolation-mode: bicubic;
}
img.img-centred {
  margin: 0 auto;
}
img.img-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
img.img-thumbnail {
  border: 1px #e4e4e4 solid;
  margin-bottom: 1em;
}
img,
object,
embed {
  max-width: 100%;
  height: auto;
}
object {
  height: 100%;
}
iframe {
  border: 0;
  width: 100%;
}
.iframewrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.iframewrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
figure {
  margin: 0;
  display: inline-block;
}
figure figcaption {
  background: #ededed;
  padding: 0.5em;
}
/*
.slides {
    height: 800px;
    width: 100%;
    background-size: cover;
}
    */

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 900px;
}
.old-ie table {
  font-size: 1em;
}
table caption {
  text-align: left;
  padding: 10px 0px 10px 0px;
  padding: 0.625rem 0rem 0.625rem 0rem;
}
table td,
table th {
  text-align: left;
  padding: 10px 10px 10px 10px;
  padding: 0.625rem 0.625rem 0.625rem 0.625rem;
  vertical-align: top;
}
table thead th,
table thead td {
  vertical-align: bottom;
}
table tbody th,
table tbody td {
  border-bottom: solid 1px #e4e4e4;
}
table tbody tr:first-child th,
table tbody tr:first-child td {
  border-top: solid 1px #e4e4e4;
}
table tfoot td {
  font-size: 14px;
  font-size: 0.875rem;
}
table tfoot td p {
  padding: 1em 0 0 0;
}
table.financial td,
table.financial th {
  text-align: right;
  vertical-align: bottom;
}
table.financial tr td:first-child,
table.financial tr th:first-child {
  text-align: left;
  vertical-align: top;
}
table.financial tbody tr:first-child th,
table.financial tbody tr:first-child td {
  border-top: solid 1px #939598;
}
table.financial tbody tr:last-child th,
table.financial tbody tr:last-child td {
  border-bottom: solid 1px #939598;
}
table.financial tbody td.indent {
  padding-left: 80px;
}
@media only screen and (max-width: 767px) {
  .tablewrapper {
    margin-bottom: 2.5rem;
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
    -webkit-box-shadow: inset -3px 0 10px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset -3px 0 10px 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset -3px 0 10px 0 rgba(0, 0, 0, 0.05);
  }
  .tablewrapper table {
    margin: 0;
  }
}
.icon-button {
  -webkit-appearance: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  font-family: "Brown-Pro-Regular", sans-serif;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  border: none;
  outline: none;
  margin: 0;
  *overflow: visible;
}
.icon-button [class^=button] {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #4b4b4b;
  content: '';
  display: inline-block;
  line-height: 44px;
  text-indent: 44px;
  width: 44px;
  height: 44px;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  transition: background-color 0.25s;
  vertical-align: middle;
  overflow: hidden;
}
.mobilenav .icon-button [class^=button] {
  line-height: 40px;
  text-indent: 40px;
  width: 40px;
  height: 40px;
}
.icon-button .button-menu {
  background-position: -4px -5px;
}
.icon-button .button-search {
  background-position: -54px -7px;
}
.icon-button .button-close {
  background-position: -103px -6px;
}
.icon-button .button-grid {
  background-position: -2px -54px;
}
.icon-button .button-list {
  background-position: -52px -54px;
}
.icon-button.active [class^=button],
.icon-button:hover [class^=button],
.icon-button:focus [class^=button] {
  background-color: #c10a27;
}
/* home/investors */

[class^=icon-lg] {
  display: block;
  width: 75px;
  height: 75px;
  background-image: url('../images/icons-site-lg.svg');
  background-repeat: no-repeat;
  background-size: 400px 200px;
  margin-bottom: 24px;
}
.icon-lg-envelope {
  background-position: -20px 0px;
}
.icon-lg-lanyard {
  background-position: -120px 0px;
}
.icon-lg-download {
  background-position: -220px 0px;
}
.icon-lg-screen {
  background-position: -319px 0px;
}
.icon-lg-information {
  background-position: -20px -103px;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  padding: 0;
  margin: 0;
  overflow-y: scroll;
}
body {
  margin: 0;
  padding: 0;
}
.container {
  clear: left;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 21px;
}
.row {
  margin-right: -21px;
  margin-left: -21px;
  padding: 0;
  *zoom: 1;
}
.row:before,
.row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
[class^=col-] {
  display: block;
  min-height: 1px;
  padding-left: 21px;
  padding-right: 21px;
  position: relative;
  float: left;
}
/* grid with no padding */

.container-compact {
  padding: 0;
}
.container-compact .row {
  margin-left: 0;
  margin-right: 0;
}
.container-compact [class^=col-] {
  padding-left: 0;
  padding-right: 0;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.666666667%;
}
.col-xs-10 {
  width: 83.333333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.666666667%;
}
.col-xs-7 {
  width: 58.333333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.666666667%;
}
.col-xs-4 {
  width: 33.333333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.666666667%;
}
.col-xs-1 {
  width: 8.333333333%;
}
/*.make-grid(@columns, xs, offset);*/

@media only screen and (min-width: 560px) {
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.666666667%;
  }
  .col-sm-10 {
    width: 83.333333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.666666667%;
  }
  .col-sm-7 {
    width: 58.333333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.666666667%;
  }
  .col-sm-4 {
    width: 33.333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.666666667%;
  }
  .col-sm-1 {
    width: 8.333333333%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.666666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.666666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.666666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.666666667%;
  }
  .col-md-10 {
    width: 83.333333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.666666667%;
  }
  .col-md-7 {
    width: 58.333333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.666666667%;
  }
  .col-md-4 {
    width: 33.333333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.666666667%;
  }
  .col-md-1 {
    width: 8.333333333%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.666666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.333333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.666666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.666666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.333333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.666666667%;
  }
  .col-lg-10 {
    width: 83.333333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.666666667%;
  }
  .col-lg-7 {
    width: 58.333333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.666666667%;
  }
  .col-lg-4 {
    width: 33.333333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.666666667%;
  }
  .col-lg-1 {
    width: 8.333333333%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.666666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.666666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.666666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.666666667%;
  }
  .col-xl-10 {
    width: 83.333333333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.666666667%;
  }
  .col-xl-7 {
    width: 58.333333333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.666666667%;
  }
  .col-xl-4 {
    width: 33.333333333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.666666667%;
  }
  .col-xl-1 {
    width: 8.333333333%;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .col-xl-offset-11 {
    margin-left: 91.666666667%;
  }
  .col-xl-offset-10 {
    margin-left: 83.333333333%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-8 {
    margin-left: 66.666666667%;
  }
  .col-xl-offset-7 {
    margin-left: 58.333333333%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-5 {
    margin-left: 41.666666667%;
  }
  .col-xl-offset-4 {
    margin-left: 33.333333333%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-2 {
    margin-left: 16.666666667%;
  }
  .col-xl-offset-1 {
    margin-left: 8.333333333%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
}
hr {
  height: 1px;
  border: none;
  color: #cfcfcf;
  background-color: #cfcfcf;
}
.cf {
  *zoom: 1;
}
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.floatleft,
.pull-left {
  float: left !important;
}
.floatright,
.pull-right {
  float: right !important;
}
.nowrap {
  white-space: nowrap !important;
}
.print {
  display: none !important;
}
.keyline {
  border-bottom: 1px solid #6d6e71;
}
.band {
  *zoom: 1;
}
.band:before,
.band:after {
  content: "";
  display: table;
}
.band:after {
  clear: both;
}
.band-padding {
  padding: 30px 0px 30px 0px;
  padding: 1.875rem 0rem 1.875rem 0rem;
}
@media only screen and (min-width: 768px) {
  .band-padding {
    padding: 50px 0px 50px 0px;
    padding: 3.125rem 0rem 3.125rem 0rem;
  }
}
.band-white {
  background-color: white;
}
.band-offwhite {
  background-color: #ededed;
}
.band-mediumgrey {
  background-color: #6d6e71;
}
.band-darkgrey {
  background-color: #4b4b4b;
}
.band-mediumgrey,
.band-darkgrey {
  color: white;
}
.band-mediumgrey h2,
.band-darkgrey h2,
.band-mediumgrey h3,
.band-darkgrey h3 {
  color: white;
}
.band-mediumgrey a:link,
.band-darkgrey a:link,
.band-mediumgrey a:visited,
.band-darkgrey a:visited,
.band-mediumgrey a:hover,
.band-darkgrey a:hover,
.band-mediumgrey a:focus,
.band-darkgrey a:focus,
.band-mediumgrey a:active,
.band-darkgrey a:active {
  color: white;
}
@media only screen and (min-width: 992px) {
  .sectioncontent {
    padding-top: 141px;
    padding-top: 8.8125rem;
  }
}
.pagecontent {
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 992px) {
  .pagecontent {
    padding-top: 200px;
    padding-top: 12.5rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
}
main > div:last-child {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  main > div:last-child {
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  main > div:last-child {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }
}
.centeredblock {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.centeredblock p {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
.thumbtextwrapper {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.thumbtextwrapper .thumb {
  padding-right: 0;
  text-align: center;
}
.thumbtextwrapper .thumb img {
  margin-bottom: 0.75em;
}
.thumbtextwrapper .thumb h2 {
  padding: 0px 0px 10px 0px;
  padding: 0rem 0rem 0.625rem 0rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
}
header {
  background-color: white;
  border-bottom: solid 1px #e4e4e4;
}
.global-header {
  position: relative;
}
.global-header .branding {
  padding: 10px 0;
}
.global-header .branding img {
  min-width: 60px;
  width: 60px;
}
@media only screen and (min-width: 768px) {
  .global-header .branding img {
    width: 88px;
    margin: 24px 4px;
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .global-header .branding img {
    width: 112px;
    margin: 24px 18px;
  }
}
.global-header .mobilenav {
  float: right;
  padding: 10px 0px 10px 0px;
  padding: 0.625rem 0rem 0.625rem 0rem;
}
@media only screen and (min-width: 768px) {
  .global-header .mobilenav {
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}
.global-header .mobilenav .inline-menu li {
  display: block;
  float: left;
}
#menulayer {
  display: none;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1100;
  width: 100%;
  min-height: 100%;
  background: #ededed;
  overflow-y: auto;
  overflow-x: hidden;
}
#menulayer p {
  margin: 0 auto;
  max-width: 450px;
  padding: 15px 25px;
  text-align: right;
}
#menulayer .mainnav {
  margin: 0 auto;
  max-width: 450px;
  padding: 0 25px 25px 25px;
}
ul.mainnav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.mainnav .level1 {
  margin-top: 10px;
}
ul.mainnav .level2 {
  padding-left: 20px;
}
ul.mainnav ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0px 20px 0px;
  margin: 0.625rem 0rem 1.25rem 0rem;
}
ul.mainnav li {
  padding: 0;
  margin: 0;
}
ul.mainnav > li {
  border-top: solid 1px #4b4b4b;
}
ul.mainnav > li:last-child {
  border-bottom: solid 1px #4b4b4b;
}
ul.mainnav a:link,
ul.mainnav a:visited {
  color: #4b4b4b;
  display: block;
  padding: 10px 45px 10px 0px;
  padding: 0.625rem 2.8125rem 0.625rem 0rem;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
ul.mainnav a:hover,
ul.mainnav a:focus,
ul.mainnav a:active {
  color: #c10a27;
}
ul.mainnav a.lit {
  color: #c10a27;
}
ul.mainnav .dropdown-trigger {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -157px -9px;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  -webkit-transition: 0.25s transform linear;
  -moz-transition: 0.25s transform linear;
  transition: 0.25s transform linear;
}
@media only screen and (min-width: 992px) {
  ul.mainnav .dropdown-trigger {
    display: none;
  }
}
ul.mainnav .active .dropdown-trigger {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
ul.mainnav .dropdown {
  display: none;
}
.mainnavwrapper,
.subnavwrapper,
.menu-title {
  display: none;
}
@media only screen and (min-width: 320px) {
  .menu-title {
    display: inline-block;
  }
}
@media only screen and (min-width: 992px) {
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
  }
  header nav {
    display: block;
  }
  .global-header {
    display: block;
  }
  .mobilenav {
    display: none;
  }
  .mainnavwrapper {
    display: block;
    margin-top: 70px;
    margin-left: -15px;
  }
  .subnavwrapper {
    display: block;
  }
  ul.mainnav {
    padding: 0;
  }
  ul.mainnav > li {
    border: 0;
    display: table-cell;
    position: relative;
    vertical-align: middle;
  }
  ul.mainnav > li:last-child {
    border: 0;
  }
  ul.mainnav > li > a {
    margin-left: 5px;
  }
  ul.mainnav a.lit:link,
  ul.mainnav a.lit:visited {
    font-family: "Brown-Pro-Regular", sans-serif;
    color: #c10a27;
  }
  ul.mainnav a.lit:hover,
  ul.mainnav a.lit:focus,
  ul.mainnav a.lit:active {
    color: white;
    text-decoration: none;
  }
  ul.mainnav a {
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  ul.mainnav a:link,
  ul.mainnav a:visited {
    color: #4b4b4b;
    display: block;
    padding: 24px 10px 24px 10px;
    padding: 1.5rem 0.625rem 1.5rem 0.625rem;
  }
  ul.mainnav a:hover,
  ul.mainnav a:focus,
  ul.mainnav a:active {
    background: #c10a27;
    color: white;
  }
  ul.mainnav .showdropdown > a:link,
  ul.mainnav .showdropdown > a:visited,
  ul.mainnav .showdropdown > a:hover,
  ul.mainnav .showdropdown > a:focus,
  ul.mainnav .showdropdown > a:active {
    background-color: #c10a27;
    color: white;
  }
  ul.mainnav .showdropdown .level1 {
    display: block;
    position: absolute;
    top: 0;
    z-index: 10;
    width: 250px;
    -webkit-animation: fadein 0.15s ease-in;
    -moz-animation: fadein 0.15s ease-in;
    animation: fadein 0.15s ease-in;
    opacity: 1;
  }
  ul.mainnav .level1 {
    opacity: 0;
    border-top: solid 5px #c10a27;
    border-bottom: solid 1px #e4e4e4;
    background: white;
    font-size: 16px;
    font-size: 1rem;
    margin-left: 5px;
  }
  ul.mainnav .level1 a:link,
  ul.mainnav .level1 a:visited {
    text-decoration: none;
    padding: 6px 15px 6px 15px;
    padding: 0.375rem 0.9375rem 0.375rem 0.9375rem;
  }
  ul.mainnav .level1 a:hover,
  ul.mainnav .level1 a:focus,
  ul.mainnav .level1 a:active,
  ul.mainnav .level1 a.lit {
    background: white;
    color: #c10a27;
    text-decoration: underline;
  }
  ul.mainnav .level1 li {
    border-left: solid 1px #e4e4e4;
    border-right: solid 1px #e4e4e4;
  }
  ul.mainnav .level1 li:first-child {
    padding-top: 9px;
    padding-top: 0.5625rem;
  }
  ul.mainnav .level1 li:last-child {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }
  .sectiontitle {
    font-family: "Brown-Pro-Regular", sans-serif;
    text-transform: uppercase;
    padding: 10px 20px 20px 20px;
    padding: 0.625rem 1.25rem 1.25rem 1.25rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
  .sectiontitle a:link,
  .sectiontitle a:visited {
    text-decoration: none;
  }
  .sectiontitle a:hover,
  .sectiontitle a:focus {
    text-decoration: underline;
  }
  .subnav {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .subnav li {
    margin: 0;
    padding: 0px 0px 3px 0px;
    padding: 0rem 0rem 0.1875rem 0rem;
  }
  .subnav ul {
    margin: 0;
    padding: 3px 0px 17px 20px;
    padding: 0.1875rem 0rem 1.0625rem 1.25rem;
    list-style-type: none;
  }
  .subnav ul a:link,
  .subnav ul a:visited {
    color: #4b4b4b;
    text-decoration: none;
  }
  .subnav ul a:hover,
  .subnav ul a:focus {
    background-color: transparent;
    color: #c10a27;
    text-decoration: underline;
  }
  .subnav ul a.lit:link,
  .subnav ul a.lit:visited {
    background-color: transparent;
    color: #c10a27;
    text-decoration: underline;
  }
  .subnav ul a.lit:hover,
  .subnav ul a.lit:focus {
    text-decoration: none;
  }
  .subnav a {
    display: inline-block;
    padding: 5px 20px 5px 20px;
    padding: 0.3125rem 1.25rem 0.3125rem 1.25rem;
  }
  .subnav a:link,
  .subnav a:visited {
    color: #4b4b4b;
    text-decoration: none;
  }
  .subnav a:hover,
  .subnav a:focus {
    background-color: #c10a27;
    color: white;
    text-decoration: none;
  }
  .subnav a.lit:link,
  .subnav a.lit:visited,
  .subnav a.lit:hover,
  .subnav a.lit:focus {
    background-color: #c10a27;
    color: white;
    text-decoration: none;
  }
}
@media only screen and (min-width: 1200px) {
  .mainnavwrapper {
    margin-left: -20px;
  }
  ul.mainnav > li a:link,
  ul.mainnav > li a:visited {
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    margin-right: 5px;
    margin-right: 0.3125rem;
  }
}
.global-header .col-xs-8 {
  position: initial;
}
.search-mini {
  background-color: #c10a27;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 4;
}
.search-mini :-moz-placeholder {
  color: white;
}
.search-mini ::-webkit-input-placeholder {
  color: white;
}
.search-mini :-ms-input-placeholder {
  color: white;
}
.search-mini input[type="text"] {
  background: transparent;
  border: 0;
  color: white;
  height: 50px;
  width: 100%;
}
.search-mini input[type="submit"] {
  position: absolute;
  top: -100px;
  left: -200px;
}
main,
header,
footer {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.togglesearch main,
.togglesearch header,
.togglesearch footer {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
@media only screen and (min-width: 992px) {
  .search-mini {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: #ededed;
    display: inline-block;
    padding-left: 15px;
    padding-left: 0.9375rem;
    position: absolute;
    left: auto;
    top: 21px;
    right: 21px;
  }
  .search-mini :-moz-placeholder {
    color: #6d6e71;
  }
  .search-mini ::-webkit-input-placeholder {
    color: #6d6e71;
  }
  .search-mini :-ms-input-placeholder {
    color: #6d6e71;
  }
  .search-mini input {
    border: none;
    height: 30px;
    padding: 0;
    outline: 0;
  }
  .search-mini input[type="text"] {
    color: #6d6e71;
    width: 130px;
    height: 30px;
  }
  .search-mini input[type="submit"] {
    background-color: #6d6e71;
    background-image: url('../images/icons-site.svg');
    background-size: 300px 300px;
    background-position: -248px -23px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 30px;
    text-indent: 30px;
    overflow: hidden;
    position: relative;
    top: auto;
    left: auto;
  }
  .search-mini input[type="submit"]:hover,
  .search-mini input[type="submit"]:focus {
    background-color: #c10a27;
  }
}
footer .linkedin {
  text-align: center;
  padding: 16px 20px 23px 20px;
  padding: 1rem 1.25rem 1.4375rem 1.25rem;
  text-transform: uppercase;
}
footer .linkedin a,
footer .linkedin a:visited {
  text-decoration: none;
}
footer .linkedin a:hover,
footer .linkedin a:focus {
  text-decoration: none;
}
footer .linkedin a:hover .linkedin-text,
footer .linkedin a:focus .linkedin-text {
  text-decoration: underline;
}
footer .linkedin-icon {
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-indent: 40px;
  overflow: hidden;
  margin-left: 7px;
  margin-bottom: -15px;
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -207px -206px;
}
footer h2 {
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  font-size: 1.5rem;
}
footer a.arrow {
  font-family: "Brown-Pro-Regular", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
.global-emailsignup {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.global-emailsignup h2 {
  padding-bottom: 0;
}
.global-emailsignup input[type="email"] {
  background: #4b4b4b;
  border-color: #4b4b4b;
  color: white;
  padding: 11px 15px 11px 15px;
  padding: 0.6875rem 0.9375rem 0.6875rem 0.9375rem;
}
.global-emailsignup input[type="button"],
.global-emailsignup input[type="submit"],
.global-emailsignup button {
  background: none;
  text-transform: uppercase;
}
.global-emailsignup input[type="button"]:hover,
.global-emailsignup input[type="submit"]:hover,
.global-emailsignup button:hover {
  background: none;
  text-decoration: none;
}
.global-emailsignup :-moz-placeholder {
  color: white;
}
.global-emailsignup ::-webkit-input-placeholder {
  color: white;
}
.global-emailsignup :-ms-input-placeholder {
  color: white;
}
.global-emailsignup .emailsignup-text > .note {
  padding: 5px 0px 10px 0px;
  padding: 0.3125rem 0rem 0.625rem 0rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1200px) {
  .global-emailsignup .emailsignup-text > .note {
    font-size: 14px;
    font-size: 0.777777778rem;
  }
}
@media only screen and (min-width: 768px) {
  .global-emailsignup {
    display: table;
    width: 100%;
  }
  .global-emailsignup .emailsignup-text,
  .global-emailsignup .emailsignup-form {
    display: table-cell;
    width: 50%;
  }
  .global-emailsignup .emailsignup-text {
    padding-right: 2rem;
  }
}
.global-footer {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
.footer-linkage {
  padding-top: 40px;
  padding-top: 2.5rem;
}
.footer-linkage .relatedlinks {
  *zoom: 1;
}
.footer-linkage .relatedlinks:before,
.footer-linkage .relatedlinks:after {
  content: "";
  display: table;
}
.footer-linkage .relatedlinks:after {
  clear: both;
}
.footer-linkage .relatedlinks li {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .footer-linkage .relatedlinks li {
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .footer-linkage {
    display: table-cell;
    width: 66.666%;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-linkage {
    width: 50%;
  }
}
.footer-other {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media only screen and (min-width: 992px) {
  .footer-other {
    display: table-cell;
    width: 33.333%;
    vertical-align: top;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-other {
    width: 50%;
  }
}
.lang-switcher {
  background-color: #4b4b4b;
  display: block;
  width: 320px;
}
@media only screen and (min-width: 992px) {
  .lang-switcher {
    position: relative;
    float: right;
  }
}
.lang-switcher button {
  background: none;
  border: none;
  text-transform: uppercase;
  font-family: "Brown-Pro-Regular", sans-serif;
  padding: 0;
}
.lang-switcher button span {
  font-family: "Brown-Pro-Light", sans-serif;
}
@media only screen and (min-width: 992px) {
  .lang-switcher button {
    float: right;
  }
}
.lang-switcher .languages {
  display: none;
}
@media only screen and (min-width: 992px) {
  .lang-switcher .languages {
    position: absolute;
    top: 40px;
  }
}
.lang-switcher ul {
  background-color: #4b4b4b;
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 320px;
}
@media only screen and (min-width: 992px) {
  .lang-switcher li {
    background-color: #4b4b4b;
    display: block;
    float: left;
    width: 160px;
  }
}
.lang-switcher a {
  font-family: "Brown-Pro-Light", sans-serif;
}
.lang-switcher a.lit {
  font-family: "Brown-Pro-Regular", sans-serif;
  text-decoration: none;
}
.no-js footer .button {
  display: none;
}
.no-js .languages {
  display: block;
}
.footer-details {
  color: #ededed;
  padding: 2rem 0 1rem 0;
  font-size: 14px;
  font-size: 0.875rem;
  *zoom: 1;
  display: table;
  width: 100%;
}
.footer-details:before,
.footer-details:after {
  content: "";
  display: table;
}
.footer-details:after {
  clear: both;
}
@media only screen and (min-width: 992px) {
  .footer-details .address {
    display: table-cell;
    width: 70%;
  }
  .footer-details .copyright {
    text-align: right;
    display: table-cell;
    width: 30%;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-details {
    font-size: 14px;
    font-size: 0.777777778rem;
  }
}
#cookiebanner {
  background: #6d6e71;
  background: rgba(109, 110, 113, 0.9);
  border-top: solid 1px #939598;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 10005;
}
#cookiebanner > .container {
  position: relative;
  padding: 40px 20px;
}
#cookiebanner .heading {
  color: white;
  font-size: 22px;
  font-family: "Brown-Pro-Regular", sans-serif;
}
#cookiebanner a {
  text-transform: none;
}
#cookiebanner a:link,
#cookiebanner a:visited {
  color: white;
  text-decoration: none;
}
#cookiebanner a:hover,
#cookiebanner a:focus {
  color: white;
  text-decoration: underline;
}
#cookiebanner .desc {
  font-size: 18px;
}
#cookiebanner a.arrow {
  font-family: "Brown-Pro-Light", sans-serif;
  font-size: 16px;
}
#cookiebanner a.arrow:before {
  background-image: url(../images/internal-link-white.svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: center;
  content: '';
  height: 15px;
  width: 18px;
  position: absolute;
  top: 3px;
  left: 0;
}
#cookiebanner .closebanner {
  /*position: absolute;m
        right: 21px;
        top: 4px;*/
  margin-top: 20px;
  display: block;
  background: white;
  padding: 15px 20px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  color: #4b4b4b;
  font-size: 18px;
  font-family: "Brown-Pro-Regular", sans-serif;
}
#cookiebanner p {
  color: white;
  font-size: 16px;
  padding-bottom: 10px;
}
#accessiblenav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#accessiblenav li {
  display: inline;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#accessiblenav a:link,
#accessiblenav a:visited {
  color: #4b4b4b;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 5px;
  width: 0;
  z-index: 1004;
  text-decoration: none;
  font-family: "Brown-Pro-Regular", sans-serif;
}
#accessiblenav a:active,
#accessiblenav a:focus {
  background: white;
  border: 1px solid #4b4b4b;
  height: auto;
  margin: 0;
  overflow: visible;
  padding: 10px;
  position: absolute;
  text-decoration: underline;
  width: auto;
  z-index: 1100;
}
[dir="rtl"] body {
  direction: rtl;
}
[dir="rtl"] [class^=col-] {
  float: right;
}
.accordion {
  background-color: white;
  *zoom: 1;
  border-bottom: solid 1px #ededed;
  margin-bottom: 2em;
}
.accordion:before,
.accordion:after {
  content: "";
  display: table;
}
.accordion:after {
  clear: both;
}
@media only screen and (min-width: 992px) {
  .accordion {
    position: relative;
    margin-left: -21px;
  }
}
.accordion .panel {
  border-top: solid 1px #ededed;
  border-left: solid 1px #ededed;
  border-right: solid 1px #ededed;
}
.accordion .panel ul {
  max-width: none;
}
.accordion .panel:last-child {
  border-top: solid 1px #ededed;
}
.accordion .panelheader h2,
.accordion .panelheader h3 {
  padding: 0;
  font-size: 24px;
  font-size: 1.5rem;
  position: relative;
  max-width: none;
}
.accordion .panelheader a {
  display: block;
  padding: 15px 60px 15px 20px;
  padding: 0.9375rem 3.75rem 0.9375rem 1.25rem;
}
.accordion .panelheader a:link,
.accordion .panelheader a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.accordion .panelheader a:hover,
.accordion .panelheader a:focus {
  text-decoration: underline;
}
.accordion .panelheader a .icon {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -164px -172px;
  display: block;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 23px;
  width: 21px;
  -webkit-transition: 0.25s transform linear;
  -moz-transition: 0.25s transform linear;
  transition: 0.25s transform linear;
}
.accordion .panelheader a .icon.open {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (min-width: 1200px) {
  .accordion .panelheader a .icon {
    top: 25px;
  }
}
.accordion .panelbody {
  padding: 0px 20px 20px 20px;
  padding: 0rem 1.25rem 1.25rem 1.25rem;
}
.accordion .panelbody a:link,
.accordion .panelbody a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.accordion .panelbody a:hover,
.accordion .panelbody a:focus {
  text-decoration: underline;
}
.accordion .panelbody a em {
  font-family: "Brown-Pro-Light", sans-serif;
}
@media only screen and (min-width: 768px) {
  .accordion .panelbody .col-xs-12.col-md-6:nth-child(odd) {
    clear: left;
  }
}
.no-js .location-accordion .panelheader h3 {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.no-js .download-accordion .panelheader h2 {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.locations {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media only screen and (min-width: 768px) {
  .locations {
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}
.location-map {
  *zoom: 1;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 0;
  width: 100%;
  display: none;
  margin: 0 auto;
  /* panels */

}
.location-map:before,
.location-map:after {
  content: "";
  display: table;
}
.location-map:after {
  clear: both;
}
.location-map .hq {
  display: none;
}
@media only screen and (min-width: 768px) {
  .location-map {
    display: block;
    height: 550px;
    width: 748px;
    background-image: url('/~/media/Images/Essentra-plc/locations/map_locations-768.jpg');
  }
}
@media only screen and (min-width: 992px) {
  .location-map {
    height: 535px;
    width: 972px;
    background-image: url('/~/media/Images/Essentra-plc/locations/map_locations-992.jpg');
  }
}
@media only screen and (min-width: 1200px) {
  .location-map {
    height: 595px;
    width: 1160px;
    background-image: url('/~/media/Images/Essentra-plc/locations/map_locations.jpg');
  }
}
.location-map h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
}
.location-map ul {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.location-map li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.location-map a {
  position: relative;
  padding-left: 15px;
}
.location-map a:link,
.location-map a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.location-map a:hover,
.location-map a:focus {
  text-decoration: underline;
}
.location-map a:before {
  background-color: #c10a27;
  content: '';
  display: block;
  float: left;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) {
  .location-map a:before {
    top: 3px;
  }
}
.location-map #region-africa {
  position: absolute;
  top: 320px;
  left: 396px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-africa {
    top: 420px;
    left: 515px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-africa {
    top: 475px;
    left: 630px;
  }
}
.location-map #region-africa h2 {
  display: none;
}
.location-map #region-asia {
  position: absolute;
  top: 100px;
  left: 580px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-asia {
    top: 135px;
    left: 740px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-asia {
    top: 160px;
    left: 900px;
  }
}
.location-map #region-australia {
  position: absolute;
  top: 310px;
  left: 600px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-australia {
    top: 405px;
    left: 775px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-australia {
    top: 460px;
    left: 950px;
  }
}
.location-map #region-australia h2 {
  display: none;
}
.location-map #region-europe {
  position: absolute;
  top: 115px;
  left: 350px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-europe {
    top: 150px;
    left: 470px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-europe {
    top: 180px;
    left: 580px;
  }
}
.location-map #region-middle-east {
  position: absolute;
  top: 185px;
  left: 455px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-middle-east {
    top: 240px;
    left: 600px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-middle-east {
    top: 270px;
    left: 735px;
  }
}
.location-map #region-middle-east h2 {
  display: none;
}
.location-map #region-north-america {
  position: absolute;
  top: 115px;
  left: 105px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-north-america {
    top: 165px;
    left: 145px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-north-america {
    top: 200px;
    left: 200px;
  }
}
.location-map #region-south-america {
  position: absolute;
  top: 290px;
  left: 210px;
}
@media only screen and (min-width: 992px) {
  .location-map #region-south-america {
    top: 380px;
    left: 275px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map #region-south-america {
    top: 440px;
    left: 360px;
  }
}
.location-map .hq {
  position: absolute;
  top: 385px;
  left: 20px;
}
@media only screen and (min-width: 992px) {
  .location-map .hq {
    top: 310px;
    left: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .location-map .hq {
    top: 310px;
    left: 20px;
  }
}
.accordion-title {
  *zoom: 1;
}
.accordion-title:before,
.accordion-title:after {
  content: "";
  display: table;
}
.accordion-title:after {
  clear: both;
}
.accordion-title h2,
.accordion-title p {
  display: inline-block;
  width: 50%;
  float: left;
}
.accordion-title p {
  float: right;
}
.accordion-title .accordion-toggle {
  padding-top: 10px;
  padding-top: 0.625rem;
}
.accordion-title .toggleall {
  position: relative;
  text-align: right;
  padding: 10px 45px 10px 10px;
  padding: 0.625rem 2.8125rem 0.625rem 0.625rem;
}
.accordion-title .toggleall a:after {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -166px -172px;
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 12px;
  width: 20px;
  -webkit-transition: 0.25s transform linear;
  -moz-transition: 0.25s transform linear;
  transition: 0.25s transform linear;
}
@media only screen and (min-width: 1200px) {
  .accordion-title .toggleall a:after {
    top: 15px;
  }
}
.accordion-title .toggleall a:link,
.accordion-title .toggleall a:visited {
  text-decoration: none;
}
.accordion-title .toggleall a:hover,
.accordion-title .toggleall a:focus {
  text-decoration: underline;
}
.accordion-title .toggleall a.lit:after {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.location-accordion .panelbody {
  padding: 0px 20px 20px 20px;
  padding: 0rem 1.25rem 1.25rem 1.25rem;
}
.location-accordion .panelbody a:link,
.location-accordion .panelbody a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.location-accordion .panelbody a:hover,
.location-accordion .panelbody a:focus {
  text-decoration: underline;
}
.location-accordion .panelbody a em {
  font-family: "Brown-Pro-Light", sans-serif;
}
.location-accordion .panelbody li {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 560px) {
  .location-accordion .panelbody li:nth-child(2n+3) {
    clear: left;
  }
}
@media only screen and (min-width: 768px) {
  .location-accordion .panelbody li:nth-child(2n+3) {
    clear: none;
  }
  .location-accordion .panelbody li:nth-child(3n+4) {
    clear: left;
  }
}
@media only screen and (min-width: 992px) {
  .location-accordion .panelbody li:nth-child(3n+4) {
    clear: none;
  }
  .location-accordion .panelbody li:nth-child(4n+5) {
    clear: left;
  }
}
.location-accordion h2 {
  text-transform: none;
}
.location-accordion h3 {
  color: #4b4b4b;
  text-transform: none;
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
p.address,
p.tel,
p.fax,
p.map,
p.directions {
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  *zoom: 1;
}
p.address:before,
p.tel:before,
p.fax:before,
p.map:before,
p.directions:before,
p.address:after,
p.tel:after,
p.fax:after,
p.map:after,
p.directions:after {
  content: "";
  display: table;
}
p.address:after,
p.tel:after,
p.fax:after,
p.map:after,
p.directions:after {
  clear: both;
}
p.address:before,
p.tel:before,
p.fax:before,
p.map:before,
p.directions:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  content: '';
  display: block;
  float: left;
  height: 20px;
  margin-right: 5px;
  width: 20px;
}
p.address {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
p.address:before {
  display: none;
}
p.tel:before {
  background-position: -64px -166px;
}
p.fax:before {
  background-position: -64px -166px;
}
p.map:before {
  background-position: -14px -166px;
}
p.directions:before {
  background-position: -115px -166px;
}
/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.carousel {
  display: block;
  padding: 40px 0px 20px 0px;
  padding: 2.5rem 0rem 1.25rem 0rem;
  width: 100%;
  *zoom: 1;
}
.carousel:before,
.carousel:after {
  content: "";
  display: table;
}
.carousel:after {
  clear: both;
}
.carousel .title {
  font-family: "Brown-Pro-Regular", sans-serif;
}
.carousel .col-xs-6 {
  float: left;
}
.carousel .event .badge {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.carousel .event-info {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.carousel a:hover p.title,
.carousel a:focus p.title {
  text-decoration: underline;
}
.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10px auto;
  padding: 20px 0px 0px 0px;
  padding: 1.25rem 0rem 0rem 0rem;
  text-align: center;
  z-index: 1001;
}
.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots button {
  border: solid 1px #e4e4e4;
  background-color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  text-indent: 20px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-dots .slick-active button {
  border-color: #c10a27;
  background-color: #c10a27;
}
.slides,
.slide {
  height: 310px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .slides,
  .slide {
    height: 620px;
  }
}
.slides {
  margin: 0 auto;
  max-width: 1200px;
}
.slideswrapper {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .slick-slide {
    border-left: solid 3px white;
  }
}
.carousel .article,
.carousel .event {
  background-color: white;
  margin-left: 1px;
  min-height: 220px;
  width: 33%;
  float: left;
  display: block;
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.carousel .article.article img,
.carousel .event.article img {
  border: solid 1px #e4e4e4;
}
.carousel .article.article .row .col-xs-6:first-child,
.carousel .event.article .row .col-xs-6:first-child {
  padding-right: 20px;
}
/* article */

.articlehead {
  *zoom: 1;
  width: 100%;
  border-bottom: solid 1px #e4e4e4;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
.articlehead:before,
.articlehead:after {
  content: "";
  display: table;
}
.articlehead:after {
  clear: both;
}
.headline {
  color: #4b4b4b;
  font-family: "Brown-Pro-Light", sans-serif;
  font-weight: normal;
  text-transform: none;
  margin: 0;
  padding: 0px 0px 15px 0px;
  padding: 0rem 0rem 0.9375rem 0rem;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 45px;
  line-height: 2.8125rem;
}
@media only screen and (min-width: 768px) {
  .headline {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .headline {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.date {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 992px) {
  .narrow-listing {
    position: relative;
    margin-left: -21px;
  }
}
.narrow-listing .text-listing {
  margin-top: 0;
}
.narrow-listing .filter button,
.narrow-listing .filter ul {
  min-width: 150px;
}
.narrow-listing h2 {
  padding-top: 0;
}
.narrow-listing .tabs a {
  min-width: 50px;
}
@media only screen and (min-width: 992px) {
  .narrow-listing .tabs a {
    min-width: 150px;
  }
}
@media only screen and (min-width: 992px) {
  .narrow-listing .filter {
    position: absolute;
    top: -73px;
    right: 0;
  }
}
.events,
.articles {
  background-color: #ededed;
}
.tabs {
  *zoom: 1;
  margin: 0;
  padding: 40px 0px 0px 0px;
  padding: 2.5rem 0rem 0rem 0rem;
}
.tabs:before,
.tabs:after {
  content: "";
  display: table;
}
.tabs:after {
  clear: both;
}
.tabs li {
  display: block;
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0px 10px 0px 0px;
  padding: 0rem 0.625rem 0rem 0rem;
  width: auto;
  white-space: nowrap;
}
.tabs a {
  background: #e4e4e4;
  border: solid 1px #e4e4e4;
  border-bottom: 0;
  display: block;
  float: left;
  font-family: "Brown-Pro-Regular", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 10px 10px 10px;
  padding: 0.625rem 0.625rem 0.625rem 0.625rem;
}
.tabs a.lit {
  background: white;
  color: #c10a27;
}
.tabs a:link,
.tabs a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.tabs a:hover,
.tabs a:focus,
.tabs a:active {
  text-decoration: none;
  background: white;
  color: #c10a27;
}
@media only screen and (min-width: 560px) {
  .tabs a {
    min-width: 250px;
    padding: 10px 20px 10px 20px;
    padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  }
}
h2.tab {
  border: solid 1px #e4e4e4;
  border-bottom: none;
  background: white;
  color: #c10a27;
  display: inline-block;
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  min-width: 250px;
  text-transform: uppercase;
  *zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 10px 20px 10px 20px;
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
}
h2.tab:before,
h2.tab:after {
  content: "";
  display: table;
}
h2.tab:after {
  clear: both;
}
.badge,
h2.badge {
  background-color: #9b0056;
  color: white;
  display: inline-block;
  text-transform: uppercase;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 1.375rem;
  padding: 2px 7px 0px 7px;
  padding: 0.125rem 0.4375rem 0rem 0.4375rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  *zoom: 1;
}
.badge:before,
h2.badge:before,
.badge:after,
h2.badge:after {
  content: "";
  display: table;
}
.badge:after,
h2.badge:after {
  clear: both;
}
.badge.badge-red,
h2.badge.badge-red {
  background-color: #c10a27;
}
.update {
  background-color: white;
  border: solid 1px #e4e4e4;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .update {
    border-left: none;
  }
}
.loadmore {
  border: 0;
  background: none;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: 16px;
  font-size: 1rem;
}
.loadmore:before {
  content: '';
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -1px -200px;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0.25em auto;
}
.loadmore:link,
.loadmore:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.loadmore:hover,
.loadmore:focus,
.loadmore:active {
  text-decoration: underline;
}
ul.listing {
  max-width: none;
}
.listing li {
  clear: none;
  /*
    @media only screen and (@bp-min-md) {
        &:nth-child(2n+1) {
            clear: none;
            border-left: none;
        }
        &:nth-child(3n+1) {
            clear: left;
            border-left: 1px solid @keyline;
        }
    } */

}
@media only screen and (min-width: 560px) {
  .listing li:nth-child(2n+1) {
    clear: left;
    border-left: 1px solid #e4e4e4;
  }
}
@media only screen and (min-width: 992px) {
  .listing li:nth-child(2n+1) {
    clear: none;
    border-left: none;
  }
  .listing li:nth-child(4n+1) {
    clear: left;
    border-left: 1px solid #e4e4e4;
  }
}
.text-listing.listing li {
  border-left: 1px solid #e4e4e4;
}
.loadinganimation {
  opacity: 0;
}
.announcement {
  position: relative;
  padding: 20px 20px 40px 20px;
  padding: 1.25rem 1.25rem 2.5rem 1.25rem;
  min-height: 410px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .announcement {
    min-height: 470px;
  }
}
@media only screen and (min-width: 992px) {
  .announcement {
    min-height: 420px;
  }
}
.announcement:after {
  content: '';
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -119px -58px;
  width: 24px;
  height: 26px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.announcement a:link,
.announcement a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.announcement a:hover h3,
.announcement a:focus h3,
.announcement a:active h3 {
  text-decoration: underline;
}
.announcement img {
  border: solid 1px #e4e4e4;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.announcement.investor {
  min-height: 250px;
}
ul.featured-articles {
  max-width: none;
}
ul.featured-articles li:first-child {
  border-left: solid 1px #e4e4e4;
}
ul.featured-articles .announcement {
  min-height: 50px;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
ul.featured-articles .announcement:after {
  display: none;
}
.badge-header {
  color: #c10a27;
  font-family: "Brown-Pro-Regular", sans-serif;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .badge-header {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .badge-header {
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 40px;
    line-height: 2.5rem;
    display: inline-block;
    float: left;
  }
}
@media only screen and (min-width: 1200px) {
  .badge-header {
    font-size: 45px;
    font-size: 2.5rem;
    line-height: 40px;
    line-height: 2.222222222rem;
  }
}
.badge-header a:link,
.badge-header a:visited {
  color: #c10a27;
  text-decoration: none;
}
.badge-header a:hover,
.badge-header a:focus,
.badge-header a:active {
  color: #c10a27;
  text-decoration: underline;
}
.listing-link {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .listing-link {
    display: inline-block;
    float: right;
    padding-bottom: 0;
  }
}
.listing-link a {
  background: white;
  border: solid 1px #e4e4e4;
  text-transform: uppercase;
  position: relative;
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 10px 8px 40px;
  padding: 0.625rem 0.625rem 0.5rem 2.5rem;
}
.listing-link a:link,
.listing-link a:visited {
  color: #6d6e71;
  text-decoration: none;
}
.listing-link a:hover,
.listing-link a:focus,
.listing-link a:active {
  color: #6d6e71;
  text-decoration: underline;
}
.listing-link a:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -263px -63px;
  content: '';
  display: inline-block;
  height: 25px;
  margin-right: 15px;
  overflow: hidden;
  text-indent: 20px;
  width: 25px;
  position: absolute;
  top: 10px;
  left: 10px;
}
article {
  border-top: solid 1px #e4e4e4;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}
article h1,
article h2,
article h3,
article h4,
article p,
article ol,
article ul,
article blockquote {
  max-width: 746px;
  margin: 0 auto;
}
article h1 {
  text-transform: none;
  color: #4b4b4b;
  font-family: "Brown-Pro-Light", sans-serif;
  line-height: 45px;
  line-height: 2.8125rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
article .intro {
  font-family: "Brown-Pro-Regular", sans-serif;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
article img {
  padding: 10px 0px 30px 0px;
  padding: 0.625rem 0rem 1.875rem 0rem;
  margin: 0 auto;
}
.filter-label {
  background-color: #e4e4e4;
  border: solid 1px #e4e4e4;
  display: inline-block;
  float: left;
  min-height: 45px;
  padding: 11px 12px 9px 12px;
  padding: 0.6875rem 0.75rem 0.5625rem 0.75rem;
  border-right: none;
}
.filter.filter-as-title button {
  border-bottom: none;
  color: #c10a27;
  font-family: "Brown-Pro-Regular", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
}
.filter button {
  background: white;
  border: solid 1px #e4e4e4;
  padding: 9px 55px 9px 10px;
  padding: 0.5625rem 3.4375rem 0.5625rem 0.625rem;
  vertical-align: middle;
  min-height: 45px;
  position: relative;
  text-align: left;
}
@media only screen and (min-width: 560px) {
  .filter button {
    min-width: 300px;
  }
}
.filter button:after {
  border-left: solid 1px #e4e4e4;
  content: '';
  display: block;
  float: right;
  width: 45px;
  min-height: 45px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -154px -154px;
  -webkit-transition: 0.25s transform linear;
  -moz-transition: 0.25s transform linear;
  transition: 0.25s transform linear;
}
.filter ul {
  background: white;
  border-left: solid 1px #e4e4e4;
  border-right: solid 1px #e4e4e4;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 560px) {
  .filter ul {
    min-width: 300px;
  }
}
.filter li {
  border-bottom: solid 1px #e4e4e4;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.filter a {
  display: block;
  padding: 5px 10px 5px 10px;
  padding: 0.3125rem 0.625rem 0.3125rem 0.625rem;
}
.filter a:link,
.filter a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.filter a:hover,
.filter a:focus,
.filter a:active {
  text-decoration: underline;
}
.filter #category {
  display: none;
  position: absolute;
  z-index: 1;
}
h1 + .filter {
  margin-top: 2em;
}
@media only screen and (min-width: 560px) {
  .filter-label + button + .categories {
    min-width: 365px;
  }
}
.no-js .filter #category {
  display: block;
  position: relative;
}
.no-js .filter button:after {
  display: none;
}
.event-head {
  *zoom: 1;
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  display: block;
  width: 100%;
}
.event-head:before,
.event-head:after {
  content: "";
  display: table;
}
.event-head:after {
  clear: both;
}
.event-date {
  border: solid 1px #c10a27;
  color: #c10a27;
  display: inline-block;
  float: left;
  min-width: 47px;
  margin-right: 10px;
  position: relative;
  text-align: center;
  width: auto;
}
.event-date:before,
.event-date:after {
  background-color: #ededed;
  border: solid 1px #c10a27;
  content: '';
  display: block;
  height: 9px;
  width: 7px;
  position: absolute;
  top: -5px;
  left: 5px;
}
.event-date:after {
  left: auto;
  right: 5px;
}
.event-date .event-day {
  border-top: solid 1px #c10a27;
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-top: 6px;
  font-family: "Brown-Pro-Regular", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 24px;
  line-height: 1.5rem;
}
.event-date .event-month {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
}
.event-to {
  display: inline-block;
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -63px -214px;
  float: left;
  margin-top: 20px;
  margin-right: 10px;
  width: 24px;
  height: 26px;
}
.event-body {
  padding: 0px 20px 60px 20px;
  padding: 0rem 1.25rem 3.75rem 1.25rem;
  min-height: 250px;
}
.event-foot {
  border-top: solid 1px #e4e4e4;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px 10px 20px;
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  min-height: 46px;
}
/* text-listing */

.text-listing {
  border-top: #e4e4e4 solid 1px;
  list-style-type: none;
  margin: 2em 0;
  padding: 0;
}
.text-listing li {
  border-bottom: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px;
  border-right: #e4e4e4 solid 1px;
  background-color: white;
  padding: 1em 1em;
}
.text-listing a {
  display: block;
}
.text-listing a:link,
.text-listing a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
.text-listing a:hover,
.text-listing a:focus,
.text-listing a:active {
  text-decoration: none;
}
.text-listing a:hover p.summary,
.text-listing a:focus p.summary,
.text-listing a:active p.summary {
  text-decoration: underline;
}
.text-listing a.arrow:hover,
.text-listing a.download:hover,
.text-listing a.arrow:focus,
.text-listing a.download:focus,
.text-listing a.arrow:active,
.text-listing a.download:active {
  text-decoration: underline;
}
.site-index .index {
  margin: 0 0 2em 0;
  padding: 0;
}
.site-index .index > li {
  list-style-type: none;
  border-bottom: solid 1px #e4e4e4;
  padding: 10px 0px 5px 0px;
  padding: 0.625rem 0rem 0.3125rem 0rem;
}
.site-index .index > li:first-child {
  border-top: solid 1px #e4e4e4;
}
.site-index .index span {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.site-index .index ul {
  margin: 0;
  padding: 0;
}
.site-index .index ul > li {
  list-style-type: none;
  margin: 0;
  padding: 0px 0px 5px 0px;
  padding: 0rem 0rem 0.3125rem 0rem;
}
.search {
  background-color: #ededed;
}
.search .form-group {
  display: table;
  width: 100%;
  max-width: 900px;
}
.search .form-group .form-layout {
  display: table-cell;
  vertical-align: top;
}
.search .summary span {
  background-color: #ededed;
}
.search .search-count {
  font-size: 30px;
  font-size: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
.searchcrumb {
  padding: 15px 0px 0px 0px;
  padding: 0.9375rem 0rem 0rem 0rem;
  padding-bottom: 0;
}
.searchcrumb span {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -271px -10px;
  content: '';
  display: inline-block;
  height: 11px;
  margin-right: 5px;
  margin-top: 5px;
  overflow: hidden;
  text-indent: 20px;
  width: 7px;
}
ul.values {
  *zoom: 1;
  list-style-type: none;
  margin: 3em 0 0 0;
  padding: 0;
  max-width: none;
}
ul.values:before,
ul.values:after {
  content: "";
  display: table;
}
ul.values:after {
  clear: both;
}
@media only screen and (min-width: 768px) {
  ul.values {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
}
@media only screen and (min-width: 992px) {
  ul.values {
    margin-left: -21px;
    position: relative;
  }
}
ul.values li {
  margin: 0 0 2em 0;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  ul.values li {
    width: 50%;
    float: left;
  }
  ul.values li:nth-child(odd) {
    clear: left;
  }
}
ul.values h2 {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  ul.values img {
    display: block;
    margin: 0 auto 1em auto;
    margin: 0 0 1em 0;
  }
}
@media only screen and (min-width: 992px) {
  ul.values p {
    max-width: initial;
    padding-right: 2em;
    text-align: left;
  }
}
ul.people {
  border-top: solid 1px #ededed;
  border-left: solid 1px #ededed;
  max-width: none;
}
ul.people > li {
  border-right: solid 1px #ededed;
  border-bottom: solid 1px #ededed;
  padding: 0;
}
ul.people ul,
ul.people ul > li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.people .person-summary img {
  width: 100%;
  border-bottom: solid 1px #ededed;
}
ul.people .person-summary h2 {
  padding: 15px 42px 3px 21px;
  padding: 0.9375rem 2.625rem 0.1875rem 1.3125rem;
}
ul.people .person-summary h3 {
  font-family: "Brown-Pro-Light", sans-serif;
  padding: 0px 42px 10px 21px;
  padding: 0rem 2.625rem 0.625rem 1.3125rem;
}
ul.people .person-summary a {
  position: relative;
  width: 100%;
}
ul.people .person-summary a:after {
  content: '';
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -119px -68px;
  width: 10px;
  height: 16px;
  position: absolute;
  bottom: 16px;
  right: 20px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: transform 0.25s;
  -moz-transition: transform 0.25s;
  transition: transform 0.25s;
}
ul.people .person-summary a:hover:after,
ul.people .person-summary a:focus:after {
  background-position: -170px -68px;
}
ul.people .person-summary a.active:after {
  background-position: -170px -68px;
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
ul.people .person-summary a,
ul.people .person-summary a:link,
ul.people .person-summary a:visited {
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  transition: background-color 0.25s;
  color: #4b4b4b;
  display: block;
  float: left;
  min-height: 375px;
  background-color: white;
  text-decoration: none;
}
ul.people .person-summary a:hover,
ul.people .person-summary a:focus,
ul.people .person-summary a.active,
ul.people .person-summary a.active:link,
ul.people .person-summary a.active:visited {
  background-color: #c10a27;
  text-decoration: none;
}
ul.people .person-summary a:hover h2,
ul.people .person-summary a:focus h2,
ul.people .person-summary a.active h2,
ul.people .person-summary a.active:link h2,
ul.people .person-summary a.active:visited h2,
ul.people .person-summary a:hover h3,
ul.people .person-summary a:focus h3,
ul.people .person-summary a.active h3,
ul.people .person-summary a.active:link h3,
ul.people .person-summary a.active:visited h3 {
  color: white;
}
ul.people .person-bio {
  display: none;
}
ul.people .tilecontent .row {
  padding: 21px 21px 21px 21px;
  padding: 1.3125rem 1.3125rem 1.3125rem 1.3125rem;
  border: solid 1px #c10a27;
  margin-top: -1px;
  position: relative;
}
ul.people .tilecontent .col-xs-12 {
  padding: 21px 21px 21px 21px;
  padding: 1.3125rem 1.3125rem 1.3125rem 1.3125rem;
}
.no-js ul.people .col-sm-6.col-lg-4 {
  width: 100%;
}
.no-js ul.people .person-summary a {
  min-height: 100px;
}
.no-js ul.people .person-summary a:after {
  display: none;
}
.no-js ul.people .person-summary a:hover,
.no-js ul.people .person-summary a:focus {
  cursor: default;
  background-color: transparent;
  color: #4b4b4b;
}
.no-js ul.people .person-summary a:hover h2,
.no-js ul.people .person-summary a:focus h2,
.no-js ul.people .person-summary a:hover h3,
.no-js ul.people .person-summary a:focus h3 {
  color: #4b4b4b;
}
.no-js ul.people .person-summary img {
  width: initial;
}
.no-js ul.people .person-bio {
  background: white;
  display: block;
}
.no-js ul.people .person-bio .col-md-6,
.no-js ul.people .person-bio .col-md-8 {
  width: 100%;
  padding: 21px;
}
@media only screen and (min-width: 992px) {
  .container-compact .row.people {
    margin-left: -21px;
    position: relative;
  }
}
/**/
.showarticleclass {
  *zoom: 1;
  display: block !important;
  width: 100%;
  clear: both;
}
.showarticleclass:before,
.showarticleclass:after {
  content: "";
  display: table;
}
.showarticleclass:after {
  clear: both;
}
.tilecontent {
  background: white;
  list-style-type: none;
  margin: 0;
  padding: 0;
  *zoom: 1;
  display: block !important;
  width: 100%;
  clear: both;
}
.tilecontent:before,
.tilecontent:after {
  content: "";
  display: table;
}
.tilecontent:after {
  clear: both;
}
@media only screen and (min-width: 560px) {
  .tilecontent {
    display: none !important;
  }
  .tilecontent:nth-child(4n+4) {
    *zoom: 1;
    display: block !important;
    width: 100%;
    clear: both;
  }
  .tilecontent:nth-child(4n+4):before,
  .tilecontent:nth-child(4n+4):after {
    content: "";
    display: table;
  }
  .tilecontent:nth-child(4n+4):after {
    clear: both;
  }
}
@media only screen and (min-width: 992px) {
  .tilecontent:nth-child(4n+4) {
    display: none !important;
  }
  .tilecontent:nth-child(6n+6) {
    *zoom: 1;
    display: block !important;
    width: 100%;
    clear: both;
  }
  .tilecontent:nth-child(6n+6):before,
  .tilecontent:nth-child(6n+6):after {
    content: "";
    display: table;
  }
  .tilecontent:nth-child(6n+6):after {
    clear: both;
  }
}
.tilecontent:last-child {
  *zoom: 1;
  display: block !important;
  width: 100%;
  clear: both;
}
.tilecontent:last-child:before,
.tilecontent:last-child:after {
  content: "";
  display: table;
}
.tilecontent:last-child:after {
  clear: both;
}
.tilecontent.heightauto {
  opacity: 0;
}
/* TABS */

.bigtabs {
  background: white;
  border-top: solid 1px #e4e4e4;
  border-left: solid 1px #e4e4e4;
  list-style-type: none;
  padding: 0;
  width: 100%;
  *zoom: 1;
  margin: 0px 0px 40px 0px;
  margin: 0rem 0rem 2.5rem 0rem;
}
.bigtabs:before,
.bigtabs:after {
  content: "";
  display: table;
}
.bigtabs:after {
  clear: both;
}
.bigtabs li {
  border-right: solid 1px #e4e4e4;
  border-bottom: solid 1px #e4e4e4;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .bigtabs li {
    float: left;
    width: 25%;
  }
}
.bigtabs a {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  /* font size */

  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .bigtabs a {
    height: 107px;
  }
}
@media only screen and (min-width: 1200px) {
  .bigtabs a {
    height: auto;
  }
}
.bigtabs a:link,
.bigtabs a:visited {
  font-family: "Brown-Pro-Regular", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  padding: 30px 10px 29px 28px;
  padding: 1.875rem 0.625rem 1.8125rem 1.75rem;
}
@media only screen and (min-width: 992px) {
  .bigtabs a:link,
  .bigtabs a:visited {
    padding: 30px 20px 29px 38px;
    padding: 1.875rem 1.25rem 1.8125rem 2.375rem;
  }
}
.bigtabs a:hover,
.bigtabs a:focus,
.bigtabs a:active {
  background: #c10a27;
  color: white;
  text-decoration: none;
}
.bigtabs a:hover:before,
.bigtabs a:focus:before,
.bigtabs a:active:before {
  background-position: -170px -68px;
}
.bigtabs a.lit:link,
.bigtabs a.lit:visited {
  background: #c10a27;
  color: white;
  text-decoration: none;
}
.bigtabs a.lit:before {
  background-position: -170px -68px;
}
.bigtabs a:before {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -119px -68px;
  content: '';
  height: 15px;
  width: 18px;
  position: absolute;
  top: 33px;
  left: 10px;
}
@media only screen and (min-width: 992px) {
  .bigtabs a:before {
    left: 20px;
  }
}
.operations .hero h1 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.operations .hero h1.focusable:active,
.operations .hero h1.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.operations .hero p {
  display: none;
}
@media only screen and (min-width: 992px) {
  .operations main {
    padding-top: 141px;
    padding-top: 8.8125rem;
  }
}
.operations main .row {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .operations .col-xs-12.col-md-4 {
    padding-right: 0;
  }
}
.operations .col-xs-12.col-md-4 img {
  padding-bottom: 1em;
}
.hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 430px;
}
.callout {
  padding-bottom: 2.5em;
}
.callout:nth-child(2n+1) {
  clear: left;
}
@media only screen and (min-width: 992px) {
  .callout:nth-child(2n+1) {
    padding-bottom: 0;
    clear: none;
  }
}
.bottom-space {
  padding-bottom: 2.5em;
}
/* HOMEPAGE */

.homepagehero {
  height: auto;
}
@media only screen and (min-width: 768px) {
  .homepagehero {
    height: 620px;
    position: relative;
  }
}
.homepagehero .panelwrapper {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 1000;
  background-color: white;
}
@media only screen and (min-width: 768px) {
  .homepagehero .panelwrapper {
    background-color: transparent;
    margin-bottom: -620px;
  }
}
@media only screen and (min-width: 1200px) {
  .homepagehero .panelwrapper:before {
    content: '';
    display: block;
    height: 620px;
    position: absolute;
    top: 0;
    left: -435px;
    width: 435px;
    background-image: url('../images/home-hero-before.png');
    background-position: top right;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 992px) {
  .homepagehero .panelwrapper:before {
    background-image: url('../images/home-hero-lg-before.png');
    left: -237px;
    width: 237px;
  }
}
.homepagehero .panel {
  padding: 2em 0;
  text-align: center;
}
.homepagehero .panel h1,
.homepagehero .panel p {
  padding-left: 21px;
  padding-right: 21px;
}
@media only screen and (min-width: 768px) {
  .homepagehero .panel {
    background-image: url('../images/home-hero.png');
    background-position: top right;
    background-repeat: no-repeat;
    max-width: 465px;
    min-height: 620px;
    padding: 0;
    text-align: left;
  }
  .homepagehero .panel h1,
  .homepagehero .panel p {
    max-width: 360px;
    padding-left: 42px;
  }
  .homepagehero .panel h1 {
    padding-top: 150px;
    max-width: 400px;
  }
}
@media only screen and (min-width: 992px) {
  .homepagehero .panel {
    background-image: url('../images/home-hero-lg.png');
    background-position: top left;
    max-width: 660px;
  }
}
@media only screen and (min-width: 768px) {
  .home .hotspot1 {
    background-image: url('/~/media/Images/Essentra-plc/locations/map_locations_mini.jpg');
    background-position: 10% 95%;
    background-repeat: no-repeat;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 1200px) {
  .home .hotspot3 {
    background-image: url('/~/media/Images/essentra-plc/about-us/principles/our_principles_promo.jpg');
    background-position: 100% 20%;
    background-repeat: no-repeat;
    padding-right: 180px;
  }
}
.no-js .slides > .slides:not(:first-child) {
  display: none;
}
/* INVESTOR HOMEPAGE */

.investorshero {
  height: 500px;
  margin-bottom: 73px;
}
.investorsintro {
  color: white;
  margin: 0 auto;
  max-width: 590px;
  height: 547px;
  background-image: url('../images/investor-hero.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  text-align: center;
}
.investorsintro h1,
.investorsintro p {
  color: white;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.investorsintro p {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
}
.investorsintro h1 {
  padding-top: 150px;
}
/* MODULES */

.whiteblocks {
  border-left: solid 1px #e4e4e4;
  border-top: solid 1px #e4e4e4;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.whiteblocks > li {
  background-color: white;
  border-right: solid 1px #e4e4e4;
  border-bottom: solid 1px #e4e4e4;
}
@media only screen and (min-width: 768px) {
  .whiteblocks > li {
    min-height: 390px;
  }
}
@media only screen and (min-width: 992px) {
  .whiteblocks > li {
    min-height: 350px;
  }
}
.container-compact .whiteblocks > li[class^=col-] {
  padding: 21px 21px 21px 21px;
  padding: 1.3125rem 1.3125rem 1.3125rem 1.3125rem;
}
/* SHARE PRICE */

.shareprice {
  color: #4b4b4b;
  font-family: "Brown-Pro-Regular", sans-serif;
  line-height: 1;
  font-size: 60px;
  font-size: 3.75rem;
}
@media only screen and (min-width: 1200px) {
  .shareprice {
    font-size: 90px;
    font-size: 5.625rem;
    line-height: 80px;
    line-height: 5rem;
  }
}
.sharepriceextra {
  font-family: "Brown-Pro-Regular", sans-serif;
}
.neg {
  color: #c10a27;
}
.pos {
  color: #009245;
}
@media only screen and (min-width: 992px) {
  .sharepricemodule {
    background-image: url('../images/module-share-price.gif');
    background-position: 0 137px;
    background-repeat: no-repeat;
  }
  .sharepricemodule .relatedlinks {
    padding-top: 50px;
    padding-top: 3.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .sharepricemodule {
    background-position: 0 155px;
  }
  .sharepricemodule .relatedlinks {
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}
/* REPORT */

.reportmodule {
  background-position: bottom right;
  background-repeat: no-repeat;
  min-height: 375px;
}
/* NEWS */

a.newslink {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
a.newslink strong {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  *zoom: 1;
}
a.newslink strong:before,
a.newslink strong:after {
  content: "";
  display: table;
}
a.newslink strong:after {
  clear: both;
}
a.newslink:link,
a.newslink:visited {
  color: #4b4b4b;
  text-decoration: none;
}
a.newslink:hover,
a.newslink:focus {
  text-decoration: none;
}
a.newslink:hover strong,
a.newslink:focus strong {
  text-decoration: underline;
}
.timeline {
  list-style-type: none;
  padding: 0;
  margin: 50px 0 0 0;
  position: relative;
  /* dashed line */

  /* year */

  /* image */

  /* list for year */

}
@media only screen and (min-width: 768px) {
  .timeline {
    margin: 50px 0 0 288px;
  }
}
@media only screen and (min-width: 1200px) {
  .timeline {
    margin-left: 345px;
  }
}
.timeline > li {
  margin: 35px 0 0 0;
  padding: 0;
  position: relative;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 100px;
  left: 43px;
  width: 1px;
  border-left: dashed 1px #c10a27;
  z-index: 1;
}
.timeline .period {
  border: solid 4px #9b0056;
  background-color: white;
  border-radius: 50%;
  color: #c10a27;
  display: table-cell;
  font-family: "Brown-Pro-Regular", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  width: 86px;
  height: 86px;
  text-align: center;
  vertical-align: middle;
  z-index: 2;
  position: relative;
}
.timeline .supporting {
  position: absolute;
  top: -40px;
  left: 65px;
}
@media only screen and (min-width: 768px) {
  .timeline .supporting {
    top: -19px;
    left: -97px;
  }
}
@media only screen and (min-width: 768px) {
  .timeline > li:nth-child(even) .supporting {
    left: 57px;
  }
}
.timeline ul {
  list-style-type: none;
  margin: 0 0 60px 67px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .timeline ul {
    margin-bottom: 20px;
  }
  .timeline ul li {
    max-width: 280px;
    margin-top: -30px;
    min-height: 120px;
    position: relative;
    /* small circle */
  
  }
  .timeline ul li:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    border: solid 3px #9b0056;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    z-index: 3;
  }
  .timeline ul li:first-child {
    margin-top: -90px;
    min-height: 150px;
  }
  .timeline ul li:first-child:before {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .timeline ul li {
    max-width: 340px;
  }
}
@media only screen and (min-width: 768px) {
  .timeline li:nth-child(odd) li:nth-child(even) {
    text-align: right;
    margin-left: -360px;
  }
  .timeline li:nth-child(odd) li:nth-child(even):before {
    right: -70px;
  }
  .timeline li:nth-child(odd) li:nth-child(odd) {
    margin-left: 30px;
  }
  .timeline li:nth-child(odd) li:nth-child(odd):before {
    left: -68px;
  }
  .timeline li:nth-child(even) li:nth-child(even) {
    margin-left: 30px;
  }
  .timeline li:nth-child(even) li:nth-child(even):before {
    left: -68px;
  }
  .timeline li:nth-child(even) li:nth-child(odd) {
    text-align: right;
    margin-left: -360px;
  }
  .timeline li:nth-child(even) li:nth-child(odd):before {
    right: -70px;
  }
}
@media only screen and (min-width: 1200px) {
  .timeline li:nth-child(odd) li:nth-child(even) {
    margin-left: -420px;
  }
  .timeline li:nth-child(even) li:nth-child(odd) {
    margin-left: -420px;
  }
}
.about-us .band-white.band-padding {
  background: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 1em;
}
.about-us .band-white.band-padding .centeredblock {
  max-width: initial;
  text-align: left;
}
.about-us .band-white.band-padding .row > div {
  padding-left: 0;
}
.filter-label {
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  float: left;
  padding: 10px 20px 0px 0px;
  padding: 0.625rem 1.25rem 0rem 0rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .filter-label {
    margin-top: -20px;
    margin-top: -1.25rem;
  }
}
.cal-filter button,
.cal-filter ul {
  min-width: 150px;
}
@media only screen and (min-width: 768px) {
  .cal-filter {
    float: left;
    position: relative;
    margin-top: -20px;
    margin-top: -1.25rem;
  }
}
.events td,
.events th {
  border-color: #939598 !important;
  padding-left: 0;
}
.events h2 {
  padding-bottom: 0;
}
.events .eventdate {
  padding-top: 17px;
  padding-top: 1.0625rem;
}
.events .eventtitle {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .events .eventtitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.events .download {
  text-align: center;
  vertical-align: middle;
}
a.calendar {
  background-image: url('../images/icons-site.svg');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: -263px -213px;
  height: 23px;
  width: 20px;
  display: inline-block;
  overflow: hidden;
  text-indent: 30px;
}
a.calendar:link,
a.calendar:visited,
a.calendar:hover,
a.calendar:focus,
a.calendar:active {
  text-decoration: none;
}
.octagon-row {
  padding-bottom: 15px;
}
.octagon {
  width: 50px;
  height: 50px;
  background: #c10a27;
  position: relative;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 0;
  font-size: 25px;
}
.octagon:before,
.octagon:after {
  border-left: 15px solid #ededed;
  border-right: 15px solid #ededed;
  width: 20px;
}
.octagon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 15px solid #c10a27;
  height: 0;
}
.octagon:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 15px solid #c10a27;
  height: 0;
}
.octagon--red {
  background: red;
}
.octagon--red:before {
  border-bottom: 15px solid red;
}
.octagon--red:after {
  border-top: 15px solid red;
}
.octagon--purple {
  background: purple;
}
.octagon--purple:before {
  border-bottom: 15px solid purple;
}
.octagon--purple:after {
  border-top: 15px solid purple;
}
@media print {
  .global-header form,
  .global-header .mobilenav,
  .global-header .mainnavwrapper {
    display: none !important;
  }
  .footer-linkage,
  .footer-other,
  .jumplinkwrapper,
  .homepagehero .slides,
  .no-print,
  #cookiebanner,
  p.linkedin {
    display: none !important;
  }
  ul.people .person-summary img {
    width: auto;
  }
  .pagecontent > .row > .col-xs-12.col-lg-9 {
    padding: 0 !important;
    width: 100% !important;
  }
  .pagecontent > .row > .col-xs-12.col-lg-9 table {
    max-width: auto !important;
    width: 85% !important;
  }
}
