
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7f1f0a81cc7b490f100de8d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_257ee2abf5f02c848bcab2a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_369afeba8b2e8eb8139768c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c474b0883419e77ed3a49738.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_80f480181f1711bd68b70eef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ee627138821c4803f5bc7a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_85bb0aec08ebe58077a1a550.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.404000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.966000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.730000px;}
.ls1{letter-spacing:4.656000px;}
.ls2{letter-spacing:6.244800px;}
.ls5{letter-spacing:14.368200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e{word-spacing:-16.344000px;}
.ws4{word-spacing:-12.690000px;}
.ws7{word-spacing:-12.258000px;}
.ws3{word-spacing:-11.280000px;}
.ws2{word-spacing:-10.896000px;}
.ws1{word-spacing:-9.870000px;}
.ws6{word-spacing:-9.534000px;}
.ws3f{word-spacing:-8.904000px;}
.ws54{word-spacing:-2.970000px;}
.ws51{word-spacing:-2.916000px;}
.ws1b{word-spacing:-2.160000px;}
.ws79{word-spacing:-2.058000px;}
.ws10{word-spacing:-1.872000px;}
.ws74{word-spacing:-1.764000px;}
.ws69{word-spacing:-1.638000px;}
.wsc{word-spacing:-1.632000px;}
.ws58{word-spacing:-1.512000px;}
.ws6a{word-spacing:-1.260000px;}
.ws3b{word-spacing:-1.242000px;}
.ws1d{word-spacing:-1.134000px;}
.wse{word-spacing:-0.960000px;}
.ws70{word-spacing:-0.840000px;}
.ws4a{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.210600px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.054000px;}
.ws50{word-spacing:0.270000px;}
.ws82{word-spacing:0.378000px;}
.ws1c{word-spacing:0.432000px;}
.ws65{word-spacing:0.462000px;}
.ws52{word-spacing:0.486000px;}
.ws1f{word-spacing:0.540000px;}
.ws72{word-spacing:0.546000px;}
.ws2c{word-spacing:0.594000px;}
.ws23{word-spacing:0.972000px;}
.ws3d{word-spacing:1.350000px;}
.ws5d{word-spacing:1.458000px;}
.wsa{word-spacing:1.584000px;}
.ws40{word-spacing:1.836000px;}
.ws81{word-spacing:1.974000px;}
.ws47{word-spacing:2.160000px;}
.ws56{word-spacing:2.322000px;}
.ws57{word-spacing:2.430000px;}
.ws21{word-spacing:2.538000px;}
.ws77{word-spacing:2.730000px;}
.ws32{word-spacing:2.754000px;}
.wsb{word-spacing:2.784000px;}
.wsf{word-spacing:2.832000px;}
.ws86{word-spacing:2.898000px;}
.ws16{word-spacing:2.970000px;}
.ws5c{word-spacing:3.078000px;}
.ws62{word-spacing:3.108000px;}
.ws24{word-spacing:3.240000px;}
.ws73{word-spacing:3.360000px;}
.ws66{word-spacing:4.032000px;}
.ws3a{word-spacing:4.212000px;}
.ws20{word-spacing:4.374000px;}
.ws76{word-spacing:4.452000px;}
.ws2e{word-spacing:4.482000px;}
.ws14{word-spacing:4.698000px;}
.ws9{word-spacing:4.848000px;}
.ws7b{word-spacing:4.872000px;}
.ws49{word-spacing:5.022000px;}
.ws2d{word-spacing:5.076000px;}
.ws42{word-spacing:5.238000px;}
.ws6e{word-spacing:5.292000px;}
.ws59{word-spacing:5.346000px;}
.ws28{word-spacing:5.562000px;}
.ws19{word-spacing:5.670000px;}
.ws4f{word-spacing:5.724000px;}
.ws53{word-spacing:5.778000px;}
.ws39{word-spacing:5.838000px;}
.ws78{word-spacing:5.964000px;}
.wsd{word-spacing:6.288000px;}
.ws88{word-spacing:6.510000px;}
.ws64{word-spacing:6.678000px;}
.ws41{word-spacing:6.804000px;}
.ws18{word-spacing:7.074000px;}
.ws83{word-spacing:7.140000px;}
.ws3c{word-spacing:7.182000px;}
.ws1a{word-spacing:7.290000px;}
.ws4d{word-spacing:7.614000px;}
.ws45{word-spacing:7.776000px;}
.ws8{word-spacing:8.442000px;}
.ws44{word-spacing:8.532000px;}
.ws4b{word-spacing:8.694000px;}
.ws2a{word-spacing:9.072000px;}
.ws6b{word-spacing:9.156000px;}
.ws31{word-spacing:9.180000px;}
.ws75{word-spacing:9.324000px;}
.ws26{word-spacing:9.342000px;}
.ws1e{word-spacing:9.612000px;}
.ws71{word-spacing:10.122000px;}
.ws5a{word-spacing:10.152000px;}
.ws63{word-spacing:10.626000px;}
.ws34{word-spacing:10.638000px;}
.ws36{word-spacing:10.704000px;}
.ws2b{word-spacing:10.746000px;}
.ws8b{word-spacing:10.794000px;}
.ws67{word-spacing:10.962000px;}
.ws27{word-spacing:11.070000px;}
.ws7a{word-spacing:11.298000px;}
.ws89{word-spacing:11.592000px;}
.ws5b{word-spacing:11.610000px;}
.ws37{word-spacing:11.712000px;}
.ws84{word-spacing:12.306000px;}
.ws25{word-spacing:12.420000px;}
.ws22{word-spacing:12.474000px;}
.ws30{word-spacing:12.798000px;}
.ws35{word-spacing:13.008000px;}
.ws33{word-spacing:13.068000px;}
.ws4e{word-spacing:13.338000px;}
.ws17{word-spacing:13.824000px;}
.ws6f{word-spacing:13.860000px;}
.ws80{word-spacing:14.406000px;}
.ws6d{word-spacing:14.490000px;}
.ws13{word-spacing:14.634000px;}
.ws68{word-spacing:14.658000px;}
.ws4c{word-spacing:15.606000px;}
.ws29{word-spacing:15.984000px;}
.ws87{word-spacing:16.128000px;}
.ws5e{word-spacing:16.308000px;}
.ws38{word-spacing:16.338000px;}
.ws7d{word-spacing:16.506000px;}
.ws48{word-spacing:17.172000px;}
.ws5f{word-spacing:19.170000px;}
.ws7e{word-spacing:19.362000px;}
.ws46{word-spacing:19.548000px;}
.ws8c{word-spacing:20.580000px;}
.ws7c{word-spacing:20.874000px;}
.ws43{word-spacing:21.060000px;}
.ws8a{word-spacing:21.336000px;}
.ws85{word-spacing:21.672000px;}
.ws61{word-spacing:23.922000px;}
.ws12{word-spacing:24.300000px;}
.ws15{word-spacing:24.840000px;}
.ws11{word-spacing:30.564000px;}
.ws7f{word-spacing:30.660000px;}
.ws60{word-spacing:40.014000px;}
._0{margin-left:-15.408000px;}
._2{margin-left:-10.512000px;}
._9{margin-left:-8.272800px;}
._1{margin-left:-5.760000px;}
._5{margin-left:-3.672000px;}
._a{margin-left:-2.668800px;}
._6{margin-left:-1.184400px;}
._4{width:1.296000px;}
._7{width:2.360400px;}
._3{width:3.441600px;}
._b{width:5.376000px;}
._e{width:7.219800px;}
._11{width:9.061200px;}
._14{width:10.177200px;}
._f{width:11.178000px;}
._12{width:12.376800px;}
._d{width:14.234400px;}
._10{width:16.117800px;}
._15{width:21.528600px;}
._13{width:23.792400px;}
._c{width:30.904200px;}
._8{width:488.160000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:73.070100px;}
.y4d{bottom:88.400100px;}
.ya9{bottom:126.800550px;}
.y65{bottom:127.087950px;}
.y5{bottom:128.222700px;}
.y3c{bottom:133.411650px;}
.y4b{bottom:134.011650px;}
.ya8{bottom:139.400550px;}
.y64{bottom:143.287950px;}
.y3b{bottom:149.611650px;}
.y4a{bottom:150.211650px;}
.ya7{bottom:151.853550px;}
.y4{bottom:153.548700px;}
.y63{bottom:159.487950px;}
.ya6{bottom:164.306550px;}
.y3a{bottom:165.811650px;}
.y49{bottom:166.411650px;}
.y62{bottom:175.687950px;}
.ya5{bottom:176.759550px;}
.y39{bottom:182.011650px;}
.y48{bottom:182.611650px;}
.ya4{bottom:189.212550px;}
.y61{bottom:191.887950px;}
.y38{bottom:198.211650px;}
.y47{bottom:198.811650px;}
.ya3{bottom:201.665550px;}
.y60{bottom:208.087950px;}
.y46{bottom:211.411650px;}
.ya2{bottom:214.118550px;}
.y37{bottom:214.411650px;}
.y45{bottom:224.011650px;}
.y5f{bottom:224.287950px;}
.ya1{bottom:226.571550px;}
.y36{bottom:230.611650px;}
.y44{bottom:236.611650px;}
.ya0{bottom:239.024550px;}
.y5e{bottom:240.487950px;}
.y35{bottom:246.811650px;}
.y43{bottom:251.011650px;}
.y9f{bottom:251.477550px;}
.y5d{bottom:256.687950px;}
.y34{bottom:263.011650px;}
.y9e{bottom:263.930550px;}
.y42{bottom:265.411500px;}
.y5c{bottom:272.887950px;}
.y9d{bottom:276.383550px;}
.y33{bottom:279.211650px;}
.y41{bottom:279.811500px;}
.y9c{bottom:288.836550px;}
.y5b{bottom:289.087950px;}
.y32{bottom:295.411650px;}
.y9b{bottom:301.289550px;}
.y5a{bottom:305.287950px;}
.y40{bottom:310.720650px;}
.y31{bottom:311.611650px;}
.y9a{bottom:313.742550px;}
.y59{bottom:321.487950px;}
.y99{bottom:326.195550px;}
.y3f{bottom:327.069150px;}
.y30{bottom:327.811650px;}
.y58{bottom:337.687950px;}
.y98{bottom:338.648550px;}
.y3e{bottom:343.417650px;}
.y2f{bottom:344.011650px;}
.y97{bottom:351.101550px;}
.y57{bottom:353.887950px;}
.y3d{bottom:359.766150px;}
.y2e{bottom:360.211650px;}
.y96{bottom:363.554550px;}
.y56{bottom:370.087950px;}
.y95{bottom:376.007550px;}
.y2d{bottom:376.411650px;}
.y55{bottom:386.287950px;}
.y94{bottom:388.460550px;}
.y2c{bottom:392.611650px;}
.y93{bottom:400.913550px;}
.y54{bottom:402.487950px;}
.y2b{bottom:408.811650px;}
.y92{bottom:413.366550px;}
.y2{bottom:416.116950px;}
.y53{bottom:418.687950px;}
.y2a{bottom:425.011650px;}
.y91{bottom:425.819550px;}
.y52{bottom:434.887950px;}
.y90{bottom:438.272550px;}
.y29{bottom:441.211650px;}
.y8f{bottom:450.725550px;}
.y51{bottom:451.087950px;}
.y28{bottom:457.411650px;}
.y8e{bottom:463.178550px;}
.y1{bottom:466.768950px;}
.y50{bottom:467.287950px;}
.y27{bottom:473.611650px;}
.y8d{bottom:475.631550px;}
.y4f{bottom:483.487950px;}
.y8c{bottom:488.084550px;}
.y26{bottom:489.811650px;}
.y4e{bottom:499.687950px;}
.y8b{bottom:500.537550px;}
.y25{bottom:506.011650px;}
.y8a{bottom:512.990550px;}
.y24{bottom:522.211650px;}
.y89{bottom:525.443550px;}
.y88{bottom:537.896550px;}
.y23{bottom:538.411650px;}
.yb1{bottom:543.000000px;}
.y87{bottom:550.349550px;}
.y22{bottom:554.611650px;}
.yb0{bottom:555.600000px;}
.y86{bottom:562.802550px;}
.yaf{bottom:568.200000px;}
.y21{bottom:570.811650px;}
.y85{bottom:575.255550px;}
.yae{bottom:580.800000px;}
.y20{bottom:587.011650px;}
.y84{bottom:587.708550px;}
.yad{bottom:593.400000px;}
.y83{bottom:600.161550px;}
.y1f{bottom:603.211650px;}
.yac{bottom:606.000000px;}
.y82{bottom:612.614550px;}
.yab{bottom:618.600000px;}
.y81{bottom:625.067550px;}
.yaa{bottom:631.200000px;}
.y80{bottom:637.520550px;}
.y1e{bottom:647.929050px;}
.y3{bottom:649.840500px;}
.y7f{bottom:649.973550px;}
.y7e{bottom:662.426550px;}
.y7d{bottom:674.879550px;}
.y1d{bottom:676.729050px;}
.y7c{bottom:687.332550px;}
.y1c{bottom:691.129050px;}
.y7b{bottom:699.785550px;}
.y1b{bottom:705.529050px;}
.y7a{bottom:712.238550px;}
.y1a{bottom:719.929050px;}
.y79{bottom:724.691550px;}
.y19{bottom:734.329050px;}
.y78{bottom:753.341550px;}
.y18{bottom:764.929050px;}
.y77{bottom:791.120550px;}
.y17{bottom:793.729050px;}
.y76{bottom:807.320550px;}
.y75{bottom:823.223550px;}
.y16{bottom:826.129050px;}
.y74{bottom:839.126550px;}
.y73{bottom:855.029550px;}
.y15{bottom:858.529200px;}
.y72{bottom:870.932550px;}
.y71{bottom:886.835550px;}
.y14{bottom:887.329200px;}
.y13{bottom:901.729200px;}
.y70{bottom:902.738550px;}
.y12{bottom:916.129200px;}
.y6f{bottom:918.641550px;}
.y11{bottom:930.529200px;}
.y10{bottom:944.929200px;}
.y6e{bottom:950.741400px;}
.yf{bottom:975.529050px;}
.yc0{bottom:982.971600px;}
.ye{bottom:988.129050px;}
.y6d{bottom:988.526400px;}
.ybf{bottom:994.971600px;}
.y6c{bottom:1004.429400px;}
.ybe{bottom:1006.971600px;}
.y9{bottom:1015.577700px;}
.y6b{bottom:1020.332400px;}
.yd{bottom:1022.329050px;}
.y6a{bottom:1036.235400px;}
.y8{bottom:1036.577700px;}
.ybd{bottom:1048.013400px;}
.yb8{bottom:1048.023900px;}
.y69{bottom:1052.138400px;}
.yb7{bottom:1058.828400px;}
.ybc{bottom:1061.516400px;}
.y68{bottom:1068.041400px;}
.yc{bottom:1069.129050px;}
.yb6{bottom:1069.632900px;}
.y7{bottom:1073.327700px;}
.ybb{bottom:1075.019400px;}
.yb5{bottom:1080.437400px;}
.y67{bottom:1083.941550px;}
.yba{bottom:1088.522400px;}
.yb4{bottom:1091.241900px;}
.y6{bottom:1094.327700px;}
.yb{bottom:1094.329050px;}
.y66{bottom:1099.841550px;}
.yb9{bottom:1102.025400px;}
.yb3{bottom:1102.046400px;}
.ya{bottom:1150.865100px;}
.yb2{bottom:1151.967600px;}
.h7{height:35.238000px;}
.hb{height:35.490000px;}
.h8{height:40.272000px;}
.ha{height:40.272600px;}
.h5{height:45.306000px;}
.h9{height:45.630000px;}
.h6{height:60.840000px;}
.h4{height:70.980000px;}
.h3{height:91.260000px;}
.h2{height:120.816000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299150px;}
.x2{left:122.286450px;}
.xd{left:133.074150px;}
.x1{left:136.063050px;}
.xe{left:176.726400px;}
.xa{left:186.744750px;}
.x5{left:269.483550px;}
.x7{left:272.423550px;}
.xb{left:290.043750px;}
.x8{left:322.823550px;}
.x6{left:330.215550px;}
.x16{left:353.431650px;}
.xc{left:368.041050px;}
.x3{left:383.030550px;}
.xf{left:390.633900px;}
.x4{left:438.617550px;}
.x10{left:457.087650px;}
.x11{left:483.858150px;}
.x14{left:513.679650px;}
.x19{left:521.599650px;}
.x13{left:542.556150px;}
.x12{left:550.426650px;}
.x15{left:592.668150px;}
.x17{left:620.767650px;}
.x18{left:624.295650px;}
@media print{
.v1{vertical-align:-1.248000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.858667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.426667pt;}
.ls1{letter-spacing:4.138667pt;}
.ls2{letter-spacing:5.550933pt;}
.ls5{letter-spacing:12.771733pt;}
.ws3e{word-spacing:-14.528000pt;}
.ws4{word-spacing:-11.280000pt;}
.ws7{word-spacing:-10.896000pt;}
.ws3{word-spacing:-10.026667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws1{word-spacing:-8.773333pt;}
.ws6{word-spacing:-8.474667pt;}
.ws3f{word-spacing:-7.914667pt;}
.ws54{word-spacing:-2.640000pt;}
.ws51{word-spacing:-2.592000pt;}
.ws1b{word-spacing:-1.920000pt;}
.ws79{word-spacing:-1.829333pt;}
.ws10{word-spacing:-1.664000pt;}
.ws74{word-spacing:-1.568000pt;}
.ws69{word-spacing:-1.456000pt;}
.wsc{word-spacing:-1.450667pt;}
.ws58{word-spacing:-1.344000pt;}
.ws6a{word-spacing:-1.120000pt;}
.ws3b{word-spacing:-1.104000pt;}
.ws1d{word-spacing:-1.008000pt;}
.wse{word-spacing:-0.853333pt;}
.ws70{word-spacing:-0.746667pt;}
.ws4a{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.187200pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.048000pt;}
.ws50{word-spacing:0.240000pt;}
.ws82{word-spacing:0.336000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws65{word-spacing:0.410667pt;}
.ws52{word-spacing:0.432000pt;}
.ws1f{word-spacing:0.480000pt;}
.ws72{word-spacing:0.485333pt;}
.ws2c{word-spacing:0.528000pt;}
.ws23{word-spacing:0.864000pt;}
.ws3d{word-spacing:1.200000pt;}
.ws5d{word-spacing:1.296000pt;}
.wsa{word-spacing:1.408000pt;}
.ws40{word-spacing:1.632000pt;}
.ws81{word-spacing:1.754667pt;}
.ws47{word-spacing:1.920000pt;}
.ws56{word-spacing:2.064000pt;}
.ws57{word-spacing:2.160000pt;}
.ws21{word-spacing:2.256000pt;}
.ws77{word-spacing:2.426667pt;}
.ws32{word-spacing:2.448000pt;}
.wsb{word-spacing:2.474667pt;}
.wsf{word-spacing:2.517333pt;}
.ws86{word-spacing:2.576000pt;}
.ws16{word-spacing:2.640000pt;}
.ws5c{word-spacing:2.736000pt;}
.ws62{word-spacing:2.762667pt;}
.ws24{word-spacing:2.880000pt;}
.ws73{word-spacing:2.986667pt;}
.ws66{word-spacing:3.584000pt;}
.ws3a{word-spacing:3.744000pt;}
.ws20{word-spacing:3.888000pt;}
.ws76{word-spacing:3.957333pt;}
.ws2e{word-spacing:3.984000pt;}
.ws14{word-spacing:4.176000pt;}
.ws9{word-spacing:4.309333pt;}
.ws7b{word-spacing:4.330667pt;}
.ws49{word-spacing:4.464000pt;}
.ws2d{word-spacing:4.512000pt;}
.ws42{word-spacing:4.656000pt;}
.ws6e{word-spacing:4.704000pt;}
.ws59{word-spacing:4.752000pt;}
.ws28{word-spacing:4.944000pt;}
.ws19{word-spacing:5.040000pt;}
.ws4f{word-spacing:5.088000pt;}
.ws53{word-spacing:5.136000pt;}
.ws39{word-spacing:5.189333pt;}
.ws78{word-spacing:5.301333pt;}
.wsd{word-spacing:5.589333pt;}
.ws88{word-spacing:5.786667pt;}
.ws64{word-spacing:5.936000pt;}
.ws41{word-spacing:6.048000pt;}
.ws18{word-spacing:6.288000pt;}
.ws83{word-spacing:6.346667pt;}
.ws3c{word-spacing:6.384000pt;}
.ws1a{word-spacing:6.480000pt;}
.ws4d{word-spacing:6.768000pt;}
.ws45{word-spacing:6.912000pt;}
.ws8{word-spacing:7.504000pt;}
.ws44{word-spacing:7.584000pt;}
.ws4b{word-spacing:7.728000pt;}
.ws2a{word-spacing:8.064000pt;}
.ws6b{word-spacing:8.138667pt;}
.ws31{word-spacing:8.160000pt;}
.ws75{word-spacing:8.288000pt;}
.ws26{word-spacing:8.304000pt;}
.ws1e{word-spacing:8.544000pt;}
.ws71{word-spacing:8.997333pt;}
.ws5a{word-spacing:9.024000pt;}
.ws63{word-spacing:9.445333pt;}
.ws34{word-spacing:9.456000pt;}
.ws36{word-spacing:9.514667pt;}
.ws2b{word-spacing:9.552000pt;}
.ws8b{word-spacing:9.594667pt;}
.ws67{word-spacing:9.744000pt;}
.ws27{word-spacing:9.840000pt;}
.ws7a{word-spacing:10.042667pt;}
.ws89{word-spacing:10.304000pt;}
.ws5b{word-spacing:10.320000pt;}
.ws37{word-spacing:10.410667pt;}
.ws84{word-spacing:10.938667pt;}
.ws25{word-spacing:11.040000pt;}
.ws22{word-spacing:11.088000pt;}
.ws30{word-spacing:11.376000pt;}
.ws35{word-spacing:11.562667pt;}
.ws33{word-spacing:11.616000pt;}
.ws4e{word-spacing:11.856000pt;}
.ws17{word-spacing:12.288000pt;}
.ws6f{word-spacing:12.320000pt;}
.ws80{word-spacing:12.805333pt;}
.ws6d{word-spacing:12.880000pt;}
.ws13{word-spacing:13.008000pt;}
.ws68{word-spacing:13.029333pt;}
.ws4c{word-spacing:13.872000pt;}
.ws29{word-spacing:14.208000pt;}
.ws87{word-spacing:14.336000pt;}
.ws5e{word-spacing:14.496000pt;}
.ws38{word-spacing:14.522667pt;}
.ws7d{word-spacing:14.672000pt;}
.ws48{word-spacing:15.264000pt;}
.ws5f{word-spacing:17.040000pt;}
.ws7e{word-spacing:17.210667pt;}
.ws46{word-spacing:17.376000pt;}
.ws8c{word-spacing:18.293333pt;}
.ws7c{word-spacing:18.554667pt;}
.ws43{word-spacing:18.720000pt;}
.ws8a{word-spacing:18.965333pt;}
.ws85{word-spacing:19.264000pt;}
.ws61{word-spacing:21.264000pt;}
.ws12{word-spacing:21.600000pt;}
.ws15{word-spacing:22.080000pt;}
.ws11{word-spacing:27.168000pt;}
.ws7f{word-spacing:27.253333pt;}
.ws60{word-spacing:35.568000pt;}
._0{margin-left:-13.696000pt;}
._2{margin-left:-9.344000pt;}
._9{margin-left:-7.353600pt;}
._1{margin-left:-5.120000pt;}
._5{margin-left:-3.264000pt;}
._a{margin-left:-2.372267pt;}
._6{margin-left:-1.052800pt;}
._4{width:1.152000pt;}
._7{width:2.098133pt;}
._3{width:3.059200pt;}
._b{width:4.778667pt;}
._e{width:6.417600pt;}
._11{width:8.054400pt;}
._14{width:9.046400pt;}
._f{width:9.936000pt;}
._12{width:11.001600pt;}
._d{width:12.652800pt;}
._10{width:14.326933pt;}
._15{width:19.136533pt;}
._13{width:21.148800pt;}
._c{width:27.470400pt;}
._8{width:433.920000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:64.951200pt;}
.y4d{bottom:78.577867pt;}
.ya9{bottom:112.711600pt;}
.y65{bottom:112.967067pt;}
.y5{bottom:113.975733pt;}
.y3c{bottom:118.588133pt;}
.y4b{bottom:119.121467pt;}
.ya8{bottom:123.911600pt;}
.y64{bottom:127.367067pt;}
.y3b{bottom:132.988133pt;}
.y4a{bottom:133.521467pt;}
.ya7{bottom:134.980933pt;}
.y4{bottom:136.487733pt;}
.y63{bottom:141.767067pt;}
.ya6{bottom:146.050267pt;}
.y3a{bottom:147.388133pt;}
.y49{bottom:147.921467pt;}
.y62{bottom:156.167067pt;}
.ya5{bottom:157.119600pt;}
.y39{bottom:161.788133pt;}
.y48{bottom:162.321467pt;}
.ya4{bottom:168.188933pt;}
.y61{bottom:170.567067pt;}
.y38{bottom:176.188133pt;}
.y47{bottom:176.721467pt;}
.ya3{bottom:179.258267pt;}
.y60{bottom:184.967067pt;}
.y46{bottom:187.921467pt;}
.ya2{bottom:190.327600pt;}
.y37{bottom:190.588133pt;}
.y45{bottom:199.121467pt;}
.y5f{bottom:199.367067pt;}
.ya1{bottom:201.396933pt;}
.y36{bottom:204.988133pt;}
.y44{bottom:210.321467pt;}
.ya0{bottom:212.466267pt;}
.y5e{bottom:213.767067pt;}
.y35{bottom:219.388133pt;}
.y43{bottom:223.121467pt;}
.y9f{bottom:223.535600pt;}
.y5d{bottom:228.167067pt;}
.y34{bottom:233.788133pt;}
.y9e{bottom:234.604933pt;}
.y42{bottom:235.921333pt;}
.y5c{bottom:242.567067pt;}
.y9d{bottom:245.674267pt;}
.y33{bottom:248.188133pt;}
.y41{bottom:248.721333pt;}
.y9c{bottom:256.743600pt;}
.y5b{bottom:256.967067pt;}
.y32{bottom:262.588133pt;}
.y9b{bottom:267.812933pt;}
.y5a{bottom:271.367067pt;}
.y40{bottom:276.196133pt;}
.y31{bottom:276.988133pt;}
.y9a{bottom:278.882267pt;}
.y59{bottom:285.767067pt;}
.y99{bottom:289.951600pt;}
.y3f{bottom:290.728133pt;}
.y30{bottom:291.388133pt;}
.y58{bottom:300.167067pt;}
.y98{bottom:301.020933pt;}
.y3e{bottom:305.260133pt;}
.y2f{bottom:305.788133pt;}
.y97{bottom:312.090267pt;}
.y57{bottom:314.567067pt;}
.y3d{bottom:319.792133pt;}
.y2e{bottom:320.188133pt;}
.y96{bottom:323.159600pt;}
.y56{bottom:328.967067pt;}
.y95{bottom:334.228933pt;}
.y2d{bottom:334.588133pt;}
.y55{bottom:343.367067pt;}
.y94{bottom:345.298267pt;}
.y2c{bottom:348.988133pt;}
.y93{bottom:356.367600pt;}
.y54{bottom:357.767067pt;}
.y2b{bottom:363.388133pt;}
.y92{bottom:367.436933pt;}
.y2{bottom:369.881733pt;}
.y53{bottom:372.167067pt;}
.y2a{bottom:377.788133pt;}
.y91{bottom:378.506267pt;}
.y52{bottom:386.567067pt;}
.y90{bottom:389.575600pt;}
.y29{bottom:392.188133pt;}
.y8f{bottom:400.644933pt;}
.y51{bottom:400.967067pt;}
.y28{bottom:406.588133pt;}
.y8e{bottom:411.714267pt;}
.y1{bottom:414.905733pt;}
.y50{bottom:415.367067pt;}
.y27{bottom:420.988133pt;}
.y8d{bottom:422.783600pt;}
.y4f{bottom:429.767067pt;}
.y8c{bottom:433.852933pt;}
.y26{bottom:435.388133pt;}
.y4e{bottom:444.167067pt;}
.y8b{bottom:444.922267pt;}
.y25{bottom:449.788133pt;}
.y8a{bottom:455.991600pt;}
.y24{bottom:464.188133pt;}
.y89{bottom:467.060933pt;}
.y88{bottom:478.130267pt;}
.y23{bottom:478.588133pt;}
.yb1{bottom:482.666667pt;}
.y87{bottom:489.199600pt;}
.y22{bottom:492.988133pt;}
.yb0{bottom:493.866667pt;}
.y86{bottom:500.268933pt;}
.yaf{bottom:505.066667pt;}
.y21{bottom:507.388133pt;}
.y85{bottom:511.338267pt;}
.yae{bottom:516.266667pt;}
.y20{bottom:521.788133pt;}
.y84{bottom:522.407600pt;}
.yad{bottom:527.466667pt;}
.y83{bottom:533.476933pt;}
.y1f{bottom:536.188133pt;}
.yac{bottom:538.666667pt;}
.y82{bottom:544.546267pt;}
.yab{bottom:549.866667pt;}
.y81{bottom:555.615600pt;}
.yaa{bottom:561.066667pt;}
.y80{bottom:566.684933pt;}
.y1e{bottom:575.936933pt;}
.y3{bottom:577.636000pt;}
.y7f{bottom:577.754267pt;}
.y7e{bottom:588.823600pt;}
.y7d{bottom:599.892933pt;}
.y1d{bottom:601.536933pt;}
.y7c{bottom:610.962267pt;}
.y1c{bottom:614.336933pt;}
.y7b{bottom:622.031600pt;}
.y1b{bottom:627.136933pt;}
.y7a{bottom:633.100933pt;}
.y1a{bottom:639.936933pt;}
.y79{bottom:644.170267pt;}
.y19{bottom:652.736933pt;}
.y78{bottom:669.636933pt;}
.y18{bottom:679.936933pt;}
.y77{bottom:703.218267pt;}
.y17{bottom:705.536933pt;}
.y76{bottom:717.618267pt;}
.y75{bottom:731.754267pt;}
.y16{bottom:734.336933pt;}
.y74{bottom:745.890267pt;}
.y73{bottom:760.026267pt;}
.y15{bottom:763.137067pt;}
.y72{bottom:774.162267pt;}
.y71{bottom:788.298267pt;}
.y14{bottom:788.737067pt;}
.y13{bottom:801.537067pt;}
.y70{bottom:802.434267pt;}
.y12{bottom:814.337067pt;}
.y6f{bottom:816.570267pt;}
.y11{bottom:827.137067pt;}
.y10{bottom:839.937067pt;}
.y6e{bottom:845.103467pt;}
.yf{bottom:867.136933pt;}
.yc0{bottom:873.752533pt;}
.ye{bottom:878.336933pt;}
.y6d{bottom:878.690133pt;}
.ybf{bottom:884.419200pt;}
.y6c{bottom:892.826133pt;}
.ybe{bottom:895.085867pt;}
.y9{bottom:902.735733pt;}
.y6b{bottom:906.962133pt;}
.yd{bottom:908.736933pt;}
.y6a{bottom:921.098133pt;}
.y8{bottom:921.402400pt;}
.ybd{bottom:931.567467pt;}
.yb8{bottom:931.576800pt;}
.y69{bottom:935.234133pt;}
.yb7{bottom:941.180800pt;}
.ybc{bottom:943.570133pt;}
.y68{bottom:949.370133pt;}
.yc{bottom:950.336933pt;}
.yb6{bottom:950.784800pt;}
.y7{bottom:954.069067pt;}
.ybb{bottom:955.572800pt;}
.yb5{bottom:960.388800pt;}
.y67{bottom:963.503600pt;}
.yba{bottom:967.575467pt;}
.yb4{bottom:969.992800pt;}
.y6{bottom:972.735733pt;}
.yb{bottom:972.736933pt;}
.y66{bottom:977.636933pt;}
.yb9{bottom:979.578133pt;}
.yb3{bottom:979.596800pt;}
.ya{bottom:1022.991200pt;}
.yb2{bottom:1023.971200pt;}
.h7{height:31.322667pt;}
.hb{height:31.546667pt;}
.h8{height:35.797333pt;}
.ha{height:35.797867pt;}
.h5{height:40.272000pt;}
.h9{height:40.560000pt;}
.h6{height:54.080000pt;}
.h4{height:63.093333pt;}
.h3{height:81.120000pt;}
.h2{height:107.392000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488133pt;}
.x2{left:108.699067pt;}
.xd{left:118.288133pt;}
.x1{left:120.944933pt;}
.xe{left:157.090133pt;}
.xa{left:165.995333pt;}
.x5{left:239.540933pt;}
.x7{left:242.154267pt;}
.xb{left:257.816667pt;}
.x8{left:286.954267pt;}
.x6{left:293.524933pt;}
.x16{left:314.161467pt;}
.xc{left:327.147600pt;}
.x3{left:340.471600pt;}
.xf{left:347.230133pt;}
.x4{left:389.882267pt;}
.x10{left:406.300133pt;}
.x11{left:430.096133pt;}
.x14{left:456.604133pt;}
.x19{left:463.644133pt;}
.x13{left:482.272133pt;}
.x12{left:489.268133pt;}
.x15{left:526.816133pt;}
.x17{left:551.793467pt;}
.x18{left:554.929467pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  