
    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_a1a52eb864914b3b8d8b865a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_ef490b0cda9a620c581efc47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_f2da65411c959f3e1bc4ebcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_0848a1714771ca0ede8be5ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_f7f45fd1d5c51551fe796027.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_11d51db2226e5d6bdd700624.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_4c09753865937f79413eb5c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_003436102a90382acc4d79ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_b53cb129ee4c440b44d245ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls29{letter-spacing:-1.866000px;}
.ls24{letter-spacing:-1.476000px;}
.ls1e{letter-spacing:-1.320000px;}
.ls1c{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.852000px;}
.lsb{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.463800px;}
.ls28{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.423600px;}
.lsc{letter-spacing:-0.308400px;}
.ls1b{letter-spacing:-0.193200px;}
.ls1f{letter-spacing:-0.190200px;}
.ls11{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120960px;}
.ls25{letter-spacing:0.213120px;}
.ls23{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.291000px;}
.lsd{letter-spacing:0.394800px;}
.ls3{letter-spacing:0.427680px;}
.ls4{letter-spacing:0.447840px;}
.ls12{letter-spacing:0.466560px;}
.ls18{letter-spacing:0.492600px;}
.lsf{letter-spacing:0.598800px;}
.ls17{letter-spacing:0.630000px;}
.ls1a{letter-spacing:0.636000px;}
.ls27{letter-spacing:0.731520px;}
.ls0{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.906560px;}
.ls1{letter-spacing:1.920960px;}
.ls15{letter-spacing:2.040000px;}
.ls14{letter-spacing:6.226560px;}
.ls26{letter-spacing:11.986560px;}
.ls20{letter-spacing:17.746560px;}
.ls10{letter-spacing:22.066560px;}
.ls6{letter-spacing:37.906560px;}
.ls21{letter-spacing:42.226560px;}
.ls13{letter-spacing:202.331520px;}
.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;}
}
.ws0{word-spacing:-41.664960px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-14.298480px;}
.wsb{word-spacing:-13.959480px;}
.wsd{word-spacing:-13.924680px;}
.ws5{word-spacing:-13.668480px;}
.ws6{word-spacing:-13.360080px;}
.ws8{word-spacing:-13.244880px;}
.wsf{word-spacing:-13.210680px;}
.ws9{word-spacing:-13.020480px;}
.wsc{word-spacing:-13.008480px;}
.wse{word-spacing:-12.192480px;}
.ws10{word-spacing:-11.802480px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-1447.340880px;}
._4{margin-left:-1328.000640px;}
._6{margin-left:-1000.336080px;}
._8{margin-left:-579.115680px;}
._a{margin-left:-6.013440px;}
._9{margin-left:-4.341600px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.391040px;}
._1{width:1.146720px;}
._2{width:2.450880px;}
._3{width:3.749760px;}
._12{width:4.805280px;}
._c{width:5.808480px;}
._b{width:7.801920px;}
._11{width:8.886480px;}
._d{width:9.927840px;}
._10{width:11.067840px;}
._15{width:12.511680px;}
._f{width:14.757120px;}
._e{width:15.863040px;}
._25{width:17.660160px;}
._1b{width:19.353600px;}
._2e{width:20.723280px;}
._2a{width:21.790080px;}
._19{width:22.800960px;}
._1a{width:23.950080px;}
._2f{width:25.275360px;}
._24{width:26.369280px;}
._23{width:28.304640px;}
._1f{width:30.481920px;}
._20{width:31.849440px;}
._18{width:33.084960px;}
._16{width:34.110720px;}
._17{width:35.441280px;}
._29{width:36.529920px;}
._1e{width:37.940640px;}
._1c{width:39.493440px;}
._1d{width:41.506560px;}
._27{width:53.040960px;}
._28{width:54.864480px;}
._26{width:60.600960px;}
._2b{width:72.731520px;}
._21{width:96.405120px;}
._22{width:98.582400px;}
._2c{width:115.931520px;}
._2d{width:120.320640px;}
._13{width:172.091520px;}
._14{width:202.331520px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:6.840000px;}
.y94{bottom:7.200000px;}
.yb3{bottom:17.280000px;}
.yb7{bottom:17.640000px;}
.ya1{bottom:28.080000px;}
.y93{bottom:28.125000px;}
.ya0{bottom:48.990000px;}
.ya9{bottom:49.320000px;}
.y92{bottom:49.365000px;}
.y6{bottom:61.200000px;}
.ya8{bottom:70.200000px;}
.y9f{bottom:70.230000px;}
.y91{bottom:70.245000px;}
.y9e{bottom:91.110000px;}
.ya7{bottom:91.440000px;}
.y90{bottom:91.485000px;}
.yca{bottom:92.916000px;}
.yee{bottom:96.156000px;}
.yed{bottom:100.476000px;}
.yb0{bottom:105.156000px;}
.y64{bottom:109.476000px;}
.y9d{bottom:112.350000px;}
.ya6{bottom:112.365000px;}
.y30{bottom:115.596000px;}
.yec{bottom:121.716000px;}
.yc9{bottom:123.156000px;}
.y8c{bottom:124.596000px;}
.yaf{bottom:126.036000px;}
.y63{bottom:130.716000px;}
.y9c{bottom:133.230000px;}
.ya5{bottom:133.605000px;}
.y2f{bottom:136.476000px;}
.yeb{bottom:142.596000px;}
.y8b{bottom:145.836000px;}
.yae{bottom:147.276000px;}
.y62{bottom:151.590000px;}
.yc8{bottom:153.030000px;}
.y9b{bottom:154.470000px;}
.ya4{bottom:154.485000px;}
.y2e{bottom:157.710000px;}
.yea{bottom:163.830000px;}
.y8a{bottom:166.710000px;}
.yad{bottom:168.150000px;}
.y61{bottom:172.830000px;}
.yc7{bottom:174.270000px;}
.y9a{bottom:175.380000px;}
.ya3{bottom:175.725000px;}
.y2d{bottom:178.590000px;}
.ye9{bottom:184.710000px;}
.y89{bottom:187.950000px;}
.yac{bottom:189.390000px;}
.y60{bottom:193.755000px;}
.yc6{bottom:195.195000px;}
.y99{bottom:196.620000px;}
.y2c{bottom:199.875000px;}
.ye8{bottom:205.995000px;}
.y88{bottom:208.875000px;}
.yab{bottom:210.315000px;}
.y5f{bottom:214.995000px;}
.yc5{bottom:216.435000px;}
.y98{bottom:217.500000px;}
.y2b{bottom:220.755000px;}
.yaa{bottom:225.075000px;}
.ye7{bottom:226.875000px;}
.y87{bottom:230.115000px;}
.y5e{bottom:235.875000px;}
.yc4{bottom:237.315000px;}
.y97{bottom:238.740000px;}
.y2a{bottom:241.995000px;}
.ye6{bottom:248.115000px;}
.y86{bottom:250.995000px;}
.y5d{bottom:257.115000px;}
.yc3{bottom:258.555000px;}
.y96{bottom:259.620000px;}
.y29{bottom:262.875000px;}
.ye5{bottom:268.995000px;}
.y85{bottom:271.875000px;}
.y5c{bottom:277.995000px;}
.yc2{bottom:279.435000px;}
.y28{bottom:284.115000px;}
.ye4{bottom:289.875000px;}
.y84{bottom:293.115000px;}
.y5b{bottom:298.875000px;}
.y27{bottom:304.995000px;}
.yc1{bottom:309.675000px;}
.ye3{bottom:311.115000px;}
.y83{bottom:313.995000px;}
.y5a{bottom:320.145000px;}
.y26{bottom:326.265000px;}
.yc0{bottom:330.585000px;}
.ye2{bottom:332.025000px;}
.y82{bottom:335.265000px;}
.y59{bottom:341.025000px;}
.y25{bottom:347.145000px;}
.ybf{bottom:351.825000px;}
.ya2{bottom:352.185000px;}
.ye1{bottom:353.265000px;}
.y81{bottom:356.145000px;}
.y58{bottom:362.265000px;}
.y24{bottom:368.385000px;}
.ybe{bottom:372.705000px;}
.ye0{bottom:374.145000px;}
.y80{bottom:377.385000px;}
.y57{bottom:383.145000px;}
.y23{bottom:389.265000px;}
.ybd{bottom:393.945000px;}
.ydf{bottom:395.385000px;}
.y7f{bottom:398.265000px;}
.y56{bottom:404.385000px;}
.y22{bottom:410.505000px;}
.ybc{bottom:414.825000px;}
.yde{bottom:416.265000px;}
.y7e{bottom:419.505000px;}
.y55{bottom:425.265000px;}
.y21{bottom:431.385000px;}
.ybb{bottom:436.065000px;}
.ydd{bottom:437.505000px;}
.y7d{bottom:440.385000px;}
.y54{bottom:446.550000px;}
.y20{bottom:452.670000px;}
.yba{bottom:456.990000px;}
.ydc{bottom:458.430000px;}
.y7c{bottom:461.670000px;}
.y53{bottom:467.430000px;}
.y1f{bottom:473.550000px;}
.yb9{bottom:478.230000px;}
.ydb{bottom:479.670000px;}
.y7b{bottom:482.550000px;}
.y52{bottom:488.670000px;}
.yb8{bottom:493.710000px;}
.y1e{bottom:494.790000px;}
.yda{bottom:500.550000px;}
.y7a{bottom:503.790000px;}
.y51{bottom:509.550000px;}
.y1d{bottom:515.670000px;}
.yd9{bottom:521.790000px;}
.y79{bottom:524.670000px;}
.y50{bottom:530.790000px;}
.y1c{bottom:536.910000px;}
.yb6{bottom:537.270000px;}
.y95{bottom:542.670000px;}
.y78{bottom:545.910000px;}
.y4f{bottom:551.670000px;}
.y1b{bottom:557.790000px;}
.yd8{bottom:563.910000px;}
.y77{bottom:566.790000px;}
.y4e{bottom:572.940000px;}
.y1a{bottom:579.060000px;}
.yb5{bottom:580.860000px;}
.yd7{bottom:584.820000px;}
.y76{bottom:588.060000px;}
.y4d{bottom:593.820000px;}
.y19{bottom:599.940000px;}
.yb4{bottom:603.540000px;}
.yd6{bottom:606.060000px;}
.y4c{bottom:615.060000px;}
.y75{bottom:617.940000px;}
.y18{bottom:621.180000px;}
.yb2{bottom:626.220000px;}
.yd5{bottom:626.940000px;}
.y4b{bottom:635.940000px;}
.y74{bottom:639.180000px;}
.y17{bottom:642.060000px;}
.yd4{bottom:648.180000px;}
.y4a{bottom:657.180000px;}
.y73{bottom:660.060000px;}
.y16{bottom:663.300000px;}
.yd3{bottom:669.060000px;}
.yb1{bottom:669.780000px;}
.y49{bottom:678.060000px;}
.y72{bottom:681.300000px;}
.y15{bottom:685.980000px;}
.yd2{bottom:690.300000px;}
.y48{bottom:699.330000px;}
.y71{bottom:702.210000px;}
.yd1{bottom:711.210000px;}
.y14{bottom:716.610000px;}
.y47{bottom:720.210000px;}
.y70{bottom:723.450000px;}
.yd0{bottom:732.450000px;}
.y13{bottom:737.490000px;}
.y46{bottom:741.450000px;}
.y6f{bottom:744.330000px;}
.ycf{bottom:753.330000px;}
.y12{bottom:758.730000px;}
.y45{bottom:762.330000px;}
.y6e{bottom:765.570000px;}
.yce{bottom:774.570000px;}
.y11{bottom:779.610000px;}
.y44{bottom:783.570000px;}
.y6d{bottom:795.450000px;}
.y10{bottom:800.850000px;}
.y43{bottom:804.450000px;}
.y6c{bottom:816.690000px;}
.y8f{bottom:817.050000px;}
.yf{bottom:821.730000px;}
.y42{bottom:825.735000px;}
.y6b{bottom:837.615000px;}
.ye{bottom:842.655000px;}
.y41{bottom:846.615000px;}
.y6a{bottom:858.855000px;}
.yd{bottom:866.415000px;}
.y40{bottom:867.855000px;}
.y69{bottom:879.735000px;}
.y3f{bottom:888.735000px;}
.yc{bottom:892.695000px;}
.y68{bottom:900.975000px;}
.y3e{bottom:909.975000px;}
.yb{bottom:913.935000px;}
.y67{bottom:921.855000px;}
.y8d{bottom:923.295000px;}
.ya{bottom:929.775000px;}
.y3d{bottom:930.855000px;}
.y66{bottom:943.095000px;}
.y3c{bottom:952.125000px;}
.y9{bottom:952.485000px;}
.y65{bottom:964.005000px;}
.y3b{bottom:973.005000px;}
.y8{bottom:977.325000px;}
.ycd{bottom:985.245000px;}
.y3a{bottom:994.245000px;}
.ycc{bottom:1006.125000px;}
.y7{bottom:1011.165000px;}
.y39{bottom:1015.125000px;}
.ycb{bottom:1027.365000px;}
.y38{bottom:1036.365000px;}
.y5{bottom:1051.125000px;}
.y37{bottom:1057.245000px;}
.y36{bottom:1078.530000px;}
.y4{bottom:1083.210000px;}
.y35{bottom:1099.410000px;}
.y3{bottom:1115.610000px;}
.y34{bottom:1120.650000px;}
.y33{bottom:1141.530000px;}
.y2{bottom:1147.650000px;}
.y32{bottom:1162.770000px;}
.y1{bottom:1182.210000px;}
.y31{bottom:1193.010000px;}
.hc{height:20.880000px;}
.h12{height:21.240000px;}
.h7{height:34.001016px;}
.h11{height:42.120000px;}
.h13{height:42.156000px;}
.h5{height:48.608438px;}
.h8{height:52.890469px;}
.ha{height:53.237812px;}
.h2{height:55.666406px;}
.h3{height:57.927656px;}
.h6{height:58.042969px;}
.hb{height:60.952500px;}
.h14{height:62.163910px;}
.h9{height:62.960625px;}
.h4{height:77.542031px;}
.hd{height:105.516000px;}
.h10{height:126.396000px;}
.hf{height:189.750000px;}
.he{height:273.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:82.116000px;}
.wa{width:103.356000px;}
.w3{width:103.716000px;}
.wb{width:138.996000px;}
.w8{width:141.192000px;}
.w9{width:160.995000px;}
.w7{width:232.995000px;}
.w4{width:251.385000px;}
.w5{width:339.225000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.920000px;}
.x12{left:15.480000px;}
.xb{left:24.885000px;}
.x5{left:25.920000px;}
.x18{left:34.200000px;}
.x15{left:35.640000px;}
.x10{left:37.125000px;}
.x16{left:51.165000px;}
.x1{left:54.035987px;}
.xd{left:55.116000px;}
.x4{left:57.276000px;}
.x3{left:61.595987px;}
.x17{left:63.390000px;}
.x19{left:75.275987px;}
.x1b{left:81.035987px;}
.xe{left:90.396000px;}
.x7{left:94.710000px;}
.x1a{left:102.275987px;}
.x2{left:108.035987px;}
.x9{left:125.670000px;}
.x6{left:161.715000px;}
.xf{left:289.545000px;}
.x8{left:413.820000px;}
.x11{left:432.180000px;}
.x13{left:594.615000px;}
.x14{left:699.405000px;}
.xa{left:753.765000px;}
.x1c{left:839.489987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls29{letter-spacing:-1.658667pt;}
.ls24{letter-spacing:-1.312000pt;}
.ls1e{letter-spacing:-1.173333pt;}
.ls1c{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.757333pt;}
.lsb{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls28{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.376533pt;}
.lsc{letter-spacing:-0.274133pt;}
.ls1b{letter-spacing:-0.171733pt;}
.ls1f{letter-spacing:-0.169067pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.107520pt;}
.ls25{letter-spacing:0.189440pt;}
.ls23{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.258667pt;}
.lsd{letter-spacing:0.350933pt;}
.ls3{letter-spacing:0.380160pt;}
.ls4{letter-spacing:0.398080pt;}
.ls12{letter-spacing:0.414720pt;}
.ls18{letter-spacing:0.437867pt;}
.lsf{letter-spacing:0.532267pt;}
.ls17{letter-spacing:0.560000pt;}
.ls1a{letter-spacing:0.565333pt;}
.ls27{letter-spacing:0.650240pt;}
.ls0{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.694720pt;}
.ls1{letter-spacing:1.707520pt;}
.ls15{letter-spacing:1.813333pt;}
.ls14{letter-spacing:5.534720pt;}
.ls26{letter-spacing:10.654720pt;}
.ls20{letter-spacing:15.774720pt;}
.ls10{letter-spacing:19.614720pt;}
.ls6{letter-spacing:33.694720pt;}
.ls21{letter-spacing:37.534720pt;}
.ls13{letter-spacing:179.850240pt;}
.ws0{word-spacing:-37.035520pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.709760pt;}
.wsb{word-spacing:-12.408427pt;}
.wsd{word-spacing:-12.377493pt;}
.ws5{word-spacing:-12.149760pt;}
.ws6{word-spacing:-11.875627pt;}
.ws8{word-spacing:-11.773227pt;}
.wsf{word-spacing:-11.742827pt;}
.ws9{word-spacing:-11.573760pt;}
.wsc{word-spacing:-11.563093pt;}
.wse{word-spacing:-10.837760pt;}
.ws10{word-spacing:-10.491093pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-1286.525227pt;}
._4{margin-left:-1180.445013pt;}
._6{margin-left:-889.187627pt;}
._8{margin-left:-514.769493pt;}
._a{margin-left:-5.345280pt;}
._9{margin-left:-3.859200pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.019307pt;}
._2{width:2.178560pt;}
._3{width:3.333120pt;}
._12{width:4.271360pt;}
._c{width:5.163093pt;}
._b{width:6.935040pt;}
._11{width:7.899093pt;}
._d{width:8.824747pt;}
._10{width:9.838080pt;}
._15{width:11.121493pt;}
._f{width:13.117440pt;}
._e{width:14.100480pt;}
._25{width:15.697920pt;}
._1b{width:17.203200pt;}
._2e{width:18.420693pt;}
._2a{width:19.368960pt;}
._19{width:20.267520pt;}
._1a{width:21.288960pt;}
._2f{width:22.466987pt;}
._24{width:23.439360pt;}
._23{width:25.159680pt;}
._1f{width:27.095040pt;}
._20{width:28.310613pt;}
._18{width:29.408853pt;}
._16{width:30.320640pt;}
._17{width:31.503360pt;}
._29{width:32.471040pt;}
._1e{width:33.725013pt;}
._1c{width:35.105280pt;}
._1d{width:36.894720pt;}
._27{width:47.147520pt;}
._28{width:48.768427pt;}
._26{width:53.867520pt;}
._2b{width:64.650240pt;}
._21{width:85.693440pt;}
._22{width:87.628800pt;}
._2c{width:103.050240pt;}
._2d{width:106.951680pt;}
._13{width:152.970240pt;}
._14{width:179.850240pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:6.080000pt;}
.y94{bottom:6.400000pt;}
.yb3{bottom:15.360000pt;}
.yb7{bottom:15.680000pt;}
.ya1{bottom:24.960000pt;}
.y93{bottom:25.000000pt;}
.ya0{bottom:43.546667pt;}
.ya9{bottom:43.840000pt;}
.y92{bottom:43.880000pt;}
.y6{bottom:54.400000pt;}
.ya8{bottom:62.400000pt;}
.y9f{bottom:62.426667pt;}
.y91{bottom:62.440000pt;}
.y9e{bottom:80.986667pt;}
.ya7{bottom:81.280000pt;}
.y90{bottom:81.320000pt;}
.yca{bottom:82.592000pt;}
.yee{bottom:85.472000pt;}
.yed{bottom:89.312000pt;}
.yb0{bottom:93.472000pt;}
.y64{bottom:97.312000pt;}
.y9d{bottom:99.866667pt;}
.ya6{bottom:99.880000pt;}
.y30{bottom:102.752000pt;}
.yec{bottom:108.192000pt;}
.yc9{bottom:109.472000pt;}
.y8c{bottom:110.752000pt;}
.yaf{bottom:112.032000pt;}
.y63{bottom:116.192000pt;}
.y9c{bottom:118.426667pt;}
.ya5{bottom:118.760000pt;}
.y2f{bottom:121.312000pt;}
.yeb{bottom:126.752000pt;}
.y8b{bottom:129.632000pt;}
.yae{bottom:130.912000pt;}
.y62{bottom:134.746667pt;}
.yc8{bottom:136.026667pt;}
.y9b{bottom:137.306667pt;}
.ya4{bottom:137.320000pt;}
.y2e{bottom:140.186667pt;}
.yea{bottom:145.626667pt;}
.y8a{bottom:148.186667pt;}
.yad{bottom:149.466667pt;}
.y61{bottom:153.626667pt;}
.yc7{bottom:154.906667pt;}
.y9a{bottom:155.893333pt;}
.ya3{bottom:156.200000pt;}
.y2d{bottom:158.746667pt;}
.ye9{bottom:164.186667pt;}
.y89{bottom:167.066667pt;}
.yac{bottom:168.346667pt;}
.y60{bottom:172.226667pt;}
.yc6{bottom:173.506667pt;}
.y99{bottom:174.773333pt;}
.y2c{bottom:177.666667pt;}
.ye8{bottom:183.106667pt;}
.y88{bottom:185.666667pt;}
.yab{bottom:186.946667pt;}
.y5f{bottom:191.106667pt;}
.yc5{bottom:192.386667pt;}
.y98{bottom:193.333333pt;}
.y2b{bottom:196.226667pt;}
.yaa{bottom:200.066667pt;}
.ye7{bottom:201.666667pt;}
.y87{bottom:204.546667pt;}
.y5e{bottom:209.666667pt;}
.yc4{bottom:210.946667pt;}
.y97{bottom:212.213333pt;}
.y2a{bottom:215.106667pt;}
.ye6{bottom:220.546667pt;}
.y86{bottom:223.106667pt;}
.y5d{bottom:228.546667pt;}
.yc3{bottom:229.826667pt;}
.y96{bottom:230.773333pt;}
.y29{bottom:233.666667pt;}
.ye5{bottom:239.106667pt;}
.y85{bottom:241.666667pt;}
.y5c{bottom:247.106667pt;}
.yc2{bottom:248.386667pt;}
.y28{bottom:252.546667pt;}
.ye4{bottom:257.666667pt;}
.y84{bottom:260.546667pt;}
.y5b{bottom:265.666667pt;}
.y27{bottom:271.106667pt;}
.yc1{bottom:275.266667pt;}
.ye3{bottom:276.546667pt;}
.y83{bottom:279.106667pt;}
.y5a{bottom:284.573333pt;}
.y26{bottom:290.013333pt;}
.yc0{bottom:293.853333pt;}
.ye2{bottom:295.133333pt;}
.y82{bottom:298.013333pt;}
.y59{bottom:303.133333pt;}
.y25{bottom:308.573333pt;}
.ybf{bottom:312.733333pt;}
.ya2{bottom:313.053333pt;}
.ye1{bottom:314.013333pt;}
.y81{bottom:316.573333pt;}
.y58{bottom:322.013333pt;}
.y24{bottom:327.453333pt;}
.ybe{bottom:331.293333pt;}
.ye0{bottom:332.573333pt;}
.y80{bottom:335.453333pt;}
.y57{bottom:340.573333pt;}
.y23{bottom:346.013333pt;}
.ybd{bottom:350.173333pt;}
.ydf{bottom:351.453333pt;}
.y7f{bottom:354.013333pt;}
.y56{bottom:359.453333pt;}
.y22{bottom:364.893333pt;}
.ybc{bottom:368.733333pt;}
.yde{bottom:370.013333pt;}
.y7e{bottom:372.893333pt;}
.y55{bottom:378.013333pt;}
.y21{bottom:383.453333pt;}
.ybb{bottom:387.613333pt;}
.ydd{bottom:388.893333pt;}
.y7d{bottom:391.453333pt;}
.y54{bottom:396.933333pt;}
.y20{bottom:402.373333pt;}
.yba{bottom:406.213333pt;}
.ydc{bottom:407.493333pt;}
.y7c{bottom:410.373333pt;}
.y53{bottom:415.493333pt;}
.y1f{bottom:420.933333pt;}
.yb9{bottom:425.093333pt;}
.ydb{bottom:426.373333pt;}
.y7b{bottom:428.933333pt;}
.y52{bottom:434.373333pt;}
.yb8{bottom:438.853333pt;}
.y1e{bottom:439.813333pt;}
.yda{bottom:444.933333pt;}
.y7a{bottom:447.813333pt;}
.y51{bottom:452.933333pt;}
.y1d{bottom:458.373333pt;}
.yd9{bottom:463.813333pt;}
.y79{bottom:466.373333pt;}
.y50{bottom:471.813333pt;}
.y1c{bottom:477.253333pt;}
.yb6{bottom:477.573333pt;}
.y95{bottom:482.373333pt;}
.y78{bottom:485.253333pt;}
.y4f{bottom:490.373333pt;}
.y1b{bottom:495.813333pt;}
.yd8{bottom:501.253333pt;}
.y77{bottom:503.813333pt;}
.y4e{bottom:509.280000pt;}
.y1a{bottom:514.720000pt;}
.yb5{bottom:516.320000pt;}
.yd7{bottom:519.840000pt;}
.y76{bottom:522.720000pt;}
.y4d{bottom:527.840000pt;}
.y19{bottom:533.280000pt;}
.yb4{bottom:536.480000pt;}
.yd6{bottom:538.720000pt;}
.y4c{bottom:546.720000pt;}
.y75{bottom:549.280000pt;}
.y18{bottom:552.160000pt;}
.yb2{bottom:556.640000pt;}
.yd5{bottom:557.280000pt;}
.y4b{bottom:565.280000pt;}
.y74{bottom:568.160000pt;}
.y17{bottom:570.720000pt;}
.yd4{bottom:576.160000pt;}
.y4a{bottom:584.160000pt;}
.y73{bottom:586.720000pt;}
.y16{bottom:589.600000pt;}
.yd3{bottom:594.720000pt;}
.yb1{bottom:595.360000pt;}
.y49{bottom:602.720000pt;}
.y72{bottom:605.600000pt;}
.y15{bottom:609.760000pt;}
.yd2{bottom:613.600000pt;}
.y48{bottom:621.626667pt;}
.y71{bottom:624.186667pt;}
.yd1{bottom:632.186667pt;}
.y14{bottom:636.986667pt;}
.y47{bottom:640.186667pt;}
.y70{bottom:643.066667pt;}
.yd0{bottom:651.066667pt;}
.y13{bottom:655.546667pt;}
.y46{bottom:659.066667pt;}
.y6f{bottom:661.626667pt;}
.ycf{bottom:669.626667pt;}
.y12{bottom:674.426667pt;}
.y45{bottom:677.626667pt;}
.y6e{bottom:680.506667pt;}
.yce{bottom:688.506667pt;}
.y11{bottom:692.986667pt;}
.y44{bottom:696.506667pt;}
.y6d{bottom:707.066667pt;}
.y10{bottom:711.866667pt;}
.y43{bottom:715.066667pt;}
.y6c{bottom:725.946667pt;}
.y8f{bottom:726.266667pt;}
.yf{bottom:730.426667pt;}
.y42{bottom:733.986667pt;}
.y6b{bottom:744.546667pt;}
.ye{bottom:749.026667pt;}
.y41{bottom:752.546667pt;}
.y6a{bottom:763.426667pt;}
.yd{bottom:770.146667pt;}
.y40{bottom:771.426667pt;}
.y69{bottom:781.986667pt;}
.y3f{bottom:789.986667pt;}
.yc{bottom:793.506667pt;}
.y68{bottom:800.866667pt;}
.y3e{bottom:808.866667pt;}
.yb{bottom:812.386667pt;}
.y67{bottom:819.426667pt;}
.y8d{bottom:820.706667pt;}
.ya{bottom:826.466667pt;}
.y3d{bottom:827.426667pt;}
.y66{bottom:838.306667pt;}
.y3c{bottom:846.333333pt;}
.y9{bottom:846.653333pt;}
.y65{bottom:856.893333pt;}
.y3b{bottom:864.893333pt;}
.y8{bottom:868.733333pt;}
.ycd{bottom:875.773333pt;}
.y3a{bottom:883.773333pt;}
.ycc{bottom:894.333333pt;}
.y7{bottom:898.813333pt;}
.y39{bottom:902.333333pt;}
.ycb{bottom:913.213333pt;}
.y38{bottom:921.213333pt;}
.y5{bottom:934.333333pt;}
.y37{bottom:939.773333pt;}
.y36{bottom:958.693333pt;}
.y4{bottom:962.853333pt;}
.y35{bottom:977.253333pt;}
.y3{bottom:991.653333pt;}
.y34{bottom:996.133333pt;}
.y33{bottom:1014.693333pt;}
.y2{bottom:1020.133333pt;}
.y32{bottom:1033.573333pt;}
.y1{bottom:1050.853333pt;}
.y31{bottom:1060.453333pt;}
.hc{height:18.560000pt;}
.h12{height:18.880000pt;}
.h7{height:30.223125pt;}
.h11{height:37.440000pt;}
.h13{height:37.472000pt;}
.h5{height:43.207500pt;}
.h8{height:47.013750pt;}
.ha{height:47.322500pt;}
.h2{height:49.481250pt;}
.h3{height:51.491250pt;}
.h6{height:51.593750pt;}
.hb{height:54.180000pt;}
.h14{height:55.256809pt;}
.h9{height:55.965000pt;}
.h4{height:68.926250pt;}
.hd{height:93.792000pt;}
.h10{height:112.352000pt;}
.hf{height:168.666667pt;}
.he{height:243.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:72.992000pt;}
.wa{width:91.872000pt;}
.w3{width:92.192000pt;}
.wb{width:123.552000pt;}
.w8{width:125.504000pt;}
.w9{width:143.106667pt;}
.w7{width:207.106667pt;}
.w4{width:223.453333pt;}
.w5{width:301.533333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.040000pt;}
.x12{left:13.760000pt;}
.xb{left:22.120000pt;}
.x5{left:23.040000pt;}
.x18{left:30.400000pt;}
.x15{left:31.680000pt;}
.x10{left:33.000000pt;}
.x16{left:45.480000pt;}
.x1{left:48.031988pt;}
.xd{left:48.992000pt;}
.x4{left:50.912000pt;}
.x3{left:54.751988pt;}
.x17{left:56.346667pt;}
.x19{left:66.911988pt;}
.x1b{left:72.031988pt;}
.xe{left:80.352000pt;}
.x7{left:84.186667pt;}
.x1a{left:90.911988pt;}
.x2{left:96.031988pt;}
.x9{left:111.706667pt;}
.x6{left:143.746667pt;}
.xf{left:257.373333pt;}
.x8{left:367.840000pt;}
.x11{left:384.160000pt;}
.x13{left:528.546667pt;}
.x14{left:621.693333pt;}
.xa{left:670.013333pt;}
.x1c{left:746.213322pt;}
}




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