@import url('https://fonts.googleapis.com/css?family=Lato:400,400i,700');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.is-inactive {
  display: none !important;
}

/* end resets */

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #34495e;
}

a {
  color: #1B6292;
}

:focus {
  outline: 2px solid #1B6292;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

a.logoLink {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logoLink img {
  height: 28px;
}

.liteLabel {
  display: inline-block;
  margin-left: 8px;
  text-transform: uppercase;
  font-size: 11px;
  background: #3295DD;
  color: white;
  padding: 2px 4px;
  border-radius: 2px;
}

nav {
  text-align: right;
}

a.navItem {
  font-size: .85em;
  font-family: 'Lato', Arial, sans-serif;
  display: inline-block;
  color: #444;
  font-weight: 700;
  margin-left: 24px;
}

a.navItem:hover {
  color: #666;
}

h2 {
  font-size: 15px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
}

.selected {
  border: 1px solid #e7e7e7;
  border-bottom: white;
  padding: 16px 12px;
  position: relative;
  font-size: 1em;
  top: 2px;
  background: white;
  font-weight: 700;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  margin: 156px auto 0;
}

main h2 {
  margin-bottom: 24px;
}

.filtersWrap {
  position: fixed;
  top: 100px;
  width: calc(100% - 40px);
  height: 56px;
  background: white;
}

.filters {
  display: flex;
  justify-content: space-between;
  background: white;
  border-bottom: 1px solid #e7e7e7;
  z-index: 2;
  padding: 0 0 20px;
}

.filtersLeft {

}

.filtersLeft input {
  padding: 6px;
  border-radius: 2px;
  border: 1px solid #e7e7e7;
  width: 300px;
  font-size: 14px;
}

.filterRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.filterRight select {
  width: 100px;
}

.filterLabel {
  display: inline-block;
  margin: 0 8px 0 20px;
  font-size: 14px;
  white-space: nowrap;
}

.filterClear {
  font-size: 14px;
  cursor: pointer;
  color: #1B6292;
  text-decoration: underline;
}

.filterClear:hover {
  color: #66abb6;
}

.filerClear:focus {
  outline: 2px solid #1B6292;
}

.contentItemRow {
  width: 100%;
}

#contentItems {
  padding-top: 20px;
}

.contentItem {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-column-gap: 20px;
}

.contentItemLogo {
  text-align: center;
}

.contentItemLogo img {
  max-width: 100px;
  max-height: 60px;
}

.contentItemContent {
  padding: 8px 0 0 16px;
}

.contentItem h4 {
  font-size: .8em;
  width: 100%;
  color: #666;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: normal;
}

.contentItem h2 {
  font-size: 1.1em;
  line-height: 1.5em;
  font-weight: 400;
  width: 100%;
  color: #007385;
  display: inline-block;
  margin: 4px 0 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.contentItem h2 img {
  position: relative;
  top: 1px;
  margin-right: 4px;
  z-index: 0;
}

.contentItem h2 a:hover {
  color: #66abb6;
}

.contentItem p {
  font-size: .85em;
  font-weight: 400;
  width: 100%;
  display: inline-block;
  margin-bottom: 28px;
}

.contentItemMeta {
  display: inline-block;
  margin-right: 24px;
}

.contentWrap {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.privacyTermsContent {
  margin: 0 auto;
  width: 600px;
  padding: 80px 0 48px;
}

.privacyTermsContent p {
  line-height: 1.4em;
  margin-bottom: 20px;
  font-size: 14px;
}

.privacyTermsContent ul, .privacyTermsContent ol {
  display: inline-block;
  margin-bottom: 20px;
}

.privacyTermsContent ul {
  list-style-type: circle;
}

.privacyTermsContent ol {
  list-style-type: decimal;
}

.privacyTermsContent li {
  list-style: inside;
  line-height: 1.4em;
  margin-bottom: .5em;
  font-size: 14px;
}

.privacyTermsContent h1 {
  font-size: 21px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 24px;
}

.privacyTermsContent h2 {
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.privacyTermsContent h3 {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 12px;
}

.privacyTermsContent h4 {
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 12px;
}

.landing-footer .landing-footer-content .landing-footer-left {
  float:left;
  width:50%;
  color:#fff;
  padding:30px 0;
}

.landing-footer .landing-footer-content .landing-footer-left img {
  float:left;
  width:90px;
  position:relative;
  top:6px;
}

.landing-footer .landing-footer-content .landing-footer-left .footer-byline {
  clear:both;
  font-size:.8em;
  color:#005d6c;
  display:inline-block;
  line-height:50px;
  width:100%;
}

.landing-footer .landing-footer-content .landing-footer-right {
  float:right;
  width:50%;
  text-align:right;
  color:#fff;
}

.landing-footer,#footerPanelSignup {
  background:#003139;
  clear:both;
  display:inline-block;
  width:100%;
}

.landing-footer .landing-footer-content .landing-footer-left a,#footerPanelSignup .footerPanelContent .footerPanelLeft .footerPanelLinks a {
  color:#007385;
  margin-left:20px;
  text-decoration:none;
  line-height:38px;
}

.landing-footer .landing-footer-content .landing-footer-left .footer-byline a,#footerPanelSignup .footerPanelContent .footerPanelLeft .footerByline a {
  margin-left:0;
}

.landing-footer .landing-footer-content .landing-footer-left .footer-byline .grade,#footerPanelSignup .footerPanelContent .footerPanelLeft .footerByline .grade {
  color:#c03025;
}

.landing-footer .landing-footer-content .landing-footer-left a {
  line-height:30px;
  font-size:.9em;
}

#footerPanelSignup {
    background: #003139;
    clear: both;
    display: inline-block;
    width: 100%;
}

#footerPanelSignup .footerPanelContent .footerPanelLeft {
  float: left;
  width: 75%;
  color: white;
  padding: 30px 0;
  font-size: .9em;
}

.content-centering-wrap {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
}

#footerPanelSignup .footerPanelContent .footerPanelLeft img {
  float: left;
  width: 75px;
  position: relative;
  top: 8px;
}

#footerPanelSignup .footerPanelContent .footerPanelLeft .footerByline {
  clear: both;
  font-size: .9em;
  color: #005d6c;
  display: inline-block;
  line-height: 50px;
  width: 100%;
}

.desktopHide {
  display: none;
}

/* ipad */
@media only screen and (max-width: 1200px) {


}

/* mobile */
@media only screen and (max-width: 768px) {

  .mobileHide {
    display: none;
  }

  .desktopHide {
    display: block;
  }

  header {
    height: 48px;
    top: 0;
    padding: 12px;
  }

  .nav a.navItem {
    font-size: .75em;
    margin: 0 0 0 8px;
  }

  .logoLink img {
    height: 20px;
  }

  .title {
    height: 36px;
    top: 48px;
  }

  .title h2 {
    font-size: 12px;
    padding: 8px 12px 0;
  }

  .filters {
    padding: 4px 0;
    justify-content: flex-start;
    flex-direction: column;
  }

  .filtersLeft {
    padding: 8px;
  }

  .filtersWrap {
    top: 48px;
    height: 72px;
    width: calc(100% - 24px);
  }

  .filtersWrap h2 {
    font-size: .85em;
  }

  .filtersLeft {
    width: 100%;
    padding: 0 0 4px;
  }

  .filtersLeft input {
    width: 100%;
    font-size: 12px;
  }

  .filterRight {
    width: 100%;
    padding: 4px 0;
    display: flex;
    justify-content: center;
  }

  .filterRight select {
    width: 100px;
  }

  .filterLabel {
      font-size: 11px;
      font-weight: normal;
      margin: 0 4px;
  }

  .filterClear {
    margin-right: 12px;
    font-size: 11px;
  }

  main {
    padding: 8px 12px;
    margin: 132px 0 0;
  }

  main h2 {
    font-size: .9em;
    margin-bottom: 8px;
  }

  .contentItemRow {

  }

  .contentItem {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-column-gap: 12px;
  }

  .contentItemLogo {
  }

  .contentItemLogo img {
    max-width: 100%;
  }

  .contentItem h4 {
    font-size: .75em;
  }

  .contentItem h2 {
    font-size: .85em;
    line-height: 1.3em;
  }

  .contentItem p {
    margin-bottom: 12px;
    font-size: .75em;
  }

  .contentItemMeta {
    width: 100%;
    margin-right: 0;
    display: inline-block;
    clear: both;
    margin-bottom: 4px;
  }

  .contentWrap {
    display: inline-block;
    width: 100%;
    height: 100%;
  }

  .privacyTermsContent {
    margin: 0 20px;
    width: calc(100% - 40px);
    padding: 60px 0 20px;
  }

  #footerPanelSignup .footerPanelContent .footerPanelLeft {
    float: left;
    width: 100%;
    color: white;
    padding: 12px;
    font-size: .8em;
  }

  #footerPanelSignup .footerPanelContent .footerPanelLeft .footerPanelLinks a  {
    margin-left: 0;
    margin-right: 8px;
    line-height: 34px;
  }

  #footerPanelSignup .footerPanelContent .footerPanelLeft img { 
    margin-right: 8px;
  }
}

.termsWrap {
  position: fixed;
  bottom: 0;
  right: 0;
  background: white;
  padding-right: 20px;
}

.termsWrap a {
  font-size: 11px;
  color: #666;
  display: inline-block;
  padding: 8px;
}

.terms a:hover {
  color: black;
}
.landing-footer .landing-footer-content .landing-footer-left {
width:100%;
}