@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/*! 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: 600;
}

/**
 * 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: #ff0;
  color: #000;
}

/**
 * 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],
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 #c0c0c0;
  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: 600;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, p {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://s.aolcdn.com/membership/omp-static/fonts/opensans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://s.aolcdn.com/membership/omp-static/fonts/opensans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://s.aolcdn.com/membership/omp-static/fonts/opensans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://s.aolcdn.com/membership/omp-static/fonts/opensans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://s.aolcdn.com/membership/omp-static/fonts/opensans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "AolHelpIcons";
  src: url("../fonts/AolHelpIcons.eot?3");
  src: url("../fonts/AolHelpIcons.eot?#iefix-3") format("embedded-opentype"), url("../fonts/AolHelpIcons.woff?3") format("woff"), url("../fonts/AolHelpIcons.ttf?3") format("truetype"), url("../fonts/AolHelpIcons.svg?3#AolHelpIcons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ah-icon {
  font-family: "AolHelpIcons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-alert:before {
  content: "\e600";
}

.icon-assist:before {
  content: "\e61f";
}

.icon-back-arrow:before {
  content: "\e618";
}

.icon-call:before {
  content: "\e602";
}

.icon-chat:before {
  content: "\e603";
}

.icon-close:before {
  content: "\e604";
}

.icon-cta-arrow:before {
  content: "\e605";
}

.icon-download:before {
  content: "\e606";
}

.icon-dropdown-collapsed:before {
  content: "\e61c";
}

.icon-dropdown-expanded:before {
  content: "\e61d";
}

.icon-email:before {
  content: "\e607";
}

.icon-hamburger:before {
  content: "\e601";
}

.icon-images-off:before {
  content: "\e608";
}

.icon-images-on:before {
  content: "\e609";
}

.icon-open:before {
  content: "\e60a";
}

.icon-pagination-first:before {
  content: "\e60b";
}

.icon-pagination-last:before {
  content: "\e60c";
}

.icon-pagination-left:before {
  content: "\e60d";
}

.icon-pagination-right:before {
  content: "\e60e";
}

.icon-plans:before {
  content: "\e620";
}

.icon-premium:before {
  content: "\e60f";
}

.icon-print:before {
  content: "\e610";
}

.icon-products:before {
  content: "\e611";
}

.icon-search:before {
  content: "\e612";
}

.icon-share:before {
  content: "\e613";
}

.icon-shortcuts:before {
  content: "\e614";
}

.icon-support:before {
  content: "\e615";
}

.icon-text-size:before {
  content: "\e616";
}

.icon-thumb:before {
  content: "\e617";
}

.icon-timestamp:before {
  content: "\e619";
}

.icon-triangle-left:before {
  content: "\e61b";
}

.icon-triangle-right:before {
  content: "\e61e";
}

.icon-upgrade:before {
  content: "\e61a";
}

.swipeable.initialized {
  overflow: hidden;
  visibility: hidden;
  position: relative;
}
.swipeable.initialized .swipe-wrap {
  overflow: hidden;
  position: relative;
}
.swipeable.initialized .swipe-wrap > div,
.swipeable.initialized .swipe-wrap > li {
  float: left;
  width: 100%;
  position: relative;
}
.swipeable.initialized + .swipe-position {
  height: 40px;
  font-size: 45px;
  line-height: 40px;
  color: #B8BFC9;
  text-align: center;
}
.swipeable.initialized + .swipe-position span {
  margin: 0 3px;
  color: #2C2C2C;
  opacity: 0.25;
  filter: alpha(opacity=25);
}
.swipeable.initialized + .swipe-position .active {
  opacity: 1;
  filter: alpha(opacity=100);
}

#alerts {
  display: none;
  padding: 10px 23px 10px 10px;
  background-color: #E100E1;
  color: #FFF;
  position: relative;
}
#alerts .alerts-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
#alerts .alerts-close a {
  text-decoration: none;
  color: #fff;
}
#alerts a {
  text-decoration: underline;
  color: #fff;
}

/* OATH FOOTER CONTAINER */
.oath-footer {
  display: block;
  float: none;
  clear: both;
  padding-top: 16px;
  padding-bottom: 16px;
}

.oath-footer:after {
  content: "";
  display: table;
  clear: both;
}

.oath-footer--left {
  text-align: left;
}

.oath-footer--right {
  text-align: right;
}

.oath-footer--centered {
  text-align: center;
}

.oath-footer--centered .oath-logo-svg {
  margin-left: auto;
  margin-right: auto;
}

.oath-footer-link {
  display: inline-block;
}

/* OATH FOOTER LOGO */
.oath-logo-svg {
  display: block;
  height: 26px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* OATH FOOTER TEXT */
.oath-logo-svg-text {
  fill: #fff;
}

/* OATH FOOTER COLON */
.oath-logo-svg-mark {
  fill: #fff;
}

@media (min-width: 745px) {
  .search-banner-mobile-container {
    display: none;
  }
}
html {
  font-size: 16px;
}

body {
  background: #1C1E22;
  color: #2C2C2C;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
}

header {
  z-index: 102;
}

main {
  width: 100%;
  background: #FFF;
}

section::after {
  clear: both;
  content: "";
  display: table;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 600;
}

h3 a {
  color: inherit;
  text-decoration: none;
}

footer {
  color: #EDEDED;
}

.main-navigation {
  z-index: 98;
}
.main-navigation .header-panel {
  z-index: 101;
}
.main-navigation .header-panel a {
  text-decoration: none;
  white-space: nowrap;
}
.main-navigation .header-panel .signed-in {
  display: none;
}
.main-navigation .header-panel.is-signed-in .signed-out {
  display: none;
}
.main-navigation .header-panel.is-signed-in .signed-in {
  display: block;
}
.main-navigation .header-panel.is-signed-in img.signed-in {
  display: inline;
}
.main-navigation .header-panel .profile-thumbnail {
  height: 22px;
  width: 22px;
  border-radius: 11px;
  vertical-align: middle;
}
.main-navigation .main-panel {
  position: relative;
  z-index: 102;
  background: #25282E;
}
.main-navigation .main-panel ul a {
  display: block;
  border-bottom: 1px solid #121417;
  color: #888D99;
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.main-navigation .main-panel .ah-icon {
  color: #FFF;
  font-size: 28px;
}
.main-navigation .main-panel .ah-icon img {
  height: 25px;
}
.main-navigation .sub-panel {
  z-index: 99;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  outline: none;
}
.main-navigation .sub-panel h2 {
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.main-navigation .sub-panel li > a {
  display: block;
  color: #DEE1EE;
  text-decoration: none;
}
.main-navigation .sub-panel li > div p {
  margin: 0.5em 0;
}
.main-navigation .sub-panel li > div .support-number {
  color: #00A8FF;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
}
.main-navigation .sub-panel li > div .wait-time {
  font-size: 0.75rem;
}
.main-navigation .sub-panel li > div .wait-time span {
  font-weight: 600;
}
.main-navigation .sub-panel .upgrade-notification {
  margin-top: 35px;
  font-weight: 600;
}
.main-navigation .sub-panel .upgrade-notification span {
  color: #00A8FF;
}
.main-navigation .sub-panel .cta {
  margin-top: 40px;
}
.main-navigation .sub-panel .more-link {
  display: inline-block;
  margin-top: 40px;
  color: #DEE1EE;
}

.main-guttered-row {
  margin: 0 auto;
  max-width: 1000px;
}

.pagination .ah-icon {
  font-size: 18px;
}

.footer-navigation {
  background: #191B1F;
}
.footer-navigation li {
  margin: 15px 0;
  font-size: 0.8125rem;
}
.footer-navigation li img {
  width: 24px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 2px;
}
.footer-navigation a {
  color: #EDEDED;
  text-decoration: none;
}
.footer-navigation p {
  line-height: 1.5em;
}
.footer-navigation form {
  position: relative;
}
.footer-navigation input {
  height: 40px;
  width: 100%;
  margin-top: 25px;
  padding: 0 50px 0 15px;
  background: #25282E;
  border: none;
  font-size: 0.875rem;
  font-style: italic;
}
.footer-navigation .sign-up-button {
  display: block;
  position: absolute;
  bottom: 2px;
  right: 2px;
  height: 36px;
  width: 36px;
  background: #00A8FF;
  color: #FFF;
  text-align: center;
}
.footer-navigation .sign-up-button .icon-cta-arrow {
  font-size: 30px;
  line-height: 36px;
}

.footer {
  background: #000;
  font-size: 0.8125rem;
}
.footer .social-share a {
  display: inline-block;
}

.logo a {
  color: #FFF;
  text-decoration: none;
}

.breadcrumbs a,
.breadcrumbs span {
  color: #2C2C2C;
  font-size: 0.75rem;
  font-weight: 600;
}
.breadcrumbs a {
  margin-right: 4px;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #00A8FF;
}
.breadcrumbs .icon-triangle-right {
  margin-left: 6px;
  margin-right: 9px;
  font-size: 0.625rem;
  font-weight: normal;
  line-height: 0;
}

.ah-icon {
  vertical-align: middle;
}

.cta {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  border: 2px solid #FFF;
  color: #FFF;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}
.cta.primary {
  background: #FFF;
  color: #2C2C2C;
}
.cta:hover {
  background: #FFF;
  color: #00A8FF;
}
.cta .ah-icon {
  margin-left: -8px;
  margin-right: 4px;
  font-size: 30px;
}
.cta .icon-cta-arrow {
  margin-left: -6px;
  margin-right: -10px;
  font-size: 225%;
  line-height: 1px;
}

.more-link {
  color: #2C2C2C;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}
.more-link:hover {
  color: #00A8FF;
}
.more-link .icon-cta-arrow {
  margin-left: -5px;
  color: #00A8FF;
  font-size: 225%;
  line-height: 1px;
}

.submit {
  text-decoration: none;
}

.icon-thumb {
  vertical-align: baseline;
  color: #FBCF00;
  line-height: 1px;
}

.hidden {
  display: none;
}

.screen-reader {
  position: absolute;
  left: -9999px;
}

@media (min-width: 745px) {
  header {
    display: none;
  }

  main {
    border-top: 70px solid #F6F9FF;
  }
  main section {
    padding: 30px 40px 40px 40px;
  }
  main section h1 {
    margin-bottom: 40px;
  }

  footer section {
    padding: 0 40px;
  }

  h1 {
    font-size: 2.375rem;
    line-height: 2.375rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.375rem;
    font-weight: normal;
  }

  h3 {
    font-size: 1.375rem;
    line-height: 1.6875rem;
  }

  h4 {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }

  h5 {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  h6 {
    font-size: 0.8125rem;
    line-height: 0.9375rem;
  }

  .search-bar form {
    position: relative;
  }
  .search-bar input {
    height: 70px;
    width: 100%;
    padding: 0 70px 0 35px;
    background: transparent;
    border: none;
    color: #2C2C2C;
    font-size: 1.125rem;
  }
  .search-bar input:focus {
    outline: none;
  }
  .search-bar a.icon-search-wrap {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 20px 0 15px;
    color: #2C2C2C;
  }
  .search-bar a.icon-search-wrap .icon-search {
    font-size: 28px;
    line-height: 70px;
  }
  .search-bar.search-hover input, .search-bar.search-active input {
    color: #00A8FF;
  }
  .search-bar.search-hover .icon-search, .search-bar.search-active .icon-search {
    color: #00A8FF;
  }

  .mobile-search-bar {
    display: none;
  }

  .main-navigation {
    width: 100%;
  }
  .main-navigation .header-panel {
    position: absolute;
    top: 0;
    left: 0;
  }
  .main-navigation .header-panel.sticky {
    position: fixed;
  }
  .main-navigation .header-panel .header-content {
    display: table;
    height: 70px;
    width: 100%;
    background: #F6F9FF;
  }
  .main-navigation .header-panel .search-bar {
    width: 50%;
    display: table-cell;
    background: #ECF1FC;
  }
  .main-navigation .header-panel .search-bar a.cta {
    display: none;
  }
  .main-navigation .header-panel .navigation-utility-links {
    display: inline-block;
  }
  .main-navigation .header-panel .navigation-utility-links li {
    display: inline-block;
    padding-left: 8px;
  }
  .main-navigation .header-panel .navigation-utility-links a {
    display: inline-block;
    padding: 0 10px;
    height: 68px;
    line-height: 70px;
    color: #2C2C2C;
    font-size: 0.8125rem;
  }
  .main-navigation .header-panel .navigation-utility-links a:hover,
.main-navigation .header-panel .navigation-utility-links .current {
    color: #00A8FF;
  }
  .main-navigation .header-panel .navigation-utility-links .account-menu-opener {
    padding: 0 20px 0 70px;
  }
  .main-navigation .header-panel .account-menu {
    display: none;
    position: absolute;
    top: 65px;
    right: 30px;
    background: #F6F9FF;
    font-size: 0.8125rem;
  }
  .main-navigation .header-panel .account-menu span,
.main-navigation .header-panel .account-menu a {
    display: block;
    margin: 25px 0;
    padding: 1px 32px 1px 27px;
  }
  .main-navigation .header-panel .account-menu span {
    color: #00A8FF;
  }
  .main-navigation .header-panel .account-menu a {
    color: #2C2C2C;
    text-decoration: none;
  }
  .main-navigation .header-panel .account-menu.expanded {
    display: block;
  }
  .main-navigation .header-panel ul {
    white-space: nowrap;
  }
  .main-navigation .main-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
  }
  .main-navigation .main-panel ul a {
    padding: 20px 15px;
    text-align: center;
  }
  .main-navigation .main-panel ul a.active {
    background-color: #1C1E22;
    color: #2CB7FF;
  }
  .main-navigation .main-panel ul a.active .ah-icon {
    color: #00A8FF;
  }
  .main-navigation .main-panel .ah-icon {
    display: block;
    margin-bottom: 10px;
  }
  .main-navigation .main-panel .logo {
    position: relative;
    display: block;
    height: 70px;
    width: 100px;
    background: #00A8FF;
    text-align: center;
    overflow: hidden;
  }
  .main-navigation .main-panel .logo a {
    display: block;
    height: 70px;
    width: 100px;
  }
  .main-navigation .main-panel .logo span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 24px;
    line-height: 70px;
  }
  .main-navigation .main-panel .logo .aol-logo-vector {
    top: 0;
    -webkit-transition: top 0.25s ease-in-out;
    -moz-transition: top 0.25s ease-in-out;
    transition: top 0.25s ease-in-out;
  }
  .main-navigation .main-panel .logo .help-logo-vector {
    top: 50px;
    -webkit-transition: top 0.25s ease-in-out;
    -moz-transition: top 0.25s ease-in-out;
    transition: top 0.25s ease-in-out;
    color: #FFF;
  }
  .main-navigation .main-panel .logo:hover .aol-logo-vector {
    top: -50px;
  }
  .main-navigation .main-panel .logo:hover .help-logo-vector {
    top: 0;
  }
  .main-navigation .sub-panel {
    position: fixed;
    top: 0;
    left: -150px;
    height: 100%;
    width: 250px;
    background: #1C1E22;
    color: #DEE1EE;
  }
  .main-navigation .sub-panel.scrolling {
    position: absolute;
  }
  .main-navigation .sub-panel section {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 17px 30px 30px 30px;
  }
  .main-navigation .sub-panel h2 {
    margin-bottom: 36px;
  }
  .main-navigation .sub-panel ul {
    border-top: 1px solid #2E333A;
  }
  .main-navigation .sub-panel li {
    border-bottom: 1px solid #2E333A;
  }
  .main-navigation .sub-panel li > a {
    padding: 25px 0;
  }
  .main-navigation .sub-panel li > div {
    margin: 25px 0;
  }
  .main-navigation .sub-panel a:hover {
    color: #00A8FF;
  }
  .main-navigation .sub-panel .back-button {
    display: none;
  }
  .main-navigation.expanded .main-panel i {
    color: #888D99;
  }

  .page-offset-wrapper {
    width: 100%;
  }
  .page-offset-wrapper .offsetable {
    margin-left: 100px;
  }

  .section-inset {
    margin-left: 9%;
    margin-right: 9%;
  }

  .railed-content {
    display: block;
  }
  .railed-content::after {
    clear: both;
    content: "";
    display: table;
  }
  .railed-content .railed-main {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 65.8807828007%;
  }
  .railed-content .railed-main:last-child {
    margin-right: 0;
  }
  .railed-content .railed-rail {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 23.2317613015%;
    margin-left: 8.5298042998%;
  }
  .railed-content .railed-rail:last-child {
    margin-right: 0;
  }
  .railed-content .railed-rail .rail-products,
.railed-content .railed-rail .rail-links {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #EEF1F5;
  }
  .railed-content .railed-rail .rail-products h4,
.railed-content .railed-rail .rail-links h4 {
    color: #9299A8;
  }
  .railed-content .railed-rail .rail-products a,
.railed-content .railed-rail .rail-links a {
    color: #2C2C2C;
    text-decoration: none;
  }
  .railed-content .railed-rail .rail-products img,
.railed-content .railed-rail .rail-links img {
    height: 35px;
    width: 35px;
    margin-right: 14px;
    vertical-align: middle;
  }
  .railed-content .railed-rail .rail-products ul {
    margin-top: 1.75em;
  }
  .railed-content .railed-rail .rail-products li {
    margin: 1.25em 0;
  }
  .railed-content .railed-rail .rail-links li {
    margin: 1.75em 0;
  }

  .options-dropdown .options-label {
    display: none;
  }

  .pagination a,
.pagination .current,
.pagination .ellipses {
    display: inline-block;
    margin-left: 8px;
    height: 30px;
    width: 30px;
    background: #EDF1FD;
    font-size: 0.875rem;
    line-height: 30px;
    color: #2C2C2C;
    text-align: center;
    text-decoration: none;
  }
  .pagination .label {
    display: inline-block;
    margin-right: 8px;
    height: 30px;
    font-size: 0.875rem;
    line-height: 30px;
  }
  .pagination .arrow {
    color: #9299A8;
  }
  .pagination .current {
    background: #25282E;
    color: #FFF;
  }
  .pagination .ellipses {
    width: 17px;
    background: transparent;
  }
  .pagination .mobile-label {
    display: none;
  }

  .footer-navigation {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-navigation h4 {
    margin-bottom: 25px;
  }
  .footer-navigation > div {
    display: block;
  }
  .footer-navigation > div::after {
    clear: both;
    content: "";
    display: table;
  }
  .footer-navigation a:hover {
    color: #00A8FF;
  }
  .footer-navigation .footer-column {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .footer-navigation .footer-column:last-child {
    margin-right: 0;
  }

  .footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer .main-guttered-row {
    position: relative;
  }
  .footer .aol-logo-vector {
    margin-right: 15px;
    font-size: 19px;
  }
  .footer .social-share {
    position: absolute;
    top: -4px;
    right: 0;
    width: 31.76%;
  }
  .footer .social-share a {
    margin-right: 12px;
  }
  .footer .social-share a img {
    height: 30px;
    width: 31px;
  }

  .desktop-hidden {
    display: none !important;
  }
}
@media (min-width: 745px) and (max-height: 725px), (min-width: 745px) and (max-width: 1050px) {
  .main-navigation .main-panel ul a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .main-navigation .main-panel .ah-icon {
    font-size: 25px;
  }
  .main-navigation .sub-panel li > div {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .main-navigation .sub-panel li > a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 745px) and (max-width: 1050px) {
  .main-navigation .main-panel {
    width: 85px;
  }
  .main-navigation .main-panel ul a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.625rem;
  }
  .main-navigation .main-panel .logo {
    width: 85px;
  }
  .main-navigation .main-panel .logo a {
    width: 85px;
  }
  .main-navigation .main-panel .logo span {
    font-size: 22px;
  }
  .main-navigation .sub-panel {
    left: -165px;
  }

  .page-offset-wrapper .offsetable {
    margin-left: 85px;
  }
}
@media (max-width: 744px) {
  body {
    background: #FFF url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='1'><rect x='0' y='0' width='250' height='1' fill='#1C1E22'/></svg>") repeat-y 0 0;
  }

  header a {
    color: #888D99;
    text-decoration: none;
  }
  header a.active {
    color: #00A8FF;
  }
  header .header-buttons {
    position: relative;
    height: 60px;
    width: 100%;
    background: #25282E;
  }
  header .open-menu {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  header .open-search {
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  header .ah-icon {
    font-size: 24px;
    line-height: 60px;
  }
  header .logo {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -61px;
  }
  header .logo a {
    display: inline-block;
    padding: 0 20px;
  }
  header .aol-logo-vector,
header .help-logo-vector {
    font-size: 16px;
    line-height: 60px;
  }
  header.search-active .mobile-search-bar {
    display: block;
  }
  header.search-active .icon-search {
    color: #00A8FF;
  }

  main section {
    padding: 25px 20px;
  }
  main section h1 {
    margin-bottom: 25px;
  }

  h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  h2 {
    font-size: 1.5625rem;
    line-height: 2rem;
    font-weight: normal;
  }

  h3 {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }

  h4 {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }

  h5 {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  h6 {
    font-size: 0.8125rem;
    line-height: 0.9375rem;
  }

  .search-bar {
    display: none;
  }

  .mobile-search-bar {
    display: none;
    background: #1C1E22;
  }
  .mobile-search-bar a {
    display: none;
  }
  .mobile-search-bar input {
    height: 60px;
    width: 100%;
    padding: 0 20px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1rem;
  }

  .main-navigation {
    position: absolute;
    top: 0;
    left: -250px;
    width: 250px;
  }
  .main-navigation .header-panel {
    position: relative;
  }
  .main-navigation .header-panel ul {
    margin-top: 10px;
  }
  .main-navigation .header-panel a {
    display: block;
    padding: 1em 15px 1em 20px;
    color: #DEE1EE;
    font-size: 0.875rem;
  }
  .main-navigation .header-panel .account-menu {
    display: none;
  }
  .main-navigation .main-panel ul a {
    height: 60px;
    line-height: 60px;
    padding-right: 15px;
  }
  .main-navigation .main-panel .ah-icon {
    display: inline-block;
    width: 65px;
    text-align: center;
  }
  .main-navigation .main-panel .logo {
    height: 60px;
    background: #1C1E22;
  }
  .main-navigation .main-panel .logo a {
    display: inline-block;
    padding: 0 20px;
  }
  .main-navigation .main-panel .aol-logo-vector,
.main-navigation .main-panel .help-logo-vector {
    font-size: 16px;
    line-height: 60px;
  }
  .main-navigation .sub-panel {
    position: absolute;
    top: 0;
    left: -250px;
    z-index: 103;
    height: 100%;
    width: 100%;
    background: #25282E;
    color: #DEE1EE;
  }
  .main-navigation .sub-panel section {
    padding: 0 20px;
  }
  .main-navigation .sub-panel h2 {
    height: 60px;
    margin: 0 -20px 20px -20px;
    padding: 0 20px;
    background: #1C1E22;
    font-size: 1.25rem;
    line-height: 60px;
  }
  .main-navigation .sub-panel ul {
    margin-top: -20px;
  }
  .main-navigation .sub-panel li {
    margin: 0 -20px;
    border-bottom: 1px solid #121417;
  }
  .main-navigation .sub-panel li > a {
    padding: 20px;
  }
  .main-navigation .sub-panel li > div {
    padding: 20px;
  }
  .main-navigation .sub-panel .back-button {
    position: absolute;
    top: 18px;
    right: 19px;
    color: #00A8FF;
    font-size: 1.5rem;
    line-height: 0;
    text-decoration: none;
  }
  .main-navigation .profile-thumbnail {
    float: right;
    margin-top: -3px;
  }

  .railed-content .railed-rail .rail-products,
.railed-content .railed-rail .rail-links {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #EEF1F5;
  }
  .railed-content .railed-rail .rail-products h4,
.railed-content .railed-rail .rail-links h4 {
    color: #9299A8;
  }
  .railed-content .railed-rail .rail-products a,
.railed-content .railed-rail .rail-links a {
    color: #2C2C2C;
    text-decoration: none;
  }
  .railed-content .railed-rail .rail-products ul {
    margin-top: 1.75em;
  }
  .railed-content .railed-rail .rail-products li {
    margin: 1.25em 0;
  }
  .railed-content .railed-rail .rail-links li {
    margin: 1.75em 0;
  }

  .options-dropdown {
    position: relative;
    background: #EDF1FD;
    font-size: 0.875rem;
  }
  .options-dropdown a {
    color: #2C2C2C;
    text-decoration: none;
  }
  .options-dropdown .options-label {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
  }
  .options-dropdown .arrow {
    position: absolute;
    top: 13px;
    right: 15px;
  }
  .options-dropdown .arrow .ah-icon {
    color: #9299A8;
    font-size: 19px;
  }
  .options-dropdown .options-body {
    display: none;
    padding: 5px 20px 20px 20px;
  }
  .options-dropdown .options-body label {
    display: inline-block;
    width: 70px;
  }
  .options-dropdown .options-body select {
    max-width: 100%;
  }
  .options-dropdown .options-body .ah-icon {
    display: inline-block;
    width: 30px;
    vertical-align: sub;
    color: #9299A8;
    font-size: 20px;
  }
  .options-dropdown .icon-dropdown-expanded {
    display: none;
  }
  .options-dropdown.expanded .options-body {
    display: block;
  }
  .options-dropdown.expanded .icon-dropdown-collapsed {
    display: none;
  }
  .options-dropdown.expanded .icon-dropdown-expanded {
    display: inline;
  }

  .pagination {
    position: relative;
    margin: 45px 0 35px 0;
    text-align: center;
    color: #9299A8;
    font-size: 0.875rem;
    line-height: 30px;
  }
  .pagination .left,
.pagination .right {
    position: absolute;
    top: 0;
    display: inline-block;
    margin-left: 8px;
    height: 30px;
    width: 30px;
    background: #EDF1FD;
    font-size: 0.875rem;
    line-height: 30px;
    color: #2C2C2C;
    text-align: center;
    text-decoration: none;
  }
  .pagination .left {
    left: 20px;
  }
  .pagination .right {
    right: 20px;
  }
  .pagination .label,
.pagination .first,
.pagination .last,
.pagination .page,
.pagination .ellipses {
    display: none;
  }

  .footer-navigation {
    padding: 30px 40px;
  }
  .footer-navigation h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    cursor: pointer;
  }
  .footer-navigation ul {
    padding-bottom: 8px;
  }
  .footer-navigation li {
    margin: 0 0 15px 0;
  }
  .footer-navigation .footer-column {
    margin-bottom: 16px;
    border-bottom: 1px solid #2D313B;
  }
  .footer-navigation .footer-column:last-child {
    margin: 0;
    border: none;
  }
  .footer-navigation .sign-up {
    margin-top: 25px;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 0.6875rem;
    text-align: center;
  }
  .footer .aol-logo-vector {
    margin-right: 8px;
    font-size: 16px;
  }
  .footer .social-share {
    margin: 9px 0 18px 7px;
  }
  .footer .social-share a {
    margin-right: 7px;
  }

  .help-logo-vector {
    color: #00A8FF;
  }

  .mobile-hidden {
    display: none !important;
  }
}
.card-list > li {
  background: #FFF;
  border-width: 0 20px;
  border-style: solid;
  border-color: #DDE2ED;
}
.card-list .links > li {
  margin: 0.75em 0;
}
.card-list.clickable {
  cursor: pointer;
}

@media (min-width: 745px) {
  .card-list {
    display: table;
    width: 100%;
    table-layout: fixed;
    width: auto;
    margin: 0 -20px;
    border-collapse: collapse;
  }
  .card-list > li {
    display: table-cell;
    width: 25%;
    vertical-align: top;
  }
}
@media (min-width: 745px) and (max-width: 1000px) {
  .card-list > li {
    display: table-cell;
    width: 33.3333333333%;
  }
  .card-list > li:last-child {
    display: none !important;
  }
}
.article-summary-list h3 {
  margin: 10px 0;
}
.article-summary-list p {
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}
.article-summary-list .article-likes {
  color: #8C95A3;
  text-align: right;
  white-space: nowrap;
}
.article-summary-list .article-likes .icon-thumb {
  margin-left: 5px;
  font-size: 26px;
}
.article-summary-list .inline-article-likes {
  margin-left: 25px;
  white-space: nowrap;
}
.article-summary-list .inline-article-likes .icon-thumb {
  margin-right: 2px;
  vertical-align: sub;
  font-size: 20px;
}
.article-summary-list .updated {
  color: #8C95A3;
  font-size: 0.875rem;
}

@media (min-width: 745px) {
  .article-summary-list li {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 50px;
  }
  .article-summary-list li:last-child {
    margin-bottom: 0;
  }
  .article-summary-list a:hover {
    color: #00A8FF;
  }
  .article-summary-list .article-brand {
    vertical-align: top;
  }
  .article-summary-list .article-details {
    margin-right: 0;
  }
  .article-summary-list.has-brand-icon-column .article-brand {
    display: table-cell;
    width: 16.6666666667%;
    width: 96px;
  }
  .article-summary-list.has-brand-icon-column .article-brand a,
.article-summary-list.has-brand-icon-column .article-brand span {
    display: block;
    width: 80px;
  }
  .article-summary-list.has-brand-icon-column .article-brand img {
    width: 100%;
  }
  .article-summary-list.has-brand-icon-column .article-details {
    display: table-cell;
    width: 83.3333333333%;
  }
  .article-summary-list.has-likes-column .article-details {
    display: table-cell;
    width: 100%;
  }
  .article-summary-list.has-likes-column .article-likes {
    display: table-cell;
    width: 8.3333333333%;
    width: 90px;
    margin-top: 28px;
    font-size: 1.25rem;
  }
  .article-summary-list.has-brand-icon-column.has-likes-column .article-details {
    display: table-cell;
    width: 83.3333333333%;
  }
}
@media (max-width: 744px) {
  .article-summary-list li {
    display: block;
    position: relative;
    margin-bottom: 37px;
    padding-bottom: 23px;
    border-bottom: 1px solid #DDE2ED;
  }
  .article-summary-list li::after {
    clear: both;
    content: "";
    display: table;
  }
  .article-summary-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 10px;
    border: none;
  }
  .article-summary-list .article-details {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .article-summary-list .article-details:last-child {
    margin-right: 0;
  }
  .article-summary-list .more-link {
    display: none;
  }
  .article-summary-list.has-brand-icon-column .article-brand {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 14.7019570017%;
    width: 50px;
  }
  .article-summary-list.has-brand-icon-column .article-brand:last-child {
    margin-right: 0;
  }
  .article-summary-list.has-brand-icon-column .article-brand div {
    height: 40px;
    width: 40px;
  }
  .article-summary-list.has-brand-icon-column .article-brand img {
    width: 100%;
  }
  .article-summary-list.has-brand-icon-column .article-details {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 82.9403914003%;
  }
  .article-summary-list.has-brand-icon-column .article-details:last-child {
    margin-right: 0;
  }
  .article-summary-list.has-likes-column .article-details {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 91.4701957002%;
  }
  .article-summary-list.has-likes-column .article-details:last-child {
    margin-right: 0;
  }
  .article-summary-list.has-likes-column .article-likes {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 0.875rem;
  }
  .article-summary-list.has-brand-icon-column.has-likes-column .article-details {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 74.4105871005%;
  }
  .article-summary-list.has-brand-icon-column.has-likes-column .article-details:last-child {
    margin-right: 0;
  }
}
.ccts {
  display: none;
}

@font-face {
  font-family: "AolLogo";
  src: url("../fonts/AolLogo.eot?1");
  src: url("../fonts/AolLogo.eot?#iefix-1") format("embedded-opentype"), url("../fonts/AolLogo.woff?1") format("woff"), url("../fonts/AolLogo.ttf?1") format("truetype"), url("../fonts/AolLogo.svg?1#AolLogo") format("svg");
  font-weight: normal;
  font-style: normal;
}
.aol-logo-vector,
.help-logo-vector {
  font-family: "AolLogo";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.aol-logo-vector:before {
  content: "\e600";
}

.help-logo-vector:before {
  content: "\e601";
}

@media (min-width: 745px) {
  #search-hero {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../img/search-hero-bg.jpg", sizingMethod="scale");
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/search-hero-bg.jpg', sizingMethod='scale')";
  }
  #search-hero .search-hero-wrapper {
    display: table;
    height: 500px;
    width: 100%;
  }
  #search-hero .search-hero-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  #search-hero h1 {
    margin-bottom: 46px;
    color: #FFF;
    font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 3.375rem;
    line-height: 3rem;
  }
  #search-hero .search-bar {
    margin-bottom: 6px;
  }
  #search-hero .search-bar input {
    background: #FFF;
  }
  #search-hero .search-bar a.cta {
    background: #333;
    border: 0;
    font-size: 1.25rem;
    height: 4.375rem;
    line-height: 4.375rem;
    padding: 0 30px 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  #search-hero.hero-theme-1 {
    background-color: #F9BF2D;
  }
  #search-hero.hero-theme-1 h1 span {
    color: #049EFF;
  }
}
@media (max-width: 744px) {
  #search-hero {
    display: none;
  }
}
#recommended {
  background: #DDE2ED;
}
#recommended .recommended-brand {
  line-height: 0;
}
#recommended .recommended-brand img {
  width: 100%;
}
#recommended .recommended-details {
  padding: 18px;
  background: #FFF;
}
#recommended p {
  margin: 12px 0 13px 0;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

@media (min-width: 745px) {
  #recommended {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 744px) {
  #recommended {
    padding-top: 15px;
  }
  #recommended h1 {
    margin-bottom: 20px;
  }
  #recommended .swipeable {
    margin: 0 -20px;
  }

  html.has-search-banner .recommended-brand {
    display: none;
  }
}
#product-details h1 {
  color: #FFF;
}
#product-details h5 {
  margin-top: 30px;
}
#product-details .product-detail-description {
  margin-bottom: 30px;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#product-details .product-detail-description p {
  margin: 0.8em 0;
}
#product-details .product-detail-versions ul {
  overflow: hidden;
}
#product-details .product-detail-versions li {
  float: left;
  width: 43%;
  margin-top: 16px;
  margin-right: 7%;
  font-size: 0.875rem;
  line-height: 1rem;
}
#product-details .product-detail-versions a {
  color: #FFF;
  text-decoration: none;
}
#product-details .product-detail-versions a:hover, #product-details .product-detail-versions a.current {
  text-decoration: underline;
}

@media (min-width: 745px) {
  #product-details {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  #product-details h1 {
    margin-bottom: 25px;
  }
  #product-details .main-guttered-row {
    position: relative;
  }
  #product-details .breadcrumbs {
    position: absolute;
    top: 60px;
    left: 0;
  }
  #product-details .breadcrumbs a:hover {
    color: #FFF;
  }
  #product-details .product-details-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
    width: 400px;
    height: 600px;
  }
  #product-details .product-details {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }
  #product-details .product-detail-ctas {
    margin-right: -100px;
  }
  #product-details .product-detail-ctas .cta {
    margin-right: 8px;
    margin-bottom: 5px;
    min-width: 45%;
  }
  #product-details .device-example {
    position: absolute;
    right: -164px;
    bottom: -20px;
    width: 766px;
    height: 524px;
    -webkit-transform: rotate(9deg);
    -moz-transform: rotate(9deg);
    -ms-transform: rotate(9deg);
    -o-transform: rotate(9deg);
    transform: rotate(9deg);
    -webkit-backface-visibility: hidden;
  }
  #product-details .device-frame-img {
    height: 100%;
    width: 100%;
    position: absolute;
  }
  #product-details .device-content-wrapper {
    display: table;
    width: 86%;
    height: 92%;
    margin: 2.8% 0 0 5.9%;
    text-align: center;
    line-height: 0;
  }
  #product-details .device-content {
    display: table-cell;
    vertical-align: middle;
    background-color: #00A8FF;
  }
  #product-details .device-content .aol-logo-vector {
    font-size: 70px;
  }
}
@media (max-width: 744px) {
  #product-details h1 {
    margin-top: 6px;
    margin-bottom: 18px;
    font-size: 2.25rem;
  }
  #product-details .breadcrumbs {
    display: none;
  }
  #product-details .product-detail-ctas {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }
  #product-details .product-detail-ctas .cta {
    display: table-cell;
    width: 50%;
  }
  #product-details .device-example {
    display: none;
  }
}
@media (min-width: 745px) and (max-width: 1190px) {
  #product-details .device-example {
    right: auto;
    left: 473px;
  }
}
@media (max-width: 744px) and (orientation: portrait) {
  #product-details .product-detail-ctas {
    display: block;
  }
  #product-details .product-detail-ctas .cta {
    display: block;
    width: 100%;
    margin-top: -2px;
  }
}
@media (min-width: 745px) {
  #popular-articles {
    margin-top: 40px;
  }
}
@media (max-width: 744px) {
  #popular-articles h1 {
    margin-bottom: 40px;
  }
  #popular-articles ul {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 745px) {
  #marketing-hero {
    background: #DDE2ED;
    border-top: 210px solid #FFF;
  }
  #marketing-hero .main-guttered-row {
    margin-top: -210px;
  }
}
.infor-module h1 {
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.infor-module h2 {
  font-weight: normal;
}
.infor-module .cta {
  background: transparent;
}
.infor-module .cta:hover {
  background: transparent;
}

#video-tutorials-container {
  display: none;
}

#video-tutorials {
  background: #DDE2ED;
}
#video-tutorials h3 {
  margin-top: 12px;
}
#video-tutorials li {
  background: #FFF;
  border-width: 0 20px;
  border-style: solid;
  border-color: #DDE2ED;
}
#video-tutorials a:hover {
  color: #00A8FF;
}
#video-tutorials .video-player {
  line-height: 0;
}
#video-tutorials .video-brand {
  color: #8C95A3;
  font-size: 0.875rem;
}
#video-tutorials .video-link {
  display: inline-block;
  margin-top: 30px;
}
#video-tutorials .video-navigation {
  position: absolute;
  top: 7px;
  right: 13px;
}
#video-tutorials .video-navigation a,
#video-tutorials .video-navigation span.inactive {
  display: inline-block;
  padding: 10px 0;
  margin-left: 1px;
  text-decoration: none;
}
#video-tutorials .video-navigation a {
  color: #888D99;
}
#video-tutorials .video-navigation span.inactive {
  color: #DEE1EE;
}
#video-tutorials .video-navigation .ah-icon {
  font-size: 23px;
}
#video-tutorials .swipeable {
  margin: 0 -20px;
}

@media (min-width: 745px) {
  #video-tutorials h3 {
    margin-right: 50px;
  }
  #video-tutorials .video-details {
    position: relative;
    padding: 25px;
  }
}
@media (min-width: 1000px) {
  #video-tutorials h3 {
    margin-right: 0;
  }
  #video-tutorials li {
    display: table;
    width: 100%;
  }
  #video-tutorials .video-details {
    display: table-cell;
    width: 300px;
    vertical-align: middle;
  }
  #video-tutorials .video-sub-details {
    position: absolute;
    left: 25px;
    bottom: 30px;
  }
  #video-tutorials .video-time {
    margin-bottom: 10px;
    color: #8C95A3;
    font-size: 1.25rem;
  }
}
@media (max-width: 744px) {
  #video-tutorials .video-player {
    overflow: hidden;
  }
  #video-tutorials .video-details {
    padding: 20px;
  }
  #video-tutorials .video-navigation,
#video-tutorials .more-link {
    display: none;
  }
}
#help-by-product {
  padding-bottom: 0;
}
#help-by-product h2 {
  margin-bottom: 45px;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 300;
}
#help-by-product li {
  padding: 0 40px;
  color: #FFF;
}
#help-by-product a {
  color: inherit;
  text-decoration: none;
}
#help-by-product .hero-brand {
  margin-top: 45px;
  font-weight: 600;
}

@media (min-width: 745px) {
  #help-by-product {
    background: #DDE2ED;
  }
  #help-by-product ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    width: auto;
    margin: 0 -20px;
    border-collapse: collapse;
  }
  #help-by-product li {
    display: table-cell;
    width: 33.3333333333%;
    border-width: 0 20px;
    border-style: solid;
    border-color: #DDE2ED;
    cursor: pointer;
  }
  #help-by-product h2 {
    margin-top: 22px;
  }
}
@media (min-width: 745px) and (max-width: 1000px) {
  #help-by-product li {
    display: table-cell;
    width: 50%;
  }
  #help-by-product li:last-child {
    display: none;
  }
}
@media (max-width: 744px) {
  #help-by-product h2 {
    margin-top: 22px;
  }
  #help-by-product li {
    border-width: 0 20px;
    border-style: solid;
    border-color: #FFF;
  }
  #help-by-product .swipeable {
    margin: 0 -20px;
  }
}
#help-supplemental {
  padding-top: 25px;
  padding-bottom: 70px;
}
#help-supplemental h3 {
  margin: 8px 0 20px 0;
}
#help-supplemental a {
  color: inherit;
  text-decoration: none;
}
#help-supplemental a:hover {
  color: #00A8FF;
}
#help-supplemental .product-brand {
  color: #8C95A3;
  font-size: 0.875rem;
}

@media (min-width: 745px) {
  #help-supplemental ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    width: auto;
    margin: 0 -20px;
    border-collapse: collapse;
  }
  #help-supplemental li {
    display: table-cell;
    width: 33.3333333333%;
    padding-right: 50px;
    border-width: 0 20px;
    border-style: solid;
    border-color: transparent;
  }
  #help-supplemental .product-brand span {
    display: none;
  }
}
@media (min-width: 745px) and (max-width: 1000px) {
  #help-supplemental li {
    display: table-cell;
    width: 50%;
  }
  #help-supplemental li:last-child {
    display: none;
  }
}
@media (max-width: 744px) {
  #help-supplemental li {
    display: none;
  }
  #help-supplemental li:first-child {
    display: block;
  }
}
#search-results .search-result-filters label {
  white-space: nowrap;
}
#search-results .search-result-filters select {
  height: 30px;
  font-size: 0.875rem;
  line-height: 30px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@media (min-width: 745px) {
  #search-results {
    margin-top: 40px;
  }
  #search-results .for-your-search {
    font-size: 1.125rem;
  }
  #search-results .for-your-search span {
    color: #00A8FF;
  }
  #search-results .search-result-filters {
    margin: 50px 0 60px 0;
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  #search-results .search-result-filters > div {
    display: table-cell;
    width: 33.3333333333%;
    height: 30px;
    font-size: 0.875rem;
    line-height: 30px;
  }
  #search-results .search-result-filters label {
    margin-right: 8px;
  }
  #search-results .search-result-filters select {
    background: #EDF1FD;
  }
  #search-results .search-result-filter > div {
    display: inline;
  }
  #search-results .pagination {
    margin: 65px 0 60px 0;
  }
}
@media (max-width: 744px) {
  #search-results ul {
    margin-left: -20px;
    margin-right: -20px;
  }
  #search-results li {
    padding-bottom: 0;
    border: none;
  }
  #search-results .for-your-search {
    margin: -10px 0 25px 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #search-results .for-your-search span {
    display: block;
    color: #00A8FF;
  }
  #search-results .options-dropdown {
    margin-bottom: 30px;
  }
  #search-results .search-result-filters select {
    background: #FFF;
  }
  #search-results .search-result-filter {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  #search-results .search-result-filter > div {
    display: table-cell;
    width: 33.3333333333%;
  }
  #search-results .search-result-filter > div:last-child {
    display: table-cell;
    width: 66.6666666667%;
  }
}
#top-search-results {
  background: #ECF1FC;
}
#top-search-results.no-results {
  background: #DDE2ED;
}
#top-search-results.no-results + #help-by-product {
  background: #FFF;
}
#top-search-results.no-results + #help-by-product li {
  border-color: #FFF;
}
#top-search-results .better-searching h3 {
  color: #888D99;
}

@media (min-width: 745px) {
  #top-search-results {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  #top-search-results h4 {
    margin-bottom: 30px;
    color: #9299A8;
  }
  #top-search-results .for-your-search {
    margin: -10px 0 40px 0;
    font-size: 1.125rem;
  }
  #top-search-results .for-your-search span {
    color: #00A8FF;
  }
  #top-search-results .article-summary-list li {
    margin-bottom: 30px;
  }
  #top-search-results .rail-links {
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
  #top-search-results .rail-products {
    border-top-color: #D3D9E8;
  }
  #top-search-results .better-searching {
    display: block;
    padding-top: 10px;
  }
  #top-search-results .better-searching::after {
    clear: both;
    content: "";
    display: table;
  }
  #top-search-results .better-searching h3 {
    font-size: 1.25rem;
  }
  #top-search-results .better-searching p {
    margin: 1.5em 0;
  }
  #top-search-results .column {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  #top-search-results .column:last-child {
    margin-right: 0;
  }
  #top-search-results + #search-results .for-your-search {
    display: none;
  }
}
@media (max-width: 744px) {
  #top-search-results {
    display: none;
  }
  #top-search-results.no-results {
    display: block;
  }
  #top-search-results.no-results .for-your-search {
    margin-top: 0;
  }
  #top-search-results .for-your-search {
    margin: -10px 0 25px 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #top-search-results .for-your-search span {
    display: block;
    color: #00A8FF;
  }
  #top-search-results .for-your-search p {
    margin-top: 1.5em;
  }
  #top-search-results .better-searching h3 {
    font-size: 1.3125rem;
    margin-bottom: 0.7em;
  }
  #top-search-results .better-searching p {
    margin-bottom: 2.2em;
  }
}
@media (min-width: 745px) {
  #navigation-utility {
    display: table-cell;
    text-align: right;
    white-space: nowrap;
  }

  #pageid-home .main-navigation .search-bar {
    background: transparent;
  }
  #pageid-home .main-navigation ul.navigation-utility-links {
    margin-top: 2px;
  }
  #pageid-home .search-bar input {
    padding: 0 130px 0 60px;
  }
  #pageid-home .search-bar a.icon-search-wrap {
    right: auto;
    left: 0;
    padding: 0 15px 0 20px;
    cursor: default;
    text-decoration: none;
  }
  #pageid-home .search-bar a.icon-search-wrap:focus {
    outline: none;
  }
}
#atoz a {
  color: #2C2C2C;
  text-decoration: none;
}
#atoz a:hover {
  color: #00A8FF;
}
#atoz .product-navigation a,
#atoz .product-navigation span {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
#atoz .product-navigation span {
  color: #C4C9D7;
}
#atoz .product-directory {
  margin-bottom: 55px;
}
#atoz .letter-section {
  border-top: 1px solid #EEF1F5;
}
#atoz .letter-label {
  color: #00A8FF;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  font-weight: 600;
}
@media (min-width: 745px) {
  #atoz {
    padding-top: 50px;
  }
  #atoz .product-navigation {
    margin-top: 55px;
    margin-bottom: 55px;
    white-space: nowrap;
  }
  #atoz .product-navigation a,
#atoz .product-navigation span {
    display: inline-block;
    width: 2.8%;
    margin-right: 0.5%;
  }
  #atoz .product-navigation .label {
    width: auto;
    margin-right: 18px;
    color: #2C2C2C;
    font-size: 0.875rem;
    font-weight: normal;
    text-align: left;
  }
  #atoz .letter-section {
    display: block;
  }
  #atoz .letter-section::after {
    clear: both;
    content: "";
    display: table;
  }
  #atoz .letter-label {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 6.1721527019%;
    vertical-align: top;
    padding-top: 53px;
  }
  #atoz .letter-label:last-child {
    margin-right: 0;
  }
  #atoz .letter-products {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 91.4701957002%;
    vertical-align: top;
    overflow: hidden;
  }
  #atoz .letter-products:last-child {
    margin-right: 0;
  }
  #atoz .letter-products ul {
    float: left;
    width: 32%;
    margin: 35px 0 35px 1%;
  }
  #atoz .letter-products li {
    margin: 1.25em;
  }
}
@media (max-width: 744px) {
  #atoz .main-guttered-row {
    position: relative;
  }
  #atoz .product-navigation {
    position: absolute;
    top: 103px;
    right: 0;
    overflow: hidden;
    background: #FFF;
  }
  #atoz .product-navigation .label {
    display: none;
  }
  #atoz .product-navigation a,
#atoz .product-navigation span {
    float: left;
    clear: both;
    height: 27px;
    width: 40px;
    margin-bottom: 6px;
    line-height: 27px;
  }
  #atoz .letter-section {
    padding-bottom: 20px;
  }
  #atoz .letter-section:last-child {
    padding-bottom: 0;
  }
  #atoz .letter-label {
    padding-top: 35px;
  }
  #atoz .letter-products li {
    margin: 1.2em 43px 1.2em 0;
  }
}
#article {
  padding-bottom: 70px;
}
#article hr {
  display: none;
}
#article .railed-content {
  margin-top: 40px;
}
#article .breadcrumbs {
  margin-top: 25px;
}
#article .article-abstract {
  overflow: hidden;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
#article .article-abstract p {
  margin-bottom: 1em;
}
#article .article-type {
  float: left;
  height: 75px;
  width: 75px;
  margin: 0 22px 2px 0;
  background: #00A8FF;
}
#article .article-type img {
  width: 100%;
}
#article .options-dropdown {
  margin-bottom: 30px;
}
#article .article-body {
  border-top: 1px solid #EEF1F5;
  font-size: 1rem;
  line-height: 1.375rem;
}
#article .article-body ol, #article .article-body ul {
  margin: 40px 0;
}
#article .article-body ol {
  padding-left: 30px;
}
#article .article-body ol li {
  padding-left: 10px;
  list-style-type: decimal;
}
#article .article-body ul {
  padding-left: 20px;
}
#article .article-body ul li {
  padding-left: 20px;
  list-style-type: disc;
}
#article .article-body li {
  margin: 40px 0;
}
#article .article-body h1, #article .article-body h2, #article .article-body h3, #article .article-body h4, #article .article-body h5, #article .article-body h6, #article .article-body p {
  margin: 1em 0;
}
#article .article-body a {
  color: #00A8FF;
  text-decoration: none;
}
#article .article-body .htoggle,
#article .article-body .ptoggle {
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
  cursor: pointer;
}
#article .article-body .htoggle:before,
#article .article-body .ptoggle:before {
  content: "+";
  position: absolute;
  left: 0;
  top: -3px;
  color: #00A8FF;
}
#article .article-body .htoggle.expanded,
#article .article-body .ptoggle.expanded {
  margin-bottom: 0;
}
#article .article-body .htoggle.expanded:before,
#article .article-body .ptoggle.expanded:before {
  content: "–";
}
#article .article-body .htoggle {
  font-size: 1.5rem;
}
#article .article-body .htoggle:before {
  font-size: 28px;
}
#article .article-body .ptoggle {
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  margin-top: 40px;
  font-size: 1.125rem;
  font-weight: 600;
}
#article .article-body .ptoggle:before {
  font-size: 22px;
}
#article .article-body .hcontent,
#article .article-body .pcontent {
  display: none;
  padding-left: 40px;
  border-bottom: 1px solid #EEF1F5;
}
#article .article-body .hcontent {
  padding-bottom: 30px;
}
#article .rate-this-information {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 50px 0;
  border-top: 1px solid #EEF1F5;
}
#article .rate-this-information > div {
  display: table-cell;
  width: 50%;
  padding: 50px 0;
  vertical-align: middle;
}
#article .rate-this-information a {
  display: inline-block;
  height: 70px;
  width: 70px;
  margin-left: 25px;
  text-align: center;
  color: #FFF;
  font-size: 1.3125rem;
  line-height: 70px;
  text-decoration: none;
}
#article .rate-this-information .label {
  font-size: 2rem;
}
#article .rate-this-information .links {
  text-align: right;
  white-space: nowrap;
}
#article .rate-this-information .yes-rating {
  background: #FBCF00;
}
#article .rate-this-information .no-rating {
  background: #B3B9C5;
}
#article .article-attributes {
  color: #9299A8;
  font-size: 0.875rem;
  margin-bottom: 50px;
}
#article .article-attributes > div {
  margin-bottom: 1.25em;
  white-space: nowrap;
}
#article .article-attributes a {
  color: #9299A8;
  text-decoration: none;
}
#article .article-attributes a:hover {
  color: #00A8FF;
}
#article .article-attributes a:hover .ah-icon {
  color: #00A8FF;
}
#article .article-attributes .ah-icon {
  display: inline-block;
  width: 30px;
  vertical-align: sub;
  color: #9299A8;
  font-size: 20px;
}
#article .article-related {
  margin-top: 40px;
}
#article .article-related img {
  border: 1px solid #ccc;
  width: 100%;
}
#article .hide-all-images * {
  background-image: none !important;
}
#article .hide-all-images img {
  display: none !important;
}
#article + #video-tutorials {
  background: transparent;
}

@media (min-width: 745px) {
  #article .article-abstract {
    margin-bottom: 40px;
  }
  #article .mobile-attributes,
#article .options-dropdown {
    display: none;
  }
}
@media (max-width: 744px) {
  #article .mobile-attributes {
    color: #9299A8;
    font-size: 0.875rem;
  }
  #article .railed-content {
    margin-top: 18px;
  }
  #article .article-related {
    text-align: center;
  }
  #article .article-related img {
    width: 80%;
  }
  #article .breadcrumbs {
    display: none;
  }
  #article .article-abstract {
    margin-bottom: 25px;
  }
  #article .article-type {
    height: 46px;
    width: 46px;
    margin-right: 18px;
  }
  #article .article-attributes {
    display: none;
  }
  #article .article-body {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #article .article-body img {
    max-width: 100%;
  }
}
#support {
  background: #DDE2ED;
}
#support .support-brand {
  line-height: 0;
}
#support .support-brand img {
  width: 100%;
}
#support .support-details {
  padding: 18px;
  background: #FFF;
}
#support p {
  margin: 12px 0 13px 0;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}
#support a[disabled] {
  color: #8C95A3;
}

@media (min-width: 745px) {
  #support {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  #support #support-category-indicators {
    background: transparent;
    display: block;
    margin: 40px -10px -70px -10px;
  }
  #support #support-category-indicators > li {
    background: transparent;
    border: 0;
    display: inline-block;
  }
  #support #support-category-indicators > li > div {
    position: relative;
  }
  #support #support-category-indicators > li .indicator {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 30px 25px;
    border-color: transparent transparent #FFF transparent;
    margin-left: 40%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: all 0.1s ease;
  }
  #support #support-category-indicators > li.active .indicator {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
@media (max-width: 744px) {
  #support {
    padding-top: 15px;
  }
  #support h1 {
    margin-bottom: 20px;
  }
  #support .swipeable {
    margin: 0 -20px;
  }
}
#contact li {
  padding: 35px 0;
  border-bottom: 1px solid #EEF1F5;
}
#contact li:last-child {
  border-bottom: none;
}
#contact .card-list > li {
  border-color: transparent;
  padding: 0;
  border-bottom: none;
}
#contact .card-list p {
  margin: 12px 0 13px 0;
  font-size: 1rem;
  line-height: 1.1875rem;
}
#contact .card-list .support-details {
  padding: 18px;
}
#contact .article-summary-list {
  margin-bottom: 60px;
}
#contact .article-summary-list > li {
  padding: 0;
  border-bottom: none;
}
#contact .phone-number {
  margin-top: 0.45em;
  color: #00A8FF;
  font-family: "Open Sans", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
}
#contact .wait-time {
  display: table-cell;
  width: 16.6666666667%;
  padding-top: 5px;
  text-align: center;
}
#contact .time-left {
  margin-top: 0.25em;
  color: #969DAC;
  font-size: 1.125rem;
}

@media (min-width: 745px) {
  #contact {
    margin-top: 40px;
  }
  #contact .contact-details {
    display: table-cell;
    width: 83.3333333333%;
  }
}
@media (max-width: 744px) {
  #contact h1 {
    margin-bottom: 40px;
  }
  #contact ul {
    margin-left: -20px;
    margin-right: -20px;
  }
  #contact li {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#support h1.with-intro,
#contact h1.with-intro {
  margin-bottom: 0;
}
#support .support-intro,
#contact .support-intro {
  padding-top: 0;
  padding-bottom: 40px;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
#support .hr,
#contact .hr {
  border: 0;
  border-bottom: 1px solid #edf0f4;
  margin-bottom: 60px;
}

#contact-promo img {
  width: 100%;
}

#emailSupport {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
#emailSupport > iframe {
  width: 100%;
  max-width: 1000px;
  height: 900px;
}

@media (max-width: 744px) {
  #emailSupport {
    padding: 0;
  }
  #emailSupport > iframe {
    height: 950px;
  }
}
.inline-article-likes,
.article-attributes .liked,
.rate-this-information,
.video-sub-details {
  display: none !important;
}

#contact {
  padding-bottom: 5px;
}
#contact li:last-child {
  border-bottom: 1px solid #EEF1F5;
}

.ccts {
  display: block;
  font-family: sans-serif;
  line-height: 1.4;
  font-size: 14px;
}
.ccts__header {
  margin-bottom: 20px;
}
.ccts__body {
  margin-bottom: 20px;
  overflow: hidden;
}
.ccts__logo {
  padding: 0;
  height: 70px;
  margin: 0 20px 20px;
  float: left;
}
.ccts__text {
  display: inline;
}
.ccts__text-more {
  display: none;
}
.ccts__text-more a,
.ccts__text-more a:visited {
  color: #00A8FF;
}
.ccts__ellipsis {
  display: inline;
}
.ccts__button {
  display: inline-block;
  cursor: pointer;
  color: #00A8FF;
}
.ccts__button--more {
  display: inline-block;
}
.ccts--is-expanded .ccts__ellipsis,
.ccts--is-expanded .ccts__button--more {
  display: none;
}
.ccts--is-expanded .ccts__text-more {
  display: inline;
}

.lt-ie9 {
  font-family: Arial, sans-serif;
}
.lt-ie9 h1,
.lt-ie9 h2,
.lt-ie9 h3,
.lt-ie9 h4,
.lt-ie9 h5,
.lt-ie9 h6,
.lt-ie9 .cta,
.lt-ie9 .more-link,
.lt-ie9 .ptoggle,
.lt-ie9 .support-number,
.lt-ie9 .phone-number {
  font-family: Arial, sans-serif !important;
}

@media (min-width: 745px) {
  .lt-ie9 section:after {
    clear: both;
    content: "";
    display: table;
  }
  .lt-ie9 .search-bar input {
    line-height: 70px;
  }
  .lt-ie9 #search-results .search-result-filters select {
    height: auto;
    line-height: auto;
    padding: 5px;
  }
  .lt-ie9 #top-search-results .better-searching .column:first-child + .column + .column {
    margin-right: 0;
  }
  .lt-ie9 .railed-content .railed-rail {
    margin-right: 0;
  }
  .lt-ie9 .railed-content .railed-rail .text-toggle {
    display: none;
  }
  .lt-ie9 .footer-navigation .footer-column:first-child + div + div {
    margin-right: 0;
  }
}
