
    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_53e11aea34a1da1f4b5da52b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_20433620431eadbef2a3df67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a8e7f77e124f7aa1d1965890.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_7f9d8bfe4a9e7d5d99479b44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_c46b186785ae28ebb85c9ed2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1acf723fc24ed28c98c612d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_46f1d5025924004ba022f0fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_cc2bc5651103113b3fe7e550.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_6e46090dfc4f7f157149c14b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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:ffa;src:url('chunks/assets/font_e2cee1e0f17ac5aaf0853fb1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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:ffb;src:url('chunks/assets/font_12788f631ed438986800f8f9.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-94.320000px;}
.v6{vertical-align:-90.000000px;}
.v4{vertical-align:-53.258165px;}
.v2{vertical-align:-1.354021px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:53.258165px;}
.v3{vertical-align:54.341382px;}
.ls6{letter-spacing:-0.684000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.607805px;}
.ls8{letter-spacing:-0.531378px;}
.ls9{letter-spacing:-0.457358px;}
.ls15{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.181440px;}
.lsb{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.880000px;}
.ls1b{letter-spacing:3.600000px;}
.ls12{letter-spacing:9.180000px;}
.ls16{letter-spacing:9.900000px;}
.ls0{letter-spacing:10.080000px;}
.ls13{letter-spacing:12.180000px;}
.ls18{letter-spacing:12.780000px;}
.ls4{letter-spacing:15.660000px;}
.ls11{letter-spacing:16.380000px;}
.ls19{letter-spacing:23.580000px;}
.ls1d{letter-spacing:26.640000px;}
.lsd{letter-spacing:33.984000px;}
.ls14{letter-spacing:38.700000px;}
.ls10{letter-spacing:127.008000px;}
.ls3{letter-spacing:194.544000px;}
.ls1a{letter-spacing:711.696000px;}
.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;}
}
.wsc{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.041280px;}
.ws1{word-spacing:-18.000000px;}
.wse{word-spacing:-17.352000px;}
.wsb{word-spacing:-12.342354px;}
.ws8{word-spacing:-12.308353px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:122.727574px;}
.ws6{word-spacing:157.029444px;}
.ws9{word-spacing:224.447812px;}
.ws5{word-spacing:224.507990px;}
.ws7{word-spacing:224.636020px;}
.wsa{word-spacing:224.696199px;}
.ws3{word-spacing:292.386425px;}
._18{margin-left:-2.915932px;}
._0{margin-left:-1.054080px;}
._1{width:1.282080px;}
._5{width:2.638080px;}
._7{width:3.671520px;}
._a{width:4.752000px;}
._27{width:5.818080px;}
._15{width:6.866640px;}
._23{width:8.588160px;}
._2{width:10.128000px;}
._4{width:11.688000px;}
._10{width:13.104000px;}
._d{width:14.734080px;}
._6{width:15.768000px;}
._e{width:16.776000px;}
._30{width:17.824320px;}
._25{width:18.851280px;}
._c{width:19.944000px;}
._3{width:20.952000px;}
._33{width:22.066080px;}
._f{width:23.223840px;}
._11{width:24.566400px;}
._16{width:26.046240px;}
._b{width:27.068160px;}
._8{width:28.440000px;}
._9{width:29.725920px;}
._29{width:30.810000px;}
._14{width:31.970160px;}
._13{width:33.130080px;}
._12{width:34.695360px;}
._28{width:36.603360px;}
._2b{width:37.614240px;}
._24{width:39.424320px;}
._1d{width:40.899600px;}
._1e{width:42.033600px;}
._17{width:43.046640px;}
._2a{width:46.796400px;}
._1f{width:48.185280px;}
._26{width:49.576320px;}
._2d{width:51.648240px;}
._2c{width:52.860000px;}
._22{width:54.759600px;}
._20{width:66.718080px;}
._21{width:67.772160px;}
._32{width:70.467840px;}
._2e{width:76.405680px;}
._2f{width:77.753520px;}
._31{width:78.807600px;}
._1a{width:249.609434px;}
._1c{width:250.629967px;}
._19{width:256.409629px;}
._1b{width:270.556294px;}
.fc7{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(89,89,89);}
.fc2{color:rgb(36,32,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:54.461740px;}
.fs7{font-size:54.612186px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.954000px;}
.y84{bottom:3.960000px;}
.y7c{bottom:7.554000px;}
.y80{bottom:10.620000px;}
.y7e{bottom:11.334000px;}
.y85{bottom:14.220000px;}
.y40{bottom:17.038419px;}
.y83{bottom:24.660000px;}
.y8f{bottom:24.705000px;}
.y7b{bottom:28.254000px;}
.y7d{bottom:32.034000px;}
.y3{bottom:35.856000px;}
.y3f{bottom:38.777981px;}
.y8c{bottom:45.360000px;}
.y8e{bottom:45.405000px;}
.y2{bottom:55.476000px;}
.y3e{bottom:60.517542px;}
.y3d{bottom:78.608767px;}
.y34{bottom:91.321523px;}
.y69{bottom:93.276000px;}
.y32{bottom:94.716000px;}
.ya9{bottom:97.056000px;}
.y82{bottom:105.876000px;}
.y4c{bottom:110.052146px;}
.y4e{bottom:115.769120px;}
.y35{bottom:118.514781px;}
.y68{bottom:120.996000px;}
.y31{bottom:122.616000px;}
.ya8{bottom:124.956000px;}
.yad{bottom:126.576000px;}
.y4b{bottom:136.154653px;}
.y49{bottom:142.962375px;}
.y36{bottom:145.745651px;}
.yac{bottom:147.276000px;}
.y7a{bottom:147.996000px;}
.y67{bottom:148.896000px;}
.y30{bottom:150.330000px;}
.ya7{bottom:152.670000px;}
.y43{bottom:157.104371px;}
.y41{bottom:165.002839px;}
.yab{bottom:167.970000px;}
.y7f{bottom:169.410000px;}
.y37{bottom:172.931387px;}
.y66{bottom:176.610000px;}
.y2f{bottom:178.050000px;}
.ya6{bottom:180.390000px;}
.y4f{bottom:187.599940px;}
.y4d{bottom:187.870749px;}
.y51{bottom:194.670935px;}
.y38{bottom:200.162256px;}
.y65{bottom:204.330000px;}
.y79{bottom:205.590000px;}
.y2e{bottom:205.950000px;}
.y42{bottom:206.104901px;}
.y48{bottom:208.286375px;}
.y46{bottom:208.286379px;}
.ya5{bottom:208.290000px;}
.yaa{bottom:211.170000px;}
.y52{bottom:222.428366px;}
.y39{bottom:227.363037px;}
.y64{bottom:232.230000px;}
.y78{bottom:233.310000px;}
.y2d{bottom:233.670000px;}
.ya4{bottom:236.010000px;}
.y50{bottom:239.579305px;}
.y4a{bottom:249.629150px;}
.y3a{bottom:254.593907px;}
.y63{bottom:259.950000px;}
.y77{bottom:261.210000px;}
.y2c{bottom:261.390000px;}
.ya3{bottom:263.730000px;}
.y47{bottom:266.780091px;}
.y44{bottom:273.324518px;}
.y3b{bottom:281.779642px;}
.y33{bottom:286.823911px;}
.y76{bottom:288.975000px;}
.ya2{bottom:291.495000px;}
.y3c{bottom:309.010512px;}
.y2b{bottom:312.735000px;}
.y75{bottom:316.695000px;}
.ya1{bottom:319.395000px;}
.y45{bottom:327.184483px;}
.y2a{bottom:333.435000px;}
.y74{bottom:344.415000px;}
.ya0{bottom:347.115000px;}
.y29{bottom:354.135000px;}
.y73{bottom:372.315000px;}
.y28{bottom:374.835000px;}
.y27{bottom:395.535000px;}
.y72{bottom:400.035000px;}
.y9f{bottom:402.735000px;}
.y26{bottom:416.235000px;}
.y71{bottom:427.755000px;}
.y9e{bottom:430.455000px;}
.y25{bottom:436.935000px;}
.y70{bottom:455.655000px;}
.y24{bottom:457.635000px;}
.y9d{bottom:458.175000px;}
.y23{bottom:478.335000px;}
.y6f{bottom:483.375000px;}
.y9c{bottom:485.895000px;}
.y22{bottom:497.595000px;}
.y6e{bottom:511.095000px;}
.y21{bottom:512.895000px;}
.y9b{bottom:513.795000px;}
.y20{bottom:533.595000px;}
.y6d{bottom:538.815000px;}
.y9a{bottom:541.515000px;}
.y1f{bottom:554.295000px;}
.y6c{bottom:566.745000px;}
.y99{bottom:569.265000px;}
.y1e{bottom:575.025000px;}
.y6b{bottom:594.465000px;}
.y1d{bottom:595.725000px;}
.y98{bottom:596.985000px;}
.y1c{bottom:616.425000px;}
.y6a{bottom:622.185000px;}
.y97{bottom:624.885000px;}
.y1b{bottom:637.125000px;}
.y62{bottom:649.905000px;}
.y96{bottom:652.605000px;}
.y1a{bottom:657.825000px;}
.y61{bottom:677.805000px;}
.y19{bottom:678.525000px;}
.y95{bottom:680.325000px;}
.y18{bottom:699.225000px;}
.y60{bottom:705.525000px;}
.y94{bottom:708.225000px;}
.y17{bottom:718.305000px;}
.y16{bottom:731.985000px;}
.y5f{bottom:733.245000px;}
.y93{bottom:735.945000px;}
.y15{bottom:752.685000px;}
.y5e{bottom:761.145000px;}
.y92{bottom:763.665000px;}
.y14{bottom:773.385000px;}
.y5d{bottom:788.865000px;}
.y91{bottom:791.385000px;}
.y13{bottom:794.085000px;}
.y12{bottom:814.785000px;}
.ybb{bottom:816.405000px;}
.y5c{bottom:816.585000px;}
.y90{bottom:819.285000px;}
.y11{bottom:835.485000px;}
.y8d{bottom:839.625000px;}
.y5b{bottom:844.305000px;}
.yba{bottom:849.930000px;}
.y10{bottom:856.230000px;}
.yb9{bottom:869.550000px;}
.y5a{bottom:872.250000px;}
.yf{bottom:876.930000px;}
.yb8{bottom:890.250000px;}
.ye{bottom:897.630000px;}
.y59{bottom:899.970000px;}
.y8b{bottom:902.490000px;}
.yb7{bottom:910.950000px;}
.yd{bottom:916.890000px;}
.y58{bottom:927.690000px;}
.yb6{bottom:931.650000px;}
.yc{bottom:933.090000px;}
.yb5{bottom:952.350000px;}
.yb{bottom:952.710000px;}
.y57{bottom:955.590000px;}
.y8a{bottom:965.310000px;}
.ya{bottom:967.830000px;}
.yb4{bottom:973.050000px;}
.y56{bottom:983.310000px;}
.y89{bottom:986.730000px;}
.y9{bottom:988.530000px;}
.yb3{bottom:993.750000px;}
.y88{bottom:1008.150000px;}
.y8{bottom:1009.230000px;}
.y55{bottom:1011.030000px;}
.yb2{bottom:1014.450000px;}
.y7{bottom:1028.850000px;}
.y87{bottom:1029.750000px;}
.yb1{bottom:1035.150000px;}
.y54{bottom:1038.750000px;}
.y6{bottom:1046.130000px;}
.yb0{bottom:1055.850000px;}
.y53{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y86{bottom:1071.870000px;}
.yaf{bottom:1076.550000px;}
.y4{bottom:1094.370000px;}
.yae{bottom:1097.250000px;}
.y1{bottom:1194.120000px;}
.h15{height:20.700000px;}
.h14{height:27.360000px;}
.hb{height:40.964766px;}
.h16{height:41.400000px;}
.h8{height:47.321367px;}
.h9{height:47.344922px;}
.h12{height:48.780000px;}
.hf{height:54.169220px;}
.h10{height:54.318859px;}
.h6{height:54.421875px;}
.h1b{height:58.651172px;}
.ha{height:59.343750px;}
.h4{height:59.436914px;}
.h19{height:62.100000px;}
.h1a{height:62.136000px;}
.h18{height:63.457031px;}
.h2{height:65.884219px;}
.h7{height:70.628906px;}
.h13{height:70.664062px;}
.h3{height:72.562500px;}
.h17{height:74.004654px;}
.hc{height:74.244727px;}
.hd{height:82.676953px;}
.h5{height:84.898125px;}
.h11{height:108.660241px;}
.he{height:346.403764px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:41.940000px;}
.wa{width:52.380000px;}
.wb{width:52.416000px;}
.w8{width:60.300000px;}
.w9{width:63.000000px;}
.wd{width:63.036000px;}
.wc{width:73.800000px;}
.w6{width:169.230000px;}
.w7{width:190.650000px;}
.w5{width:233.175000px;}
.w3{width:739.528744px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x47{left:-15.885000px;}
.x44{left:-13.140000px;}
.x40{left:-10.620000px;}
.x3f{left:-8.640000px;}
.x42{left:-4.140000px;}
.x3b{left:-2.880000px;}
.x0{left:0.000000px;}
.x46{left:1.980000px;}
.x38{left:4.500000px;}
.x3e{left:6.300000px;}
.x3c{left:7.740000px;}
.x3d{left:10.440000px;}
.x43{left:11.520000px;}
.x45{left:14.400000px;}
.x41{left:16.020000px;}
.x2b{left:17.100000px;}
.x35{left:20.880000px;}
.x34{left:27.180000px;}
.x2d{left:29.016000px;}
.x2a{left:34.380000px;}
.x2f{left:35.820000px;}
.x33{left:40.680000px;}
.x1{left:42.479987px;}
.x31{left:49.140000px;}
.x12{left:57.894114px;}
.x2c{left:77.040000px;}
.x10{left:82.695153px;}
.xd{left:84.959987px;}
.xf{left:89.561402px;}
.x26{left:96.335987px;}
.x4{left:102.635987px;}
.x27{left:117.035987px;}
.x13{left:124.830654px;}
.xc{left:127.475987px;}
.xe{left:138.095987px;}
.x17{left:143.253207px;}
.x11{left:147.080304px;}
.x25{left:151.229987px;}
.x1e{left:169.592593px;}
.x5{left:174.629987px;}
.x29{left:204.689987px;}
.x14{left:207.713402px;}
.x18{left:226.128455px;}
.x8{left:241.589987px;}
.x1f{left:244.558517px;}
.x19{left:309.018706px;}
.x2e{left:311.115000px;}
.x7{left:322.454987px;}
.x20{left:330.810607px;}
.x6{left:340.274987px;}
.x9{left:350.354987px;}
.x2{left:369.254987px;}
.x36{left:374.835000px;}
.x1a{left:391.908960px;}
.x21{left:410.324014px;}
.x37{left:427.935000px;}
.xa{left:443.774987px;}
.x3{left:446.474987px;}
.x1b{left:474.784207px;}
.x30{left:481.065000px;}
.x22{left:493.214265px;}
.x15{left:539.244397px;}
.x39{left:555.585000px;}
.x1c{left:557.674456px;}
.x23{left:576.089511px;}
.x3a{left:608.685000px;}
.x16{left:626.667121px;}
.x1d{left:643.971572px;}
.x24{left:658.979763px;}
.x32{left:672.450000px;}
.x28{left:734.369987px;}
.xb{left:807.989987px;}
@media print{
.v1{vertical-align:-83.840000pt;}
.v6{vertical-align:-80.000000pt;}
.v4{vertical-align:-47.340591pt;}
.v2{vertical-align:-1.203574pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:47.340591pt;}
.v3{vertical-align:48.303451pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.540271pt;}
.ls8{letter-spacing:-0.472336pt;}
.ls9{letter-spacing:-0.406541pt;}
.ls15{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.161280pt;}
.lsb{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls12{letter-spacing:8.160000pt;}
.ls16{letter-spacing:8.800000pt;}
.ls0{letter-spacing:8.960000pt;}
.ls13{letter-spacing:10.826667pt;}
.ls18{letter-spacing:11.360000pt;}
.ls4{letter-spacing:13.920000pt;}
.ls11{letter-spacing:14.560000pt;}
.ls19{letter-spacing:20.960000pt;}
.ls1d{letter-spacing:23.680000pt;}
.lsd{letter-spacing:30.208000pt;}
.ls14{letter-spacing:34.400000pt;}
.ls10{letter-spacing:112.896000pt;}
.ls3{letter-spacing:172.928000pt;}
.ls1a{letter-spacing:632.618667pt;}
.wsc{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.703360pt;}
.ws1{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.424000pt;}
.wsb{word-spacing:-10.970981pt;}
.ws8{word-spacing:-10.940758pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:109.091177pt;}
.ws6{word-spacing:139.581728pt;}
.ws9{word-spacing:199.509166pt;}
.ws5{word-spacing:199.562658pt;}
.ws7{word-spacing:199.676463pt;}
.wsa{word-spacing:199.729955pt;}
.ws3{word-spacing:259.899044pt;}
._18{margin-left:-2.591940pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.139627pt;}
._5{width:2.344960pt;}
._7{width:3.263573pt;}
._a{width:4.224000pt;}
._27{width:5.171627pt;}
._15{width:6.103680pt;}
._23{width:7.633920pt;}
._2{width:9.002667pt;}
._4{width:10.389333pt;}
._10{width:11.648000pt;}
._d{width:13.096960pt;}
._6{width:14.016000pt;}
._e{width:14.912000pt;}
._30{width:15.843840pt;}
._25{width:16.756693pt;}
._c{width:17.728000pt;}
._3{width:18.624000pt;}
._33{width:19.614293pt;}
._f{width:20.643413pt;}
._11{width:21.836800pt;}
._16{width:23.152213pt;}
._b{width:24.060587pt;}
._8{width:25.280000pt;}
._9{width:26.423040pt;}
._29{width:27.386667pt;}
._14{width:28.417920pt;}
._13{width:29.448960pt;}
._12{width:30.840320pt;}
._28{width:32.536320pt;}
._2b{width:33.434880pt;}
._24{width:35.043840pt;}
._1d{width:36.355200pt;}
._1e{width:37.363200pt;}
._17{width:38.263680pt;}
._2a{width:41.596800pt;}
._1f{width:42.831360pt;}
._26{width:44.067840pt;}
._2d{width:45.909547pt;}
._2c{width:46.986667pt;}
._22{width:48.675200pt;}
._20{width:59.304960pt;}
._21{width:60.241920pt;}
._32{width:62.638080pt;}
._2e{width:67.916160pt;}
._2f{width:69.114240pt;}
._31{width:70.051200pt;}
._1a{width:221.875052pt;}
._1c{width:222.782192pt;}
._19{width:227.919670pt;}
._1b{width:240.494483pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:48.410435pt;}
.fs7{font-size:48.544166pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:3.514667pt;}
.y84{bottom:3.520000pt;}
.y7c{bottom:6.714667pt;}
.y80{bottom:9.440000pt;}
.y7e{bottom:10.074667pt;}
.y85{bottom:12.640000pt;}
.y40{bottom:15.145261pt;}
.y83{bottom:21.920000pt;}
.y8f{bottom:21.960000pt;}
.y7b{bottom:25.114667pt;}
.y7d{bottom:28.474667pt;}
.y3{bottom:31.872000pt;}
.y3f{bottom:34.469316pt;}
.y8c{bottom:40.320000pt;}
.y8e{bottom:40.360000pt;}
.y2{bottom:49.312000pt;}
.y3e{bottom:53.793371pt;}
.y3d{bottom:69.874460pt;}
.y34{bottom:81.174687pt;}
.y69{bottom:82.912000pt;}
.y32{bottom:84.192000pt;}
.ya9{bottom:86.272000pt;}
.y82{bottom:94.112000pt;}
.y4c{bottom:97.824130pt;}
.y4e{bottom:102.905885pt;}
.y35{bottom:105.346472pt;}
.y68{bottom:107.552000pt;}
.y31{bottom:108.992000pt;}
.ya8{bottom:111.072000pt;}
.yad{bottom:112.512000pt;}
.y4b{bottom:121.026358pt;}
.y49{bottom:127.077666pt;}
.y36{bottom:129.551690pt;}
.yac{bottom:130.912000pt;}
.y7a{bottom:131.552000pt;}
.y67{bottom:132.352000pt;}
.y30{bottom:133.626667pt;}
.ya7{bottom:135.706667pt;}
.y43{bottom:139.648330pt;}
.y41{bottom:146.669191pt;}
.yab{bottom:149.306667pt;}
.y7f{bottom:150.586667pt;}
.y37{bottom:153.716788pt;}
.y66{bottom:156.986667pt;}
.y2f{bottom:158.266667pt;}
.ya6{bottom:160.346667pt;}
.y4f{bottom:166.755502pt;}
.y4d{bottom:166.996221pt;}
.y51{bottom:173.040831pt;}
.y38{bottom:177.922006pt;}
.y65{bottom:181.626667pt;}
.y79{bottom:182.746667pt;}
.y2e{bottom:183.066667pt;}
.y42{bottom:183.204357pt;}
.y48{bottom:185.143444pt;}
.y46{bottom:185.143448pt;}
.ya5{bottom:185.146667pt;}
.yaa{bottom:187.706667pt;}
.y52{bottom:197.714103pt;}
.y39{bottom:202.100477pt;}
.y64{bottom:206.426667pt;}
.y78{bottom:207.386667pt;}
.y2d{bottom:207.706667pt;}
.ya4{bottom:209.786667pt;}
.y50{bottom:212.959383pt;}
.y4a{bottom:221.892577pt;}
.y3a{bottom:226.305695pt;}
.y63{bottom:231.066667pt;}
.y77{bottom:232.186667pt;}
.y2c{bottom:232.346667pt;}
.ya3{bottom:234.426667pt;}
.y47{bottom:237.137859pt;}
.y44{bottom:242.955127pt;}
.y3b{bottom:250.470793pt;}
.y33{bottom:254.954588pt;}
.y76{bottom:256.866667pt;}
.ya2{bottom:259.106667pt;}
.y3c{bottom:274.676011pt;}
.y2b{bottom:277.986667pt;}
.y75{bottom:281.506667pt;}
.ya1{bottom:283.906667pt;}
.y45{bottom:290.830652pt;}
.y2a{bottom:296.386667pt;}
.y74{bottom:306.146667pt;}
.ya0{bottom:308.546667pt;}
.y29{bottom:314.786667pt;}
.y73{bottom:330.946667pt;}
.y28{bottom:333.186667pt;}
.y27{bottom:351.586667pt;}
.y72{bottom:355.586667pt;}
.y9f{bottom:357.986667pt;}
.y26{bottom:369.986667pt;}
.y71{bottom:380.226667pt;}
.y9e{bottom:382.626667pt;}
.y25{bottom:388.386667pt;}
.y70{bottom:405.026667pt;}
.y24{bottom:406.786667pt;}
.y9d{bottom:407.266667pt;}
.y23{bottom:425.186667pt;}
.y6f{bottom:429.666667pt;}
.y9c{bottom:431.906667pt;}
.y22{bottom:442.306667pt;}
.y6e{bottom:454.306667pt;}
.y21{bottom:455.906667pt;}
.y9b{bottom:456.706667pt;}
.y20{bottom:474.306667pt;}
.y6d{bottom:478.946667pt;}
.y9a{bottom:481.346667pt;}
.y1f{bottom:492.706667pt;}
.y6c{bottom:503.773333pt;}
.y99{bottom:506.013333pt;}
.y1e{bottom:511.133333pt;}
.y6b{bottom:528.413333pt;}
.y1d{bottom:529.533333pt;}
.y98{bottom:530.653333pt;}
.y1c{bottom:547.933333pt;}
.y6a{bottom:553.053333pt;}
.y97{bottom:555.453333pt;}
.y1b{bottom:566.333333pt;}
.y62{bottom:577.693333pt;}
.y96{bottom:580.093333pt;}
.y1a{bottom:584.733333pt;}
.y61{bottom:602.493333pt;}
.y19{bottom:603.133333pt;}
.y95{bottom:604.733333pt;}
.y18{bottom:621.533333pt;}
.y60{bottom:627.133333pt;}
.y94{bottom:629.533333pt;}
.y17{bottom:638.493333pt;}
.y16{bottom:650.653333pt;}
.y5f{bottom:651.773333pt;}
.y93{bottom:654.173333pt;}
.y15{bottom:669.053333pt;}
.y5e{bottom:676.573333pt;}
.y92{bottom:678.813333pt;}
.y14{bottom:687.453333pt;}
.y5d{bottom:701.213333pt;}
.y91{bottom:703.453333pt;}
.y13{bottom:705.853333pt;}
.y12{bottom:724.253333pt;}
.ybb{bottom:725.693333pt;}
.y5c{bottom:725.853333pt;}
.y90{bottom:728.253333pt;}
.y11{bottom:742.653333pt;}
.y8d{bottom:746.333333pt;}
.y5b{bottom:750.493333pt;}
.yba{bottom:755.493333pt;}
.y10{bottom:761.093333pt;}
.yb9{bottom:772.933333pt;}
.y5a{bottom:775.333333pt;}
.yf{bottom:779.493333pt;}
.yb8{bottom:791.333333pt;}
.ye{bottom:797.893333pt;}
.y59{bottom:799.973333pt;}
.y8b{bottom:802.213333pt;}
.yb7{bottom:809.733333pt;}
.yd{bottom:815.013333pt;}
.y58{bottom:824.613333pt;}
.yb6{bottom:828.133333pt;}
.yc{bottom:829.413333pt;}
.yb5{bottom:846.533333pt;}
.yb{bottom:846.853333pt;}
.y57{bottom:849.413333pt;}
.y8a{bottom:858.053333pt;}
.ya{bottom:860.293333pt;}
.yb4{bottom:864.933333pt;}
.y56{bottom:874.053333pt;}
.y89{bottom:877.093333pt;}
.y9{bottom:878.693333pt;}
.yb3{bottom:883.333333pt;}
.y88{bottom:896.133333pt;}
.y8{bottom:897.093333pt;}
.y55{bottom:898.693333pt;}
.yb2{bottom:901.733333pt;}
.y7{bottom:914.533333pt;}
.y87{bottom:915.333333pt;}
.yb1{bottom:920.133333pt;}
.y54{bottom:923.333333pt;}
.y6{bottom:929.893333pt;}
.yb0{bottom:938.533333pt;}
.y53{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y86{bottom:952.773333pt;}
.yaf{bottom:956.933333pt;}
.y4{bottom:972.773333pt;}
.yae{bottom:975.333333pt;}
.y1{bottom:1061.440000pt;}
.h15{height:18.400000pt;}
.h14{height:24.320000pt;}
.hb{height:36.413125pt;}
.h16{height:36.800000pt;}
.h8{height:42.063437pt;}
.h9{height:42.084375pt;}
.h12{height:43.360000pt;}
.hf{height:48.150418pt;}
.h10{height:48.283430pt;}
.h6{height:48.375000pt;}
.h1b{height:52.134375pt;}
.ha{height:52.750000pt;}
.h4{height:52.832812pt;}
.h19{height:55.200000pt;}
.h1a{height:55.232000pt;}
.h18{height:56.406250pt;}
.h2{height:58.563750pt;}
.h7{height:62.781250pt;}
.h13{height:62.812500pt;}
.h3{height:64.500000pt;}
.h17{height:65.781915pt;}
.hc{height:65.995312pt;}
.hd{height:73.490625pt;}
.h5{height:75.465000pt;}
.h11{height:96.586881pt;}
.he{height:307.914457pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:37.280000pt;}
.wa{width:46.560000pt;}
.wb{width:46.592000pt;}
.w8{width:53.600000pt;}
.w9{width:56.000000pt;}
.wd{width:56.032000pt;}
.wc{width:65.600000pt;}
.w6{width:150.426667pt;}
.w7{width:169.466667pt;}
.w5{width:207.266667pt;}
.w3{width:657.358883pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x47{left:-14.120000pt;}
.x44{left:-11.680000pt;}
.x40{left:-9.440000pt;}
.x3f{left:-7.680000pt;}
.x42{left:-3.680000pt;}
.x3b{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x46{left:1.760000pt;}
.x38{left:4.000000pt;}
.x3e{left:5.600000pt;}
.x3c{left:6.880000pt;}
.x3d{left:9.280000pt;}
.x43{left:10.240000pt;}
.x45{left:12.800000pt;}
.x41{left:14.240000pt;}
.x2b{left:15.200000pt;}
.x35{left:18.560000pt;}
.x34{left:24.160000pt;}
.x2d{left:25.792000pt;}
.x2a{left:30.560000pt;}
.x2f{left:31.840000pt;}
.x33{left:36.160000pt;}
.x1{left:37.759988pt;}
.x31{left:43.680000pt;}
.x12{left:51.461435pt;}
.x2c{left:68.480000pt;}
.x10{left:73.506802pt;}
.xd{left:75.519988pt;}
.xf{left:79.610135pt;}
.x26{left:85.631988pt;}
.x4{left:91.231988pt;}
.x27{left:104.031988pt;}
.x13{left:110.960582pt;}
.xc{left:113.311988pt;}
.xe{left:122.751988pt;}
.x17{left:127.336184pt;}
.x11{left:130.738048pt;}
.x25{left:134.426655pt;}
.x1e{left:150.748972pt;}
.x5{left:155.226655pt;}
.x29{left:181.946655pt;}
.x14{left:184.634135pt;}
.x18{left:201.003071pt;}
.x8{left:214.746655pt;}
.x1f{left:217.385349pt;}
.x19{left:274.683294pt;}
.x2e{left:276.546667pt;}
.x7{left:286.626655pt;}
.x20{left:294.053873pt;}
.x6{left:302.466655pt;}
.x9{left:311.426655pt;}
.x2{left:328.226655pt;}
.x36{left:333.186667pt;}
.x1a{left:348.363520pt;}
.x21{left:364.732457pt;}
.x37{left:380.386667pt;}
.xa{left:394.466655pt;}
.x3{left:396.866655pt;}
.x1b{left:422.030406pt;}
.x30{left:427.613333pt;}
.x22{left:438.412680pt;}
.x15{left:479.328353pt;}
.x39{left:493.853333pt;}
.x1c{left:495.710628pt;}
.x23{left:512.079565pt;}
.x3a{left:541.053333pt;}
.x16{left:557.037441pt;}
.x1d{left:572.419175pt;}
.x24{left:585.759789pt;}
.x32{left:597.733333pt;}
.x28{left:652.773322pt;}
.xb{left:718.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; }
  