
    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_01a28068b6423ea6bbec5115.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f14ded729346b28508f16a98.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_7f5766f5aefbc9fd801cfc90.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_b733c462b0eb7ed0bbf908da.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_4638587fac5b416e381617c1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_efdadc4ccbebe0e030452010.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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:ff8;src:url('chunks/assets/font_516c5a10878f70f77d9ec1ac.woff')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls9{letter-spacing:9.360000px;}
.ls8{letter-spacing:12.960000px;}
.ls7{letter-spacing:24.660000px;}
.ls5{letter-spacing:26.064000px;}
.lsa{letter-spacing:33.120000px;}
.ls6{letter-spacing:33.960000px;}
.lsf{letter-spacing:33.984000px;}
.ls0{letter-spacing:42.821280px;}
.lse{letter-spacing:48.360000px;}
.lsd{letter-spacing:51.960000px;}
.ls13{letter-spacing:64.200000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-8.126640px;}
._2{margin-left:-6.990000px;}
._3{margin-left:-4.740000px;}
._0{margin-left:-2.484000px;}
._4{margin-left:-1.386000px;}
._1{width:1.674000px;}
._e{width:2.988000px;}
._8{width:4.464000px;}
._9{width:5.472000px;}
._d{width:6.606000px;}
._15{width:8.136000px;}
._c{width:9.792000px;}
._1b{width:11.610000px;}
._f{width:12.726000px;}
._b{width:13.824000px;}
._a{width:15.768000px;}
._10{width:16.848000px;}
._6{width:19.008000px;}
._7{width:20.214000px;}
._11{width:21.864000px;}
._1c{width:23.256000px;}
._1d{width:24.552000px;}
._12{width:25.560000px;}
._5{width:26.712000px;}
._21{width:28.224000px;}
._13{width:29.520000px;}
._14{width:30.744000px;}
._19{width:31.968000px;}
._1a{width:33.012000px;}
._20{width:34.452000px;}
._22{width:35.712000px;}
._16{width:37.152000px;}
._17{width:38.448000px;}
._1f{width:40.032000px;}
._1e{width:41.616000px;}
._26{width:42.912000px;}
._25{width:44.040000px;}
._23{width:46.152000px;}
._24{width:47.658000px;}
._28{width:48.684000px;}
._27{width:49.686000px;}
._29{width:98.640000px;}
._2a{width:245.088000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:26.280000px;}
.y9{bottom:34.920000px;}
.y7{bottom:41.940000px;}
.y33{bottom:46.080000px;}
.y6{bottom:57.450000px;}
.y5{bottom:72.930000px;}
.y32{bottom:73.980000px;}
.y4{bottom:88.410000px;}
.y3{bottom:104.070000px;}
.ya5{bottom:116.100000px;}
.yc9{bottom:118.440000px;}
.y2{bottom:119.550000px;}
.y88{bottom:131.040000px;}
.y30{bottom:131.580000px;}
.ya4{bottom:136.836000px;}
.yc8{bottom:139.176000px;}
.ye3{bottom:151.770000px;}
.y2f{bottom:152.310000px;}
.ya3{bottom:157.530000px;}
.yc7{bottom:159.870000px;}
.y87{bottom:160.770000px;}
.y116{bottom:172.110000px;}
.ye2{bottom:172.470000px;}
.y2e{bottom:173.010000px;}
.ya2{bottom:178.230000px;}
.yc6{bottom:180.570000px;}
.y86{bottom:190.470000px;}
.y115{bottom:192.810000px;}
.y5d{bottom:193.170000px;}
.y2d{bottom:193.710000px;}
.ye1{bottom:202.170000px;}
.ya1{bottom:207.930000px;}
.yc5{bottom:210.270000px;}
.y114{bottom:213.510000px;}
.y5c{bottom:213.870000px;}
.y85{bottom:220.170000px;}
.y2c{bottom:223.410000px;}
.ya0{bottom:228.630000px;}
.ye0{bottom:231.870000px;}
.y113{bottom:234.210000px;}
.y5b{bottom:234.570000px;}
.yc4{bottom:239.970000px;}
.y84{bottom:240.870000px;}
.y2b{bottom:244.110000px;}
.ydf{bottom:252.570000px;}
.y112{bottom:254.910000px;}
.y5a{bottom:255.270000px;}
.y9f{bottom:258.330000px;}
.yc3{bottom:260.670000px;}
.y83{bottom:261.570000px;}
.y2a{bottom:264.810000px;}
.yde{bottom:273.270000px;}
.y59{bottom:275.970000px;}
.y9e{bottom:279.030000px;}
.y111{bottom:284.610000px;}
.yfc{bottom:284.970000px;}
.y29{bottom:285.510000px;}
.yc2{bottom:290.370000px;}
.y82{bottom:291.270000px;}
.ydd{bottom:293.970000px;}
.y58{bottom:296.670000px;}
.y9d{bottom:299.730000px;}
.y28{bottom:306.210000px;}
.y81{bottom:311.970000px;}
.yfb{bottom:314.670000px;}
.y57{bottom:317.370000px;}
.yc1{bottom:320.070000px;}
.y9c{bottom:320.430000px;}
.ydc{bottom:323.670000px;}
.y110{bottom:326.370000px;}
.y27{bottom:326.910000px;}
.y80{bottom:332.670000px;}
.yfa{bottom:335.370000px;}
.y56{bottom:338.070000px;}
.yc0{bottom:340.770000px;}
.y9b{bottom:341.130000px;}
.ydb{bottom:344.370000px;}
.y10f{bottom:347.070000px;}
.y7f{bottom:353.370000px;}
.yf9{bottom:356.070000px;}
.y26{bottom:356.610000px;}
.y55{bottom:358.770000px;}
.ybf{bottom:361.470000px;}
.yda{bottom:365.070000px;}
.y10e{bottom:367.770000px;}
.y9a{bottom:370.830000px;}
.yf8{bottom:376.770000px;}
.y25{bottom:377.310000px;}
.y54{bottom:379.290000px;}
.y7e{bottom:383.070000px;}
.yd9{bottom:385.770000px;}
.y10d{bottom:388.335000px;}
.ybe{bottom:391.215000px;}
.yf7{bottom:397.515000px;}
.y24{bottom:398.055000px;}
.y53{bottom:400.035000px;}
.y99{bottom:400.575000px;}
.yd8{bottom:406.515000px;}
.y10c{bottom:409.035000px;}
.y7d{bottom:412.815000px;}
.y23{bottom:418.755000px;}
.ybd{bottom:420.915000px;}
.y98{bottom:421.275000px;}
.yf6{bottom:427.215000px;}
.y10b{bottom:429.735000px;}
.y7c{bottom:433.515000px;}
.yd7{bottom:436.215000px;}
.y22{bottom:439.455000px;}
.ybc{bottom:441.615000px;}
.y52{bottom:441.795000px;}
.y97{bottom:441.975000px;}
.yf5{bottom:447.915000px;}
.y10a{bottom:450.435000px;}
.y7b{bottom:454.215000px;}
.yd6{bottom:456.915000px;}
.y51{bottom:462.495000px;}
.yf4{bottom:468.615000px;}
.y21{bottom:469.695000px;}
.ybb{bottom:471.315000px;}
.y7a{bottom:474.915000px;}
.y50{bottom:483.195000px;}
.y96{bottom:483.735000px;}
.yd5{bottom:486.615000px;}
.yba{bottom:492.015000px;}
.y109{bottom:492.195000px;}
.yf3{bottom:498.315000px;}
.y20{bottom:502.275000px;}
.y4f{bottom:503.895000px;}
.y95{bottom:504.435000px;}
.y79{bottom:504.615000px;}
.y129{bottom:506.595000px;}
.yd4{bottom:516.315000px;}
.yb9{bottom:521.715000px;}
.y108{bottom:521.895000px;}
.y1f{bottom:522.975000px;}
.y94{bottom:525.135000px;}
.yf2{bottom:528.015000px;}
.y4e{bottom:533.595000px;}
.y78{bottom:534.315000px;}
.y128{bottom:536.295000px;}
.yd3{bottom:537.015000px;}
.yb8{bottom:542.415000px;}
.y93{bottom:545.835000px;}
.yf1{bottom:548.715000px;}
.y107{bottom:551.595000px;}
.y1e{bottom:552.675000px;}
.y77{bottom:555.015000px;}
.yb7{bottom:563.115000px;}
.y127{bottom:565.995000px;}
.y92{bottom:566.535000px;}
.yd2{bottom:566.715000px;}
.y4d{bottom:572.295000px;}
.y1d{bottom:573.375000px;}
.y76{bottom:575.715000px;}
.yf0{bottom:578.415000px;}
.y126{bottom:586.695000px;}
.yd1{bottom:587.415000px;}
.yb6{bottom:592.815000px;}
.y4c{bottom:592.995000px;}
.y1c{bottom:594.075000px;}
.y75{bottom:596.415000px;}
.yef{bottom:599.115000px;}
.y125{bottom:607.395000px;}
.y91{bottom:608.115000px;}
.y4b{bottom:613.695000px;}
.y1b{bottom:614.775000px;}
.yee{bottom:619.815000px;}
.yb5{bottom:622.515000px;}
.y74{bottom:626.115000px;}
.y124{bottom:628.095000px;}
.y90{bottom:628.815000px;}
.y4a{bottom:634.395000px;}
.y1a{bottom:635.475000px;}
.yd0{bottom:637.815000px;}
.yb4{bottom:643.245000px;}
.y73{bottom:646.845000px;}
.y8f{bottom:649.545000px;}
.y49{bottom:655.125000px;}
.y19{bottom:656.205000px;}
.y123{bottom:657.825000px;}
.ycf{bottom:658.545000px;}
.y72{bottom:667.545000px;}
.yed{bottom:670.245000px;}
.yb3{bottom:672.945000px;}
.y48{bottom:675.825000px;}
.y18{bottom:676.905000px;}
.y122{bottom:678.525000px;}
.y8e{bottom:679.245000px;}
.y106{bottom:684.825000px;}
.y71{bottom:688.245000px;}
.yec{bottom:690.945000px;}
.yb2{bottom:693.645000px;}
.y17{bottom:697.605000px;}
.y121{bottom:699.225000px;}
.yce{bottom:699.945000px;}
.y47{bottom:705.525000px;}
.y8d{bottom:708.945000px;}
.yeb{bottom:711.645000px;}
.y70{bottom:717.945000px;}
.y16{bottom:718.305000px;}
.yb1{bottom:723.345000px;}
.y46{bottom:726.225000px;}
.y120{bottom:728.925000px;}
.y8c{bottom:729.645000px;}
.y6f{bottom:738.645000px;}
.y15{bottom:739.005000px;}
.yea{bottom:741.345000px;}
.yb0{bottom:744.045000px;}
.y45{bottom:746.925000px;}
.y11f{bottom:749.625000px;}
.y6e{bottom:759.345000px;}
.y14{bottom:759.705000px;}
.yaf{bottom:764.745000px;}
.y44{bottom:767.625000px;}
.y11e{bottom:770.325000px;}
.ye9{bottom:771.045000px;}
.y6d{bottom:780.045000px;}
.y13{bottom:780.405000px;}
.y43{bottom:788.325000px;}
.y11d{bottom:791.025000px;}
.ye8{bottom:791.745000px;}
.yae{bottom:794.445000px;}
.y6c{bottom:800.745000px;}
.y12{bottom:801.105000px;}
.y42{bottom:809.025000px;}
.ye7{bottom:812.445000px;}
.y11c{bottom:820.725000px;}
.y6b{bottom:821.445000px;}
.yad{bottom:824.145000px;}
.y41{bottom:829.725000px;}
.y11{bottom:831.345000px;}
.ye6{bottom:833.145000px;}
.y105{bottom:838.725000px;}
.y11b{bottom:841.425000px;}
.y6a{bottom:842.145000px;}
.yac{bottom:844.845000px;}
.ye5{bottom:853.845000px;}
.y40{bottom:859.425000px;}
.y11a{bottom:862.125000px;}
.y69{bottom:862.845000px;}
.y10{bottom:864.645000px;}
.yab{bottom:874.545000px;}
.y104{bottom:880.125000px;}
.y8b{bottom:883.545000px;}
.y3f{bottom:889.125000px;}
.y119{bottom:891.825000px;}
.y68{bottom:892.590000px;}
.yaa{bottom:895.290000px;}
.yf{bottom:896.370000px;}
.y103{bottom:900.870000px;}
.y8a{bottom:904.290000px;}
.y3e{bottom:909.870000px;}
.y118{bottom:912.570000px;}
.y67{bottom:913.290000px;}
.y102{bottom:921.570000px;}
.ye{bottom:923.010000px;}
.ya9{bottom:924.990000px;}
.y3d{bottom:930.570000px;}
.y66{bottom:933.990000px;}
.y101{bottom:942.270000px;}
.ya8{bottom:945.690000px;}
.y3c{bottom:951.270000px;}
.yd{bottom:953.790000px;}
.y65{bottom:954.690000px;}
.y100{bottom:962.970000px;}
.y89{bottom:963.690000px;}
.ya7{bottom:966.390000px;}
.y3b{bottom:971.970000px;}
.ye4{bottom:975.390000px;}
.yff{bottom:983.670000px;}
.y64{bottom:984.390000px;}
.y3a{bottom:992.670000px;}
.ya6{bottom:996.090000px;}
.yc{bottom:997.350000px;}
.yfe{bottom:1004.370000px;}
.y63{bottom:1005.090000px;}
.y39{bottom:1013.370000px;}
.y117{bottom:1013.910000px;}
.ycd{bottom:1014.090000px;}
.y62{bottom:1025.790000px;}
.yb{bottom:1031.910000px;}
.y38{bottom:1034.070000px;}
.ycc{bottom:1034.790000px;}
.y61{bottom:1046.490000px;}
.y37{bottom:1054.770000px;}
.ycb{bottom:1055.490000px;}
.yfd{bottom:1064.310000px;}
.y60{bottom:1067.190000px;}
.ya{bottom:1072.590000px;}
.yca{bottom:1076.190000px;}
.y36{bottom:1085.010000px;}
.y5f{bottom:1087.890000px;}
.y1{bottom:1096.890000px;}
.y5e{bottom:1108.590000px;}
.y35{bottom:1117.590000px;}
.y34{bottom:1138.290000px;}
.y31{bottom:1204.740000px;}
.h4{height:2.082656px;}
.h3{height:39.049805px;}
.h8{height:43.215117px;}
.h5{height:47.901094px;}
.hf{height:48.761719px;}
.ha{height:52.066406px;}
.hd{height:52.417969px;}
.hc{height:58.574531px;}
.h7{height:60.972891px;}
.he{height:63.667969px;}
.hb{height:64.160156px;}
.h9{height:75.067383px;}
.h6{height:107.147461px;}
.h2{height:132.156000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:237.450000px;}
.w2{width:538.665000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:58.500000px;}
.x3{left:73.836000px;}
.x6{left:108.035987px;}
.x7{left:109.295987px;}
.xe{left:129.275987px;}
.x12{left:133.595987px;}
.xf{left:135.035987px;}
.x13{left:140.075987px;}
.xa{left:145.475987px;}
.x11{left:156.269987px;}
.xc{left:159.329987px;}
.x10{left:162.029987px;}
.x8{left:190.649987px;}
.x5{left:229.365000px;}
.xb{left:263.369987px;}
.xd{left:448.814987px;}
.x9{left:457.094987px;}
.x4{left:597.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls9{letter-spacing:8.320000pt;}
.ls8{letter-spacing:11.520000pt;}
.ls7{letter-spacing:21.920000pt;}
.ls5{letter-spacing:23.168000pt;}
.lsa{letter-spacing:29.440000pt;}
.ls6{letter-spacing:30.186667pt;}
.lsf{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.063360pt;}
.lse{letter-spacing:42.986667pt;}
.lsd{letter-spacing:46.186667pt;}
.ls13{letter-spacing:57.066667pt;}
.ws6{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-7.223680pt;}
._2{margin-left:-6.213333pt;}
._3{margin-left:-4.213333pt;}
._0{margin-left:-2.208000pt;}
._4{margin-left:-1.232000pt;}
._1{width:1.488000pt;}
._e{width:2.656000pt;}
._8{width:3.968000pt;}
._9{width:4.864000pt;}
._d{width:5.872000pt;}
._15{width:7.232000pt;}
._c{width:8.704000pt;}
._1b{width:10.320000pt;}
._f{width:11.312000pt;}
._b{width:12.288000pt;}
._a{width:14.016000pt;}
._10{width:14.976000pt;}
._6{width:16.896000pt;}
._7{width:17.968000pt;}
._11{width:19.434667pt;}
._1c{width:20.672000pt;}
._1d{width:21.824000pt;}
._12{width:22.720000pt;}
._5{width:23.744000pt;}
._21{width:25.088000pt;}
._13{width:26.240000pt;}
._14{width:27.328000pt;}
._19{width:28.416000pt;}
._1a{width:29.344000pt;}
._20{width:30.624000pt;}
._22{width:31.744000pt;}
._16{width:33.024000pt;}
._17{width:34.176000pt;}
._1f{width:35.584000pt;}
._1e{width:36.992000pt;}
._26{width:38.144000pt;}
._25{width:39.146667pt;}
._23{width:41.024000pt;}
._24{width:42.362667pt;}
._28{width:43.274667pt;}
._27{width:44.165333pt;}
._29{width:87.680000pt;}
._2a{width:217.856000pt;}
.fs1{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:23.360000pt;}
.y9{bottom:31.040000pt;}
.y7{bottom:37.280000pt;}
.y33{bottom:40.960000pt;}
.y6{bottom:51.066667pt;}
.y5{bottom:64.826667pt;}
.y32{bottom:65.760000pt;}
.y4{bottom:78.586667pt;}
.y3{bottom:92.506667pt;}
.ya5{bottom:103.200000pt;}
.yc9{bottom:105.280000pt;}
.y2{bottom:106.266667pt;}
.y88{bottom:116.480000pt;}
.y30{bottom:116.960000pt;}
.ya4{bottom:121.632000pt;}
.yc8{bottom:123.712000pt;}
.ye3{bottom:134.906667pt;}
.y2f{bottom:135.386667pt;}
.ya3{bottom:140.026667pt;}
.yc7{bottom:142.106667pt;}
.y87{bottom:142.906667pt;}
.y116{bottom:152.986667pt;}
.ye2{bottom:153.306667pt;}
.y2e{bottom:153.786667pt;}
.ya2{bottom:158.426667pt;}
.yc6{bottom:160.506667pt;}
.y86{bottom:169.306667pt;}
.y115{bottom:171.386667pt;}
.y5d{bottom:171.706667pt;}
.y2d{bottom:172.186667pt;}
.ye1{bottom:179.706667pt;}
.ya1{bottom:184.826667pt;}
.yc5{bottom:186.906667pt;}
.y114{bottom:189.786667pt;}
.y5c{bottom:190.106667pt;}
.y85{bottom:195.706667pt;}
.y2c{bottom:198.586667pt;}
.ya0{bottom:203.226667pt;}
.ye0{bottom:206.106667pt;}
.y113{bottom:208.186667pt;}
.y5b{bottom:208.506667pt;}
.yc4{bottom:213.306667pt;}
.y84{bottom:214.106667pt;}
.y2b{bottom:216.986667pt;}
.ydf{bottom:224.506667pt;}
.y112{bottom:226.586667pt;}
.y5a{bottom:226.906667pt;}
.y9f{bottom:229.626667pt;}
.yc3{bottom:231.706667pt;}
.y83{bottom:232.506667pt;}
.y2a{bottom:235.386667pt;}
.yde{bottom:242.906667pt;}
.y59{bottom:245.306667pt;}
.y9e{bottom:248.026667pt;}
.y111{bottom:252.986667pt;}
.yfc{bottom:253.306667pt;}
.y29{bottom:253.786667pt;}
.yc2{bottom:258.106667pt;}
.y82{bottom:258.906667pt;}
.ydd{bottom:261.306667pt;}
.y58{bottom:263.706667pt;}
.y9d{bottom:266.426667pt;}
.y28{bottom:272.186667pt;}
.y81{bottom:277.306667pt;}
.yfb{bottom:279.706667pt;}
.y57{bottom:282.106667pt;}
.yc1{bottom:284.506667pt;}
.y9c{bottom:284.826667pt;}
.ydc{bottom:287.706667pt;}
.y110{bottom:290.106667pt;}
.y27{bottom:290.586667pt;}
.y80{bottom:295.706667pt;}
.yfa{bottom:298.106667pt;}
.y56{bottom:300.506667pt;}
.yc0{bottom:302.906667pt;}
.y9b{bottom:303.226667pt;}
.ydb{bottom:306.106667pt;}
.y10f{bottom:308.506667pt;}
.y7f{bottom:314.106667pt;}
.yf9{bottom:316.506667pt;}
.y26{bottom:316.986667pt;}
.y55{bottom:318.906667pt;}
.ybf{bottom:321.306667pt;}
.yda{bottom:324.506667pt;}
.y10e{bottom:326.906667pt;}
.y9a{bottom:329.626667pt;}
.yf8{bottom:334.906667pt;}
.y25{bottom:335.386667pt;}
.y54{bottom:337.146667pt;}
.y7e{bottom:340.506667pt;}
.yd9{bottom:342.906667pt;}
.y10d{bottom:345.186667pt;}
.ybe{bottom:347.746667pt;}
.yf7{bottom:353.346667pt;}
.y24{bottom:353.826667pt;}
.y53{bottom:355.586667pt;}
.y99{bottom:356.066667pt;}
.yd8{bottom:361.346667pt;}
.y10c{bottom:363.586667pt;}
.y7d{bottom:366.946667pt;}
.y23{bottom:372.226667pt;}
.ybd{bottom:374.146667pt;}
.y98{bottom:374.466667pt;}
.yf6{bottom:379.746667pt;}
.y10b{bottom:381.986667pt;}
.y7c{bottom:385.346667pt;}
.yd7{bottom:387.746667pt;}
.y22{bottom:390.626667pt;}
.ybc{bottom:392.546667pt;}
.y52{bottom:392.706667pt;}
.y97{bottom:392.866667pt;}
.yf5{bottom:398.146667pt;}
.y10a{bottom:400.386667pt;}
.y7b{bottom:403.746667pt;}
.yd6{bottom:406.146667pt;}
.y51{bottom:411.106667pt;}
.yf4{bottom:416.546667pt;}
.y21{bottom:417.506667pt;}
.ybb{bottom:418.946667pt;}
.y7a{bottom:422.146667pt;}
.y50{bottom:429.506667pt;}
.y96{bottom:429.986667pt;}
.yd5{bottom:432.546667pt;}
.yba{bottom:437.346667pt;}
.y109{bottom:437.506667pt;}
.yf3{bottom:442.946667pt;}
.y20{bottom:446.466667pt;}
.y4f{bottom:447.906667pt;}
.y95{bottom:448.386667pt;}
.y79{bottom:448.546667pt;}
.y129{bottom:450.306667pt;}
.yd4{bottom:458.946667pt;}
.yb9{bottom:463.746667pt;}
.y108{bottom:463.906667pt;}
.y1f{bottom:464.866667pt;}
.y94{bottom:466.786667pt;}
.yf2{bottom:469.346667pt;}
.y4e{bottom:474.306667pt;}
.y78{bottom:474.946667pt;}
.y128{bottom:476.706667pt;}
.yd3{bottom:477.346667pt;}
.yb8{bottom:482.146667pt;}
.y93{bottom:485.186667pt;}
.yf1{bottom:487.746667pt;}
.y107{bottom:490.306667pt;}
.y1e{bottom:491.266667pt;}
.y77{bottom:493.346667pt;}
.yb7{bottom:500.546667pt;}
.y127{bottom:503.106667pt;}
.y92{bottom:503.586667pt;}
.yd2{bottom:503.746667pt;}
.y4d{bottom:508.706667pt;}
.y1d{bottom:509.666667pt;}
.y76{bottom:511.746667pt;}
.yf0{bottom:514.146667pt;}
.y126{bottom:521.506667pt;}
.yd1{bottom:522.146667pt;}
.yb6{bottom:526.946667pt;}
.y4c{bottom:527.106667pt;}
.y1c{bottom:528.066667pt;}
.y75{bottom:530.146667pt;}
.yef{bottom:532.546667pt;}
.y125{bottom:539.906667pt;}
.y91{bottom:540.546667pt;}
.y4b{bottom:545.506667pt;}
.y1b{bottom:546.466667pt;}
.yee{bottom:550.946667pt;}
.yb5{bottom:553.346667pt;}
.y74{bottom:556.546667pt;}
.y124{bottom:558.306667pt;}
.y90{bottom:558.946667pt;}
.y4a{bottom:563.906667pt;}
.y1a{bottom:564.866667pt;}
.yd0{bottom:566.946667pt;}
.yb4{bottom:571.773333pt;}
.y73{bottom:574.973333pt;}
.y8f{bottom:577.373333pt;}
.y49{bottom:582.333333pt;}
.y19{bottom:583.293333pt;}
.y123{bottom:584.733333pt;}
.ycf{bottom:585.373333pt;}
.y72{bottom:593.373333pt;}
.yed{bottom:595.773333pt;}
.yb3{bottom:598.173333pt;}
.y48{bottom:600.733333pt;}
.y18{bottom:601.693333pt;}
.y122{bottom:603.133333pt;}
.y8e{bottom:603.773333pt;}
.y106{bottom:608.733333pt;}
.y71{bottom:611.773333pt;}
.yec{bottom:614.173333pt;}
.yb2{bottom:616.573333pt;}
.y17{bottom:620.093333pt;}
.y121{bottom:621.533333pt;}
.yce{bottom:622.173333pt;}
.y47{bottom:627.133333pt;}
.y8d{bottom:630.173333pt;}
.yeb{bottom:632.573333pt;}
.y70{bottom:638.173333pt;}
.y16{bottom:638.493333pt;}
.yb1{bottom:642.973333pt;}
.y46{bottom:645.533333pt;}
.y120{bottom:647.933333pt;}
.y8c{bottom:648.573333pt;}
.y6f{bottom:656.573333pt;}
.y15{bottom:656.893333pt;}
.yea{bottom:658.973333pt;}
.yb0{bottom:661.373333pt;}
.y45{bottom:663.933333pt;}
.y11f{bottom:666.333333pt;}
.y6e{bottom:674.973333pt;}
.y14{bottom:675.293333pt;}
.yaf{bottom:679.773333pt;}
.y44{bottom:682.333333pt;}
.y11e{bottom:684.733333pt;}
.ye9{bottom:685.373333pt;}
.y6d{bottom:693.373333pt;}
.y13{bottom:693.693333pt;}
.y43{bottom:700.733333pt;}
.y11d{bottom:703.133333pt;}
.ye8{bottom:703.773333pt;}
.yae{bottom:706.173333pt;}
.y6c{bottom:711.773333pt;}
.y12{bottom:712.093333pt;}
.y42{bottom:719.133333pt;}
.ye7{bottom:722.173333pt;}
.y11c{bottom:729.533333pt;}
.y6b{bottom:730.173333pt;}
.yad{bottom:732.573333pt;}
.y41{bottom:737.533333pt;}
.y11{bottom:738.973333pt;}
.ye6{bottom:740.573333pt;}
.y105{bottom:745.533333pt;}
.y11b{bottom:747.933333pt;}
.y6a{bottom:748.573333pt;}
.yac{bottom:750.973333pt;}
.ye5{bottom:758.973333pt;}
.y40{bottom:763.933333pt;}
.y11a{bottom:766.333333pt;}
.y69{bottom:766.973333pt;}
.y10{bottom:768.573333pt;}
.yab{bottom:777.373333pt;}
.y104{bottom:782.333333pt;}
.y8b{bottom:785.373333pt;}
.y3f{bottom:790.333333pt;}
.y119{bottom:792.733333pt;}
.y68{bottom:793.413333pt;}
.yaa{bottom:795.813333pt;}
.yf{bottom:796.773333pt;}
.y103{bottom:800.773333pt;}
.y8a{bottom:803.813333pt;}
.y3e{bottom:808.773333pt;}
.y118{bottom:811.173333pt;}
.y67{bottom:811.813333pt;}
.y102{bottom:819.173333pt;}
.ye{bottom:820.453333pt;}
.ya9{bottom:822.213333pt;}
.y3d{bottom:827.173333pt;}
.y66{bottom:830.213333pt;}
.y101{bottom:837.573333pt;}
.ya8{bottom:840.613333pt;}
.y3c{bottom:845.573333pt;}
.yd{bottom:847.813333pt;}
.y65{bottom:848.613333pt;}
.y100{bottom:855.973333pt;}
.y89{bottom:856.613333pt;}
.ya7{bottom:859.013333pt;}
.y3b{bottom:863.973333pt;}
.ye4{bottom:867.013333pt;}
.yff{bottom:874.373333pt;}
.y64{bottom:875.013333pt;}
.y3a{bottom:882.373333pt;}
.ya6{bottom:885.413333pt;}
.yc{bottom:886.533333pt;}
.yfe{bottom:892.773333pt;}
.y63{bottom:893.413333pt;}
.y39{bottom:900.773333pt;}
.y117{bottom:901.253333pt;}
.ycd{bottom:901.413333pt;}
.y62{bottom:911.813333pt;}
.yb{bottom:917.253333pt;}
.y38{bottom:919.173333pt;}
.ycc{bottom:919.813333pt;}
.y61{bottom:930.213333pt;}
.y37{bottom:937.573333pt;}
.ycb{bottom:938.213333pt;}
.yfd{bottom:946.053333pt;}
.y60{bottom:948.613333pt;}
.ya{bottom:953.413333pt;}
.yca{bottom:956.613333pt;}
.y36{bottom:964.453333pt;}
.y5f{bottom:967.013333pt;}
.y1{bottom:975.013333pt;}
.y5e{bottom:985.413333pt;}
.y35{bottom:993.413333pt;}
.y34{bottom:1011.813333pt;}
.y31{bottom:1070.880000pt;}
.h4{height:1.851250pt;}
.h3{height:34.710938pt;}
.h8{height:38.413438pt;}
.h5{height:42.578750pt;}
.hf{height:43.343750pt;}
.ha{height:46.281250pt;}
.hd{height:46.593750pt;}
.hc{height:52.066250pt;}
.h7{height:54.198125pt;}
.he{height:56.593750pt;}
.hb{height:57.031250pt;}
.h9{height:66.726562pt;}
.h6{height:95.242188pt;}
.h2{height:117.472000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:211.066667pt;}
.w2{width:478.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:52.000000pt;}
.x3{left:65.632000pt;}
.x6{left:96.031988pt;}
.x7{left:97.151988pt;}
.xe{left:114.911988pt;}
.x12{left:118.751988pt;}
.xf{left:120.031988pt;}
.x13{left:124.511988pt;}
.xa{left:129.311988pt;}
.x11{left:138.906655pt;}
.xc{left:141.626655pt;}
.x10{left:144.026655pt;}
.x8{left:169.466655pt;}
.x5{left:203.880000pt;}
.xb{left:234.106655pt;}
.xd{left:398.946655pt;}
.x9{left:406.306655pt;}
.x4{left:530.813333pt;}
}




    .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; }
  