
    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_3634996e7c26d2f57cb74962.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_1397baac9b436f1a7b352522.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970000;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_a4b28a4a49c31a880da687f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145000;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_aff1422afcebb3ba2fbb17e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.460000;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_6b474377914f826cbbc49412.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_0a4b50e4ce71f973ebed2d73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.242000;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:-19.540594px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.261070px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.591782px;}
.ls4{letter-spacing:2.988216px;}
.ls5{letter-spacing:2.988528px;}
.ls2{letter-spacing:2.988826px;}
.lsb{letter-spacing:8.966222px;}
.ls7{letter-spacing:11.950949px;}
.ls8{letter-spacing:11.955461px;}
.ls9{letter-spacing:11.955528px;}
.lsa{letter-spacing:11.955648px;}
.ls6{letter-spacing:19.182461px;}
.ls0{letter-spacing:31.095475px;}
.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;}
}
.ws3b{word-spacing:-18.410952px;}
.ws23{word-spacing:-15.063552px;}
.ws45{word-spacing:-13.389768px;}
.ws2c{word-spacing:-10.042368px;}
.ws9{word-spacing:-3.077268px;}
.ws1d{word-spacing:-2.915873px;}
.wsc{word-spacing:-1.291162px;}
.ws1c{word-spacing:-1.135146px;}
.ws3c{word-spacing:-0.377783px;}
.wsa{word-spacing:-0.263612px;}
.ws2e{word-spacing:0.000000px;}
.ws3a{word-spacing:0.903813px;}
.ws4c{word-spacing:0.994668px;}
.ws4b{word-spacing:0.999451px;}
.ws30{word-spacing:1.066993px;}
.ws2f{word-spacing:1.072074px;}
.ws3{word-spacing:1.129766px;}
.ws18{word-spacing:1.135146px;}
.ws37{word-spacing:1.145906px;}
.ws2{word-spacing:1.380821px;}
.ws1{word-spacing:1.492009px;}
.ws0{word-spacing:1.499182px;}
.ws17{word-spacing:1.506355px;}
.ws19{word-spacing:1.942122px;}
.ws28{word-spacing:1.969021px;}
.ws3f{word-spacing:2.003683px;}
.ws12{word-spacing:2.388649px;}
.ws24{word-spacing:2.652261px;}
.wsd{word-spacing:3.265563px;}
.ws20{word-spacing:3.513036px;}
.ws11{word-spacing:4.061779px;}
.ws1e{word-spacing:4.535205px;}
.ws33{word-spacing:5.283003px;}
.ws31{word-spacing:5.379840px;}
.ws25{word-spacing:5.584274px;}
.ws3e{word-spacing:5.638049px;}
.ws10{word-spacing:5.815607px;}
.ws29{word-spacing:6.127638px;}
.wsf{word-spacing:6.778598px;}
.ws41{word-spacing:7.378719px;}
.wsb{word-spacing:7.585574px;}
.ws21{word-spacing:7.639373px;}
.ws42{word-spacing:7.952566px;}
.ws1f{word-spacing:7.983683px;}
.ws14{word-spacing:8.268814px;}
.ws32{word-spacing:8.580845px;}
.ws4a{word-spacing:8.629263px;}
.ws46{word-spacing:8.999837px;}
.ws1b{word-spacing:9.021992px;}
.ws7{word-spacing:9.737510px;}
.ws8{word-spacing:9.748270px;}
.ws36{word-spacing:10.377711px;}
.ws48{word-spacing:10.554006px;}
.ws13{word-spacing:10.652083px;}
.ws2b{word-spacing:11.012532px;}
.ws2d{word-spacing:11.389121px;}
.ws43{word-spacing:11.491290px;}
.wse{word-spacing:11.851788px;}
.ws1a{word-spacing:11.927105px;}
.ws2a{word-spacing:11.948625px;}
.ws44{word-spacing:12.419010px;}
.ws40{word-spacing:14.417911px;}
.ws39{word-spacing:14.525568px;}
.ws22{word-spacing:14.934436px;}
.ws16{word-spacing:15.095831px;}
.ws15{word-spacing:16.844279px;}
.ws3d{word-spacing:18.343982px;}
.ws35{word-spacing:18.678804px;}
.ws34{word-spacing:18.684184px;}
.ws38{word-spacing:18.711084px;}
.ws49{word-spacing:18.793496px;}
.ws47{word-spacing:21.442757px;}
.ws26{word-spacing:21.895949px;}
.ws4{word-spacing:26.764704px;}
.ws5{word-spacing:26.969138px;}
.ws6{word-spacing:34.086666px;}
.ws27{word-spacing:57.139281px;}
._3{margin-left:-10.469169px;}
._2{margin-left:-6.814464px;}
._1{margin-left:-5.308109px;}
._7{margin-left:-4.228554px;}
._0{margin-left:-2.223667px;}
._b{width:1.242743px;}
._4{width:3.003879px;}
._9{width:5.981023px;}
._c{width:16.182491px;}
._8{width:19.725998px;}
._a{width:32.395805px;}
._6{width:72.386091px;}
._5{width:2481.630528px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:50.809200px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y36{bottom:4.500000px;}
.y35{bottom:15.000000px;}
.y6b{bottom:17.250000px;}
.y6a{bottom:27.750000px;}
.y34{bottom:89.923139px;}
.y19{bottom:94.621387px;}
.y33{bottom:106.425482px;}
.y18{bottom:111.056798px;}
.y32{bottom:122.860894px;}
.y17{bottom:127.492210px;}
.y31{bottom:139.296305px;}
.y16{bottom:143.927621px;}
.y30{bottom:155.731716px;}
.y15{bottom:160.363032px;}
.y2f{bottom:172.167127px;}
.y14{bottom:176.798443px;}
.y55{bottom:178.932938px;}
.y2e{bottom:188.602538px;}
.y13{bottom:193.233854px;}
.y54{bottom:193.876875px;}
.y2d{bottom:205.037950px;}
.y53{bottom:208.820813px;}
.y12{bottom:209.669266px;}
.y2c{bottom:221.473361px;}
.y52{bottom:223.764750px;}
.y11{bottom:226.104677px;}
.y2b{bottom:237.908772px;}
.y51{bottom:238.708688px;}
.y10{bottom:242.540088px;}
.y50{bottom:253.652625px;}
.y2a{bottom:254.344183px;}
.yf{bottom:258.975499px;}
.y4f{bottom:268.597125px;}
.y29{bottom:270.779594px;}
.ye{bottom:275.410910px;}
.y4e{bottom:283.541062px;}
.y28{bottom:287.215006px;}
.yd{bottom:291.846322px;}
.y4d{bottom:298.485000px;}
.yc{bottom:308.281733px;}
.y4c{bottom:313.428937px;}
.y27{bottom:322.560554px;}
.yb{bottom:324.717144px;}
.y4b{bottom:328.372875px;}
.y26{bottom:338.995966px;}
.ya{bottom:341.152555px;}
.y4a{bottom:343.316812px;}
.y69{bottom:352.969031px;}
.y25{bottom:355.431377px;}
.y9{bottom:357.587966px;}
.y49{bottom:358.260750px;}
.y68{bottom:367.912969px;}
.y24{bottom:371.866788px;}
.y48{bottom:373.204687px;}
.y8{bottom:374.023378px;}
.y67{bottom:382.856906px;}
.y47{bottom:388.148625px;}
.y23{bottom:388.302199px;}
.y66{bottom:396.306450px;}
.y46{bottom:403.092562px;}
.y22{bottom:404.737610px;}
.y7{bottom:406.894200px;}
.y45{bottom:418.036500px;}
.y21{bottom:421.173022px;}
.y65{bottom:424.705828px;}
.y20{bottom:437.608433px;}
.y6{bottom:438.270691px;}
.y64{bottom:441.141239px;}
.y44{bottom:451.959150px;}
.y1f{bottom:454.043844px;}
.y5{bottom:457.700820px;}
.y63{bottom:462.459000px;}
.y1e{bottom:470.479255px;}
.y4{bottom:477.130950px;}
.y62{bottom:484.314239px;}
.y1d{bottom:486.914666px;}
.y43{bottom:489.328166px;}
.y1c{bottom:503.350078px;}
.y61{bottom:505.631850px;}
.y42{bottom:505.763578px;}
.y3{bottom:511.490045px;}
.y60{bottom:517.190939px;}
.y1b{bottom:519.785489px;}
.y41{bottom:522.198989px;}
.y2{bottom:532.417622px;}
.y1a{bottom:536.220900px;}
.y5f{bottom:538.508700px;}
.y40{bottom:538.634400px;}
.y5e{bottom:550.067789px;}
.y1{bottom:553.345200px;}
.y5d{bottom:571.385400px;}
.y3f{bottom:573.304350px;}
.y5c{bottom:582.944489px;}
.y5b{bottom:604.262100px;}
.y3e{bottom:610.670128px;}
.y5a{bottom:615.824128px;}
.y3d{bottom:627.105539px;}
.y59{bottom:632.259539px;}
.y3c{bottom:643.549766px;}
.y58{bottom:653.580098px;}
.y3b{bottom:659.985178px;}
.y57{bottom:675.546239px;}
.y3a{bottom:676.420589px;}
.y56{bottom:691.981650px;}
.y39{bottom:692.856000px;}
.y38{bottom:739.599300px;}
.y37{bottom:1142.538900px;}
.h8{height:29.162109px;}
.h12{height:30.825902px;}
.h10{height:33.570202px;}
.h4{height:40.940582px;}
.h11{height:41.424768px;}
.hd{height:44.760082px;}
.h13{height:45.190467px;}
.hb{height:47.557411px;}
.h3{height:49.117790px;}
.h5{height:50.355302px;}
.h6{height:50.839488px;}
.h7{height:52.831272px;}
.hc{height:53.063736px;}
.hf{height:53.087246px;}
.he{height:53.099002px;}
.h2{height:53.583206px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.ha{height:1203.000000px;}
.h9{height:1203.286500px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w2{width:918.420000px;}
.w3{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:80.840850px;}
.x8{left:84.787500px;}
.xa{left:95.479366px;}
.x14{left:97.537500px;}
.x7{left:113.284500px;}
.x13{left:126.034500px;}
.x2{left:227.387692px;}
.x9{left:256.722000px;}
.x3{left:466.395000px;}
.xb{left:470.242739px;}
.x4{left:480.893669px;}
.x5{left:484.780603px;}
.x6{left:490.496683px;}
.x12{left:576.168341px;}
.xf{left:675.961908px;}
.x10{left:686.237449px;}
.xe{left:742.519512px;}
.xc{left:774.166379px;}
.x11{left:788.216836px;}
.xd{left:809.045700px;}
@media print{
.v2{vertical-align:-17.369417pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.120951pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.526029pt;}
.ls4{letter-spacing:2.656192pt;}
.ls5{letter-spacing:2.656469pt;}
.ls2{letter-spacing:2.656734pt;}
.lsb{letter-spacing:7.969975pt;}
.ls7{letter-spacing:10.623066pt;}
.ls8{letter-spacing:10.627076pt;}
.ls9{letter-spacing:10.627136pt;}
.lsa{letter-spacing:10.627243pt;}
.ls6{letter-spacing:17.051076pt;}
.ls0{letter-spacing:27.640422pt;}
.ws3b{word-spacing:-16.365291pt;}
.ws23{word-spacing:-13.389824pt;}
.ws45{word-spacing:-11.902016pt;}
.ws2c{word-spacing:-8.926549pt;}
.ws9{word-spacing:-2.735350pt;}
.ws1d{word-spacing:-2.591887pt;}
.wsc{word-spacing:-1.147699pt;}
.ws1c{word-spacing:-1.009019pt;}
.ws3c{word-spacing:-0.335807pt;}
.wsa{word-spacing:-0.234322pt;}
.ws2e{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.803389pt;}
.ws4c{word-spacing:0.884150pt;}
.ws4b{word-spacing:0.888400pt;}
.ws30{word-spacing:0.948438pt;}
.ws2f{word-spacing:0.952955pt;}
.ws3{word-spacing:1.004237pt;}
.ws18{word-spacing:1.009019pt;}
.ws37{word-spacing:1.018583pt;}
.ws2{word-spacing:1.227397pt;}
.ws1{word-spacing:1.326230pt;}
.ws0{word-spacing:1.332606pt;}
.ws17{word-spacing:1.338982pt;}
.ws19{word-spacing:1.726331pt;}
.ws28{word-spacing:1.750241pt;}
.ws3f{word-spacing:1.781052pt;}
.ws12{word-spacing:2.123244pt;}
.ws24{word-spacing:2.357565pt;}
.wsd{word-spacing:2.902723pt;}
.ws20{word-spacing:3.122698pt;}
.ws11{word-spacing:3.610470pt;}
.ws1e{word-spacing:4.031293pt;}
.ws33{word-spacing:4.696003pt;}
.ws31{word-spacing:4.782080pt;}
.ws25{word-spacing:4.963799pt;}
.ws3e{word-spacing:5.011599pt;}
.ws10{word-spacing:5.169428pt;}
.ws29{word-spacing:5.446789pt;}
.wsf{word-spacing:6.025421pt;}
.ws41{word-spacing:6.558861pt;}
.wsb{word-spacing:6.742733pt;}
.ws21{word-spacing:6.790554pt;}
.ws42{word-spacing:7.068947pt;}
.ws1f{word-spacing:7.096607pt;}
.ws14{word-spacing:7.350057pt;}
.ws32{word-spacing:7.627418pt;}
.ws4a{word-spacing:7.670456pt;}
.ws46{word-spacing:7.999855pt;}
.ws1b{word-spacing:8.019548pt;}
.ws7{word-spacing:8.655565pt;}
.ws8{word-spacing:8.665129pt;}
.ws36{word-spacing:9.224632pt;}
.ws48{word-spacing:9.381339pt;}
.ws13{word-spacing:9.468518pt;}
.ws2b{word-spacing:9.788918pt;}
.ws2d{word-spacing:10.123663pt;}
.ws43{word-spacing:10.214480pt;}
.wse{word-spacing:10.534922pt;}
.ws1a{word-spacing:10.601871pt;}
.ws2a{word-spacing:10.621000pt;}
.ws44{word-spacing:11.039120pt;}
.ws40{word-spacing:12.815921pt;}
.ws39{word-spacing:12.911616pt;}
.ws22{word-spacing:13.275054pt;}
.ws16{word-spacing:13.418516pt;}
.ws15{word-spacing:14.972692pt;}
.ws3d{word-spacing:16.305762pt;}
.ws35{word-spacing:16.603382pt;}
.ws34{word-spacing:16.608164pt;}
.ws38{word-spacing:16.632074pt;}
.ws49{word-spacing:16.705330pt;}
.ws47{word-spacing:19.060228pt;}
.ws26{word-spacing:19.463066pt;}
.ws4{word-spacing:23.790848pt;}
.ws5{word-spacing:23.972567pt;}
.ws6{word-spacing:30.299259pt;}
.ws27{word-spacing:50.790472pt;}
._3{margin-left:-9.305928pt;}
._2{margin-left:-6.057301pt;}
._1{margin-left:-4.718319pt;}
._7{margin-left:-3.758715pt;}
._0{margin-left:-1.976593pt;}
._b{width:1.104660pt;}
._4{width:2.670115pt;}
._9{width:5.316465pt;}
._c{width:14.384436pt;}
._8{width:17.534220pt;}
._a{width:28.796271pt;}
._6{width:64.343192pt;}
._5{width:2205.893803pt;}
.fs3{font-size:31.880533pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:45.163733pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.000000pt;}
.y35{bottom:13.333333pt;}
.y6b{bottom:15.333333pt;}
.y6a{bottom:24.666667pt;}
.y34{bottom:79.931679pt;}
.y19{bottom:84.107900pt;}
.y33{bottom:94.600429pt;}
.y18{bottom:98.717154pt;}
.y32{bottom:109.209683pt;}
.y17{bottom:113.326409pt;}
.y31{bottom:123.818938pt;}
.y16{bottom:127.935663pt;}
.y30{bottom:138.428192pt;}
.y15{bottom:142.544917pt;}
.y2f{bottom:153.037446pt;}
.y14{bottom:157.154172pt;}
.y55{bottom:159.051500pt;}
.y2e{bottom:167.646701pt;}
.y13{bottom:171.763426pt;}
.y54{bottom:172.335000pt;}
.y2d{bottom:182.255955pt;}
.y53{bottom:185.618500pt;}
.y12{bottom:186.372681pt;}
.y2c{bottom:196.865210pt;}
.y52{bottom:198.902000pt;}
.y11{bottom:200.981935pt;}
.y2b{bottom:211.474464pt;}
.y51{bottom:212.185500pt;}
.y10{bottom:215.591189pt;}
.y50{bottom:225.469000pt;}
.y2a{bottom:226.083718pt;}
.yf{bottom:230.200444pt;}
.y4f{bottom:238.753000pt;}
.y29{bottom:240.692973pt;}
.ye{bottom:244.809698pt;}
.y4e{bottom:252.036500pt;}
.y28{bottom:255.302227pt;}
.yd{bottom:259.418953pt;}
.y4d{bottom:265.320000pt;}
.yc{bottom:274.028207pt;}
.y4c{bottom:278.603500pt;}
.y27{bottom:286.720493pt;}
.yb{bottom:288.637461pt;}
.y4b{bottom:291.887000pt;}
.y26{bottom:301.329747pt;}
.ya{bottom:303.246716pt;}
.y4a{bottom:305.170500pt;}
.y69{bottom:313.750250pt;}
.y25{bottom:315.939002pt;}
.y9{bottom:317.855970pt;}
.y49{bottom:318.454000pt;}
.y68{bottom:327.033750pt;}
.y24{bottom:330.548256pt;}
.y48{bottom:331.737500pt;}
.y8{bottom:332.465225pt;}
.y67{bottom:340.317250pt;}
.y47{bottom:345.021000pt;}
.y23{bottom:345.157510pt;}
.y66{bottom:352.272400pt;}
.y46{bottom:358.304500pt;}
.y22{bottom:359.766765pt;}
.y7{bottom:361.683733pt;}
.y45{bottom:371.588000pt;}
.y21{bottom:374.376019pt;}
.y65{bottom:377.516291pt;}
.y20{bottom:388.985274pt;}
.y6{bottom:389.573947pt;}
.y64{bottom:392.125546pt;}
.y44{bottom:401.741467pt;}
.y1f{bottom:403.594528pt;}
.y5{bottom:406.845174pt;}
.y63{bottom:411.074667pt;}
.y1e{bottom:418.203782pt;}
.y4{bottom:424.116400pt;}
.y62{bottom:430.501546pt;}
.y1d{bottom:432.813037pt;}
.y43{bottom:434.958370pt;}
.y1c{bottom:447.422291pt;}
.y61{bottom:449.450533pt;}
.y42{bottom:449.567625pt;}
.y3{bottom:454.657818pt;}
.y60{bottom:459.725279pt;}
.y1b{bottom:462.031546pt;}
.y41{bottom:464.176879pt;}
.y2{bottom:473.260109pt;}
.y1a{bottom:476.640800pt;}
.y5f{bottom:478.674400pt;}
.y40{bottom:478.786133pt;}
.y5e{bottom:488.949146pt;}
.y1{bottom:491.862400pt;}
.y5d{bottom:507.898133pt;}
.y3f{bottom:509.603867pt;}
.y5c{bottom:518.172879pt;}
.y5b{bottom:537.121867pt;}
.y3e{bottom:542.817891pt;}
.y5a{bottom:547.399225pt;}
.y3d{bottom:557.427146pt;}
.y59{bottom:562.008479pt;}
.y3c{bottom:572.044237pt;}
.y58{bottom:580.960087pt;}
.y3b{bottom:586.653491pt;}
.y57{bottom:600.485546pt;}
.y3a{bottom:601.262746pt;}
.y56{bottom:615.094800pt;}
.y39{bottom:615.872000pt;}
.y38{bottom:657.421600pt;}
.y37{bottom:1015.590133pt;}
.h8{height:25.921875pt;}
.h12{height:27.400802pt;}
.h10{height:29.840179pt;}
.h4{height:36.391629pt;}
.h11{height:36.822016pt;}
.hd{height:39.786739pt;}
.h13{height:40.169304pt;}
.hb{height:42.273254pt;}
.h3{height:43.660258pt;}
.h5{height:44.760269pt;}
.h6{height:45.190656pt;}
.h7{height:46.961131pt;}
.hc{height:47.167765pt;}
.hf{height:47.188663pt;}
.he{height:47.199113pt;}
.h2{height:47.629517pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.ha{height:1069.333333pt;}
.h9{height:1069.588000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w2{width:816.373333pt;}
.w3{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:71.858533pt;}
.x8{left:75.366667pt;}
.xa{left:84.870547pt;}
.x14{left:86.700000pt;}
.x7{left:100.697333pt;}
.x13{left:112.030667pt;}
.x2{left:202.122393pt;}
.x9{left:228.197333pt;}
.x3{left:414.573333pt;}
.xb{left:417.993546pt;}
.x4{left:427.461039pt;}
.x5{left:430.916092pt;}
.x6{left:435.997052pt;}
.x12{left:512.149636pt;}
.xf{left:600.855029pt;}
.x10{left:609.988844pt;}
.xe{left:660.017344pt;}
.xc{left:688.147892pt;}
.x11{left:700.637188pt;}
.xd{left:719.151733pt;}
}




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