/* styles meant to enforce uniform baseline. */


html {
  font-size: 100%;
  box-sizing: border-box;
}

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



body {
  position: relative;
  padding: 0;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.3;
}


a:link { color: var(--link-base-default); } 

a:visited { color: var(--link-base-visited); }

a:hover { color: var(--link-base-hover); }

a:active { color: var(--link-base-active); }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-weight: normal;
  line-height: 1.3; }