
    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_9b5c4391a47b16376b2f4462.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_30384a109a95170cf64a3171.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f942f1d0b3a5590d9d331591.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_7722cd31e1be937d4b40a75a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws56{word-spacing:-55.944000px;}
.ws43{word-spacing:-44.412300px;}
.ws49{word-spacing:-42.468300px;}
.ws48{word-spacing:-42.458400px;}
.ws4a{word-spacing:-42.255900px;}
.ws3d{word-spacing:-41.747400px;}
.ws3f{word-spacing:-41.537400px;}
.ws52{word-spacing:-41.536200px;}
.ws33{word-spacing:-41.318100px;}
.ws41{word-spacing:-41.312700px;}
.ws50{word-spacing:-41.035200px;}
.ws3c{word-spacing:-41.032800px;}
.ws36{word-spacing:-41.028300px;}
.ws40{word-spacing:-40.796400px;}
.ws34{word-spacing:-40.597200px;}
.ws46{word-spacing:-40.070700px;}
.ws47{word-spacing:-39.591900px;}
.ws3a{word-spacing:-39.379200px;}
.ws1b{word-spacing:-38.661000px;}
.ws5a{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.ws14{word-spacing:-38.652000px;}
.ws5{word-spacing:-38.647800px;}
.ws45{word-spacing:-38.434500px;}
.ws2c{word-spacing:-38.433000px;}
.ws3{word-spacing:-38.374200px;}
.ws32{word-spacing:-38.371200px;}
.ws53{word-spacing:-38.359800px;}
.ws17{word-spacing:-38.166000px;}
.ws2e{word-spacing:-38.160000px;}
.ws2b{word-spacing:-38.152800px;}
.wsc{word-spacing:-38.151000px;}
.ws31{word-spacing:-38.138400px;}
.ws9{word-spacing:-38.074500px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.wsa{word-spacing:-37.928100px;}
.wsb{word-spacing:-37.714800px;}
.wsd{word-spacing:-37.709400px;}
.ws4b{word-spacing:-37.419300px;}
.ws11{word-spacing:-37.206000px;}
.ws64{word-spacing:-36.504000px;}
.ws5c{word-spacing:-36.215100px;}
.ws5e{word-spacing:-35.570400px;}
.ws37{word-spacing:-35.061900px;}
.ws19{word-spacing:-35.055000px;}
.ws23{word-spacing:-35.049600px;}
.ws21{word-spacing:-34.547100px;}
.ws38{word-spacing:-34.543200px;}
.ws60{word-spacing:-34.264800px;}
.wsf{word-spacing:-34.117200px;}
.ws51{word-spacing:-34.115400px;}
.wse{word-spacing:-33.821100px;}
.ws8{word-spacing:-33.547800px;}
.ws1a{word-spacing:-32.902800px;}
.ws44{word-spacing:-32.178300px;}
.ws4c{word-spacing:-31.671900px;}
.ws58{word-spacing:-31.371300px;}
.ws13{word-spacing:-30.955200px;}
.ws62{word-spacing:-30.244200px;}
.ws2f{word-spacing:-30.240000px;}
.ws39{word-spacing:-30.228300px;}
.ws22{word-spacing:-30.021900px;}
.ws42{word-spacing:-29.507400px;}
.ws24{word-spacing:-28.796400px;}
.ws20{word-spacing:-28.575000px;}
.ws3b{word-spacing:-28.573800px;}
.ws2a{word-spacing:-27.642600px;}
.ws1d{word-spacing:-27.120600px;}
.ws4e{word-spacing:-26.610300px;}
.ws1e{word-spacing:-25.924200px;}
.ws55{word-spacing:-25.920000px;}
.ws4d{word-spacing:-24.985500px;}
.ws27{word-spacing:-24.975000px;}
.ws4f{word-spacing:-24.964800px;}
.ws63{word-spacing:-23.544000px;}
.ws1f{word-spacing:-22.815000px;}
.ws35{word-spacing:-22.090500px;}
.ws15{word-spacing:-21.597900px;}
.ws16{word-spacing:-21.368700px;}
.ws10{word-spacing:-21.157200px;}
.ws5d{word-spacing:-20.160000px;}
.ws54{word-spacing:-19.215900px;}
.ws26{word-spacing:-18.720000px;}
.ws25{word-spacing:-18.716400px;}
.ws7{word-spacing:-18.472500px;}
.ws29{word-spacing:-17.775000px;}
.ws57{word-spacing:-17.256600px;}
.ws12{word-spacing:-14.167800px;}
.ws1c{word-spacing:-13.457700px;}
.ws18{word-spacing:-13.449600px;}
.ws28{word-spacing:-13.449000px;}
.ws30{word-spacing:-12.234600px;}
.ws5f{word-spacing:-9.846900px;}
.ws2d{word-spacing:-5.040000px;}
.ws3e{word-spacing:-4.590900px;}
.ws59{word-spacing:-3.378600px;}
.ws5b{word-spacing:17.496000px;}
.ws61{word-spacing:167.052000px;}
.ws1{word-spacing:455.092800px;}
._1c{margin-left:-3.846000px;}
._19{margin-left:-2.359500px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1e{width:13.517700px;}
._1f{width:15.156300px;}
._1a{width:16.357800px;}
._1b{width:17.715300px;}
._4{width:18.775800px;}
._6{width:20.214000px;}
._9{width:22.094100px;}
._5{width:24.001500px;}
._1d{width:25.159800px;}
._8{width:26.192400px;}
._f{width:27.213900px;}
._e{width:28.564800px;}
._14{width:29.661600px;}
._b{width:30.864600px;}
._11{width:32.895000px;}
._20{width:34.090200px;}
._1{width:36.000000px;}
._26{width:37.296000px;}
._10{width:38.464800px;}
._12{width:40.095000px;}
._7{width:42.890400px;}
._a{width:43.918200px;}
._18{width:45.144000px;}
._27{width:47.756400px;}
._16{width:52.161600px;}
._23{width:53.723700px;}
._c{width:59.621400px;}
._15{width:61.685400px;}
._d{width:66.777600px;}
._21{width:73.440000px;}
._13{width:78.259200px;}
._17{width:88.560000px;}
._22{width:91.440000px;}
._29{width:108.432000px;}
._2a{width:109.457100px;}
._24{width:117.233100px;}
._25{width:118.494900px;}
._28{width:186.966900px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y4a{bottom:118.875000px;}
.y49{bottom:139.575000px;}
.y32{bottom:155.236500px;}
.y48{bottom:160.275000px;}
.y29{bottom:183.496500px;}
.y47{bottom:202.036500px;}
.y28{bottom:204.196500px;}
.y27{bottom:224.896500px;}
.y46{bottom:243.795000px;}
.y26{bottom:245.596500px;}
.y25{bottom:266.295000px;}
.y24{bottom:286.996500px;}
.y23{bottom:307.696500px;}
.y22{bottom:328.396500px;}
.y21{bottom:349.096500px;}
.y20{bottom:390.675000px;}
.y1f{bottom:411.375000px;}
.y1e{bottom:432.075000px;}
.y1d{bottom:452.775000px;}
.y63{bottom:454.936500px;}
.y1c{bottom:473.475000px;}
.y62{bottom:475.636500px;}
.y1b{bottom:494.175000px;}
.y61{bottom:496.336500px;}
.y31{bottom:504.436500px;}
.y1a{bottom:514.875000px;}
.y60{bottom:517.036500px;}
.y19{bottom:535.575000px;}
.y5f{bottom:537.736500px;}
.y30{bottom:546.195000px;}
.y18{bottom:556.275000px;}
.y5e{bottom:558.436500px;}
.y5d{bottom:579.136500px;}
.y2f{bottom:587.775000px;}
.y17{bottom:598.036500px;}
.y45{bottom:598.936500px;}
.y5c{bottom:599.836500px;}
.y2e{bottom:608.475000px;}
.y16{bottom:618.736500px;}
.y44{bottom:619.636500px;}
.y5b{bottom:620.536500px;}
.y2d{bottom:629.175000px;}
.y15{bottom:639.436500px;}
.y43{bottom:640.336500px;}
.y5a{bottom:641.236500px;}
.y42{bottom:661.036500px;}
.y59{bottom:661.936500px;}
.y2c{bottom:670.936500px;}
.y14{bottom:681.195000px;}
.y41{bottom:681.736500px;}
.y58{bottom:682.636500px;}
.y2b{bottom:691.636500px;}
.y13{bottom:701.896500px;}
.y57{bottom:703.336500px;}
.y40{bottom:723.496500px;}
.y56{bottom:724.036500px;}
.y2a{bottom:733.215000px;}
.y12{bottom:743.475000px;}
.y3f{bottom:744.195000px;}
.y55{bottom:744.736500px;}
.y11{bottom:764.175000px;}
.y54{bottom:765.436500px;}
.y10{bottom:784.875000px;}
.y3e{bottom:785.775000px;}
.y53{bottom:786.136500px;}
.yf{bottom:805.575000px;}
.y3d{bottom:806.475000px;}
.y52{bottom:806.836500px;}
.ye{bottom:826.275000px;}
.y51{bottom:827.536500px;}
.yd{bottom:846.975000px;}
.y3c{bottom:848.236500px;}
.y3b{bottom:868.936500px;}
.yc{bottom:888.736500px;}
.y50{bottom:889.636500px;}
.y4f{bottom:910.336500px;}
.y3a{bottom:910.695000px;}
.yb{bottom:930.495000px;}
.y4e{bottom:931.036500px;}
.y39{bottom:931.395000px;}
.y38{bottom:952.095000px;}
.ya{bottom:972.075000px;}
.y37{bottom:972.795000px;}
.y36{bottom:993.495000px;}
.y9{bottom:1013.836500px;}
.y35{bottom:1014.195000px;}
.y4d{bottom:1014.375000px;}
.y34{bottom:1034.895000px;}
.y4c{bottom:1035.075000px;}
.y4b{bottom:1055.775000px;}
.y33{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xc{left:132.120000px;}
.xb{left:136.620000px;}
.xf{left:159.480000px;}
.xa{left:163.620000px;}
.x9{left:168.120000px;}
.xd{left:187.920000px;}
.xe{left:192.060000px;}
.x4{left:243.538500px;}
.x7{left:426.238500px;}
.x3{left:465.825000px;}
.x5{left:526.138500px;}
.x6{left:568.260000px;}
.x8{left:590.220000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws56{word-spacing:-49.728000pt;}
.ws43{word-spacing:-39.477600pt;}
.ws49{word-spacing:-37.749600pt;}
.ws48{word-spacing:-37.740800pt;}
.ws4a{word-spacing:-37.560800pt;}
.ws3d{word-spacing:-37.108800pt;}
.ws3f{word-spacing:-36.922133pt;}
.ws52{word-spacing:-36.921067pt;}
.ws33{word-spacing:-36.727200pt;}
.ws41{word-spacing:-36.722400pt;}
.ws50{word-spacing:-36.475733pt;}
.ws3c{word-spacing:-36.473600pt;}
.ws36{word-spacing:-36.469600pt;}
.ws40{word-spacing:-36.263467pt;}
.ws34{word-spacing:-36.086400pt;}
.ws46{word-spacing:-35.618400pt;}
.ws47{word-spacing:-35.192800pt;}
.ws3a{word-spacing:-35.003733pt;}
.ws1b{word-spacing:-34.365333pt;}
.ws5a{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.ws14{word-spacing:-34.357333pt;}
.ws5{word-spacing:-34.353600pt;}
.ws45{word-spacing:-34.164000pt;}
.ws2c{word-spacing:-34.162667pt;}
.ws3{word-spacing:-34.110400pt;}
.ws32{word-spacing:-34.107733pt;}
.ws53{word-spacing:-34.097600pt;}
.ws17{word-spacing:-33.925333pt;}
.ws2e{word-spacing:-33.920000pt;}
.ws2b{word-spacing:-33.913600pt;}
.wsc{word-spacing:-33.912000pt;}
.ws31{word-spacing:-33.900800pt;}
.ws9{word-spacing:-33.844000pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsa{word-spacing:-33.713867pt;}
.wsb{word-spacing:-33.524267pt;}
.wsd{word-spacing:-33.519467pt;}
.ws4b{word-spacing:-33.261600pt;}
.ws11{word-spacing:-33.072000pt;}
.ws64{word-spacing:-32.448000pt;}
.ws5c{word-spacing:-32.191200pt;}
.ws5e{word-spacing:-31.618133pt;}
.ws37{word-spacing:-31.166133pt;}
.ws19{word-spacing:-31.160000pt;}
.ws23{word-spacing:-31.155200pt;}
.ws21{word-spacing:-30.708533pt;}
.ws38{word-spacing:-30.705067pt;}
.ws60{word-spacing:-30.457600pt;}
.wsf{word-spacing:-30.326400pt;}
.ws51{word-spacing:-30.324800pt;}
.wse{word-spacing:-30.063200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws1a{word-spacing:-29.246933pt;}
.ws44{word-spacing:-28.602933pt;}
.ws4c{word-spacing:-28.152800pt;}
.ws58{word-spacing:-27.885600pt;}
.ws13{word-spacing:-27.515733pt;}
.ws62{word-spacing:-26.883733pt;}
.ws2f{word-spacing:-26.880000pt;}
.ws39{word-spacing:-26.869600pt;}
.ws22{word-spacing:-26.686133pt;}
.ws42{word-spacing:-26.228800pt;}
.ws24{word-spacing:-25.596800pt;}
.ws20{word-spacing:-25.400000pt;}
.ws3b{word-spacing:-25.398933pt;}
.ws2a{word-spacing:-24.571200pt;}
.ws1d{word-spacing:-24.107200pt;}
.ws4e{word-spacing:-23.653600pt;}
.ws1e{word-spacing:-23.043733pt;}
.ws55{word-spacing:-23.040000pt;}
.ws4d{word-spacing:-22.209333pt;}
.ws27{word-spacing:-22.200000pt;}
.ws4f{word-spacing:-22.190933pt;}
.ws63{word-spacing:-20.928000pt;}
.ws1f{word-spacing:-20.280000pt;}
.ws35{word-spacing:-19.636000pt;}
.ws15{word-spacing:-19.198133pt;}
.ws16{word-spacing:-18.994400pt;}
.ws10{word-spacing:-18.806400pt;}
.ws5d{word-spacing:-17.920000pt;}
.ws54{word-spacing:-17.080800pt;}
.ws26{word-spacing:-16.640000pt;}
.ws25{word-spacing:-16.636800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws29{word-spacing:-15.800000pt;}
.ws57{word-spacing:-15.339200pt;}
.ws12{word-spacing:-12.593600pt;}
.ws1c{word-spacing:-11.962400pt;}
.ws18{word-spacing:-11.955200pt;}
.ws28{word-spacing:-11.954667pt;}
.ws30{word-spacing:-10.875200pt;}
.ws5f{word-spacing:-8.752800pt;}
.ws2d{word-spacing:-4.480000pt;}
.ws3e{word-spacing:-4.080800pt;}
.ws59{word-spacing:-3.003200pt;}
.ws5b{word-spacing:15.552000pt;}
.ws61{word-spacing:148.490667pt;}
.ws1{word-spacing:404.526933pt;}
._1c{margin-left:-3.418667pt;}
._19{margin-left:-2.097333pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1e{width:12.015733pt;}
._1f{width:13.472267pt;}
._1a{width:14.540267pt;}
._1b{width:15.746933pt;}
._4{width:16.689600pt;}
._6{width:17.968000pt;}
._9{width:19.639200pt;}
._5{width:21.334667pt;}
._1d{width:22.364267pt;}
._8{width:23.282133pt;}
._f{width:24.190133pt;}
._e{width:25.390933pt;}
._14{width:26.365867pt;}
._b{width:27.435200pt;}
._11{width:29.240000pt;}
._20{width:30.302400pt;}
._1{width:32.000000pt;}
._26{width:33.152000pt;}
._10{width:34.190933pt;}
._12{width:35.640000pt;}
._7{width:38.124800pt;}
._a{width:39.038400pt;}
._18{width:40.128000pt;}
._27{width:42.450133pt;}
._16{width:46.365867pt;}
._23{width:47.754400pt;}
._c{width:52.996800pt;}
._15{width:54.831467pt;}
._d{width:59.357867pt;}
._21{width:65.280000pt;}
._13{width:69.563733pt;}
._17{width:78.720000pt;}
._22{width:81.280000pt;}
._29{width:96.384000pt;}
._2a{width:97.295200pt;}
._24{width:104.207200pt;}
._25{width:105.328800pt;}
._28{width:166.192800pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y4a{bottom:105.666667pt;}
.y49{bottom:124.066667pt;}
.y32{bottom:137.988000pt;}
.y48{bottom:142.466667pt;}
.y29{bottom:163.108000pt;}
.y47{bottom:179.588000pt;}
.y28{bottom:181.508000pt;}
.y27{bottom:199.908000pt;}
.y46{bottom:216.706667pt;}
.y26{bottom:218.308000pt;}
.y25{bottom:236.706667pt;}
.y24{bottom:255.108000pt;}
.y23{bottom:273.508000pt;}
.y22{bottom:291.908000pt;}
.y21{bottom:310.308000pt;}
.y20{bottom:347.266667pt;}
.y1f{bottom:365.666667pt;}
.y1e{bottom:384.066667pt;}
.y1d{bottom:402.466667pt;}
.y63{bottom:404.388000pt;}
.y1c{bottom:420.866667pt;}
.y62{bottom:422.788000pt;}
.y1b{bottom:439.266667pt;}
.y61{bottom:441.188000pt;}
.y31{bottom:448.388000pt;}
.y1a{bottom:457.666667pt;}
.y60{bottom:459.588000pt;}
.y19{bottom:476.066667pt;}
.y5f{bottom:477.988000pt;}
.y30{bottom:485.506667pt;}
.y18{bottom:494.466667pt;}
.y5e{bottom:496.388000pt;}
.y5d{bottom:514.788000pt;}
.y2f{bottom:522.466667pt;}
.y17{bottom:531.588000pt;}
.y45{bottom:532.388000pt;}
.y5c{bottom:533.188000pt;}
.y2e{bottom:540.866667pt;}
.y16{bottom:549.988000pt;}
.y44{bottom:550.788000pt;}
.y5b{bottom:551.588000pt;}
.y2d{bottom:559.266667pt;}
.y15{bottom:568.388000pt;}
.y43{bottom:569.188000pt;}
.y5a{bottom:569.988000pt;}
.y42{bottom:587.588000pt;}
.y59{bottom:588.388000pt;}
.y2c{bottom:596.388000pt;}
.y14{bottom:605.506667pt;}
.y41{bottom:605.988000pt;}
.y58{bottom:606.788000pt;}
.y2b{bottom:614.788000pt;}
.y13{bottom:623.908000pt;}
.y57{bottom:625.188000pt;}
.y40{bottom:643.108000pt;}
.y56{bottom:643.588000pt;}
.y2a{bottom:651.746667pt;}
.y12{bottom:660.866667pt;}
.y3f{bottom:661.506667pt;}
.y55{bottom:661.988000pt;}
.y11{bottom:679.266667pt;}
.y54{bottom:680.388000pt;}
.y10{bottom:697.666667pt;}
.y3e{bottom:698.466667pt;}
.y53{bottom:698.788000pt;}
.yf{bottom:716.066667pt;}
.y3d{bottom:716.866667pt;}
.y52{bottom:717.188000pt;}
.ye{bottom:734.466667pt;}
.y51{bottom:735.588000pt;}
.yd{bottom:752.866667pt;}
.y3c{bottom:753.988000pt;}
.y3b{bottom:772.388000pt;}
.yc{bottom:789.988000pt;}
.y50{bottom:790.788000pt;}
.y4f{bottom:809.188000pt;}
.y3a{bottom:809.506667pt;}
.yb{bottom:827.106667pt;}
.y4e{bottom:827.588000pt;}
.y39{bottom:827.906667pt;}
.y38{bottom:846.306667pt;}
.ya{bottom:864.066667pt;}
.y37{bottom:864.706667pt;}
.y36{bottom:883.106667pt;}
.y9{bottom:901.188000pt;}
.y35{bottom:901.506667pt;}
.y4d{bottom:901.666667pt;}
.y34{bottom:919.906667pt;}
.y4c{bottom:920.066667pt;}
.y4b{bottom:938.466667pt;}
.y33{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xc{left:117.440000pt;}
.xb{left:121.440000pt;}
.xf{left:141.760000pt;}
.xa{left:145.440000pt;}
.x9{left:149.440000pt;}
.xd{left:167.040000pt;}
.xe{left:170.720000pt;}
.x4{left:216.478667pt;}
.x7{left:378.878667pt;}
.x3{left:414.066667pt;}
.x5{left:467.678667pt;}
.x6{left:505.120000pt;}
.x8{left:524.640000pt;}
.x2{left:649.920000pt;}
}




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