
    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_5bc7ac592106d22be2c24c06.woff')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_c356e08b64790e7cf848791f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1d19c4bc079db2821ee9d465.woff')format("woff");}.ff3{font-family:ff3;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;}
}
.ws6{word-spacing:-55.944000px;}
.ws5{word-spacing:-38.793900px;}
.ws4a{word-spacing:-38.662200px;}
.ws48{word-spacing:-38.656800px;}
.ws38{word-spacing:-38.654400px;}
.ws18{word-spacing:-38.652300px;}
.ws39{word-spacing:-38.651400px;}
.wse{word-spacing:-38.647800px;}
.ws33{word-spacing:-38.166000px;}
.ws4e{word-spacing:-38.160000px;}
.ws4c{word-spacing:-38.141100px;}
.ws2{word-spacing:-38.081700px;}
.ws24{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws4d{word-spacing:-37.943100px;}
.ws46{word-spacing:-37.941300px;}
.ws34{word-spacing:-37.937400px;}
.ws4{word-spacing:-37.935900px;}
.ws3{word-spacing:-37.931400px;}
.ws1f{word-spacing:-37.924200px;}
.ws11{word-spacing:-37.920600px;}
.ws23{word-spacing:-37.730400px;}
.ws49{word-spacing:-37.639800px;}
.ws8{word-spacing:-37.440000px;}
.ws7{word-spacing:-37.421100px;}
.ws12{word-spacing:-37.224600px;}
.ws3e{word-spacing:-37.214400px;}
.ws1a{word-spacing:-36.496800px;}
.ws15{word-spacing:-36.495000px;}
.ws35{word-spacing:-35.773200px;}
.ws30{word-spacing:-35.066400px;}
.ws47{word-spacing:-34.840800px;}
.ws16{word-spacing:-34.566000px;}
.ws2d{word-spacing:-34.556400px;}
.ws29{word-spacing:-34.344000px;}
.ws20{word-spacing:-33.840000px;}
.ws21{word-spacing:-33.624000px;}
.ws10{word-spacing:-33.609600px;}
.wsf{word-spacing:-32.398800px;}
.ws19{word-spacing:-32.396400px;}
.ws37{word-spacing:-32.392800px;}
.ws3c{word-spacing:-32.387400px;}
.ws2c{word-spacing:-32.190000px;}
.ws3f{word-spacing:-32.173200px;}
.ws25{word-spacing:-29.800800px;}
.ws40{word-spacing:-29.291100px;}
.ws14{word-spacing:-29.080800px;}
.ws22{word-spacing:-28.584000px;}
.wsa{word-spacing:-28.080000px;}
.ws1d{word-spacing:-27.356400px;}
.wsb{word-spacing:-27.142200px;}
.wsc{word-spacing:-27.110100px;}
.ws17{word-spacing:-26.636400px;}
.ws4b{word-spacing:-26.423100px;}
.ws1b{word-spacing:-26.416800px;}
.ws26{word-spacing:-25.909200px;}
.wsd{word-spacing:-25.484400px;}
.ws27{word-spacing:-24.988200px;}
.ws13{word-spacing:-24.969600px;}
.ws2e{word-spacing:-24.465600px;}
.ws44{word-spacing:-22.827300px;}
.ws45{word-spacing:-20.886000px;}
.ws36{word-spacing:-20.446200px;}
.ws3a{word-spacing:-19.720800px;}
.ws1e{word-spacing:-19.428600px;}
.ws3d{word-spacing:-18.720000px;}
.ws42{word-spacing:-18.504000px;}
.ws2b{word-spacing:-16.539600px;}
.ws32{word-spacing:-16.340400px;}
.ws31{word-spacing:-13.970400px;}
.ws41{word-spacing:-12.943200px;}
.ws2a{word-spacing:-12.240000px;}
.ws1c{word-spacing:-11.073600px;}
.ws4f{word-spacing:-5.533200px;}
.ws43{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.436400px;}
.ws28{word-spacing:-1.008000px;}
.ws3b{word-spacing:0.012900px;}
.ws9{word-spacing:13.182600px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.134300px;}
._0{width:1.076400px;}
._9{width:17.955000px;}
._1{width:18.968400px;}
._8{width:20.127600px;}
._b{width:21.448800px;}
._a{width:23.190000px;}
._7{width:24.525900px;}
._16{width:25.686000px;}
._e{width:27.208800px;}
._4{width:29.001900px;}
._5{width:30.166200px;}
._6{width:31.968000px;}
._13{width:32.976000px;}
._15{width:34.194600px;}
._17{width:35.319600px;}
._d{width:38.356800px;}
._12{width:40.536000px;}
._11{width:41.955600px;}
._14{width:43.686300px;}
._10{width:44.928000px;}
._c{width:46.353600px;}
._1a{width:51.552000px;}
._19{width:52.614000px;}
._f{width:56.433900px;}
._3{width:70.266000px;}
._18{width:82.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y2c{bottom:121.575000px;}
.y2b{bottom:142.275000px;}
.y2a{bottom:162.975000px;}
.y29{bottom:183.675000px;}
.y28{bottom:204.375000px;}
.y27{bottom:225.075000px;}
.y26{bottom:245.775000px;}
.y52{bottom:268.096500px;}
.y25{bottom:287.536500px;}
.y51{bottom:288.795000px;}
.y24{bottom:308.236500px;}
.y50{bottom:309.496500px;}
.y23{bottom:328.936500px;}
.y4f{bottom:330.196500px;}
.y22{bottom:349.636500px;}
.y4e{bottom:350.896500px;}
.y21{bottom:370.336500px;}
.y4d{bottom:371.596500px;}
.y20{bottom:391.036500px;}
.y4c{bottom:392.295000px;}
.y4b{bottom:412.996500px;}
.y1f{bottom:432.615000px;}
.y1e{bottom:453.315000px;}
.y4a{bottom:454.575000px;}
.y1d{bottom:474.015000px;}
.y49{bottom:475.275000px;}
.y1c{bottom:494.715000px;}
.y48{bottom:495.975000px;}
.y1b{bottom:515.415000px;}
.y47{bottom:516.675000px;}
.y1a{bottom:536.115000px;}
.y46{bottom:537.375000px;}
.y19{bottom:556.815000px;}
.y45{bottom:558.075000px;}
.y44{bottom:578.775000px;}
.y18{bottom:598.575000px;}
.y43{bottom:599.475000px;}
.y17{bottom:619.275000px;}
.y42{bottom:620.175000px;}
.y16{bottom:639.975000px;}
.y41{bottom:640.875000px;}
.y15{bottom:660.675000px;}
.y14{bottom:681.375000px;}
.y40{bottom:682.636500px;}
.y13{bottom:702.075000px;}
.y3f{bottom:703.336500px;}
.y12{bottom:722.775000px;}
.y3e{bottom:724.036500px;}
.y3d{bottom:744.736500px;}
.y11{bottom:764.536500px;}
.y3c{bottom:765.436500px;}
.y10{bottom:785.236500px;}
.y3b{bottom:807.195000px;}
.yf{bottom:826.815000px;}
.y3a{bottom:827.895000px;}
.ye{bottom:847.515000px;}
.y39{bottom:848.596500px;}
.yd{bottom:868.215000px;}
.y38{bottom:869.295000px;}
.yc{bottom:888.915000px;}
.y37{bottom:889.995000px;}
.yb{bottom:909.615000px;}
.ya{bottom:930.315000px;}
.y36{bottom:931.575000px;}
.y9{bottom:951.015000px;}
.y35{bottom:952.275000px;}
.y34{bottom:972.975000px;}
.y8{bottom:992.775000px;}
.y33{bottom:993.675000px;}
.y7{bottom:1013.475000px;}
.y32{bottom:1014.375000px;}
.y31{bottom:1056.136500px;}
.y30{bottom:1076.836500px;}
.y2f{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2e{bottom:1118.236500px;}
.y2d{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:141.660000px;}
.x2{left:160.560000px;}
.x6{left:274.860000px;}
.x5{left:380.880000px;}
.x8{left:427.138500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws5{word-spacing:-34.483467pt;}
.ws4a{word-spacing:-34.366400pt;}
.ws48{word-spacing:-34.361600pt;}
.ws38{word-spacing:-34.359467pt;}
.ws18{word-spacing:-34.357600pt;}
.ws39{word-spacing:-34.356800pt;}
.wse{word-spacing:-34.353600pt;}
.ws33{word-spacing:-33.925333pt;}
.ws4e{word-spacing:-33.920000pt;}
.ws4c{word-spacing:-33.903200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws24{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4d{word-spacing:-33.727200pt;}
.ws46{word-spacing:-33.725600pt;}
.ws34{word-spacing:-33.722133pt;}
.ws4{word-spacing:-33.720800pt;}
.ws3{word-spacing:-33.716800pt;}
.ws1f{word-spacing:-33.710400pt;}
.ws11{word-spacing:-33.707200pt;}
.ws23{word-spacing:-33.538133pt;}
.ws49{word-spacing:-33.457600pt;}
.ws8{word-spacing:-33.280000pt;}
.ws7{word-spacing:-33.263200pt;}
.ws12{word-spacing:-33.088533pt;}
.ws3e{word-spacing:-33.079467pt;}
.ws1a{word-spacing:-32.441600pt;}
.ws15{word-spacing:-32.440000pt;}
.ws35{word-spacing:-31.798400pt;}
.ws30{word-spacing:-31.170133pt;}
.ws47{word-spacing:-30.969600pt;}
.ws16{word-spacing:-30.725333pt;}
.ws2d{word-spacing:-30.716800pt;}
.ws29{word-spacing:-30.528000pt;}
.ws20{word-spacing:-30.080000pt;}
.ws21{word-spacing:-29.888000pt;}
.ws10{word-spacing:-29.875200pt;}
.wsf{word-spacing:-28.798933pt;}
.ws19{word-spacing:-28.796800pt;}
.ws37{word-spacing:-28.793600pt;}
.ws3c{word-spacing:-28.788800pt;}
.ws2c{word-spacing:-28.613333pt;}
.ws3f{word-spacing:-28.598400pt;}
.ws25{word-spacing:-26.489600pt;}
.ws40{word-spacing:-26.036533pt;}
.ws14{word-spacing:-25.849600pt;}
.ws22{word-spacing:-25.408000pt;}
.wsa{word-spacing:-24.960000pt;}
.ws1d{word-spacing:-24.316800pt;}
.wsb{word-spacing:-24.126400pt;}
.wsc{word-spacing:-24.097867pt;}
.ws17{word-spacing:-23.676800pt;}
.ws4b{word-spacing:-23.487200pt;}
.ws1b{word-spacing:-23.481600pt;}
.ws26{word-spacing:-23.030400pt;}
.wsd{word-spacing:-22.652800pt;}
.ws27{word-spacing:-22.211733pt;}
.ws13{word-spacing:-22.195200pt;}
.ws2e{word-spacing:-21.747200pt;}
.ws44{word-spacing:-20.290933pt;}
.ws45{word-spacing:-18.565333pt;}
.ws36{word-spacing:-18.174400pt;}
.ws3a{word-spacing:-17.529600pt;}
.ws1e{word-spacing:-17.269867pt;}
.ws3d{word-spacing:-16.640000pt;}
.ws42{word-spacing:-16.448000pt;}
.ws2b{word-spacing:-14.701867pt;}
.ws32{word-spacing:-14.524800pt;}
.ws31{word-spacing:-12.418133pt;}
.ws41{word-spacing:-11.505067pt;}
.ws2a{word-spacing:-10.880000pt;}
.ws1c{word-spacing:-9.843200pt;}
.ws4f{word-spacing:-4.918400pt;}
.ws43{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.276800pt;}
.ws28{word-spacing:-0.896000pt;}
.ws3b{word-spacing:0.011467pt;}
.ws9{word-spacing:11.717867pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.008267pt;}
._0{width:0.956800pt;}
._9{width:15.960000pt;}
._1{width:16.860800pt;}
._8{width:17.891200pt;}
._b{width:19.065600pt;}
._a{width:20.613333pt;}
._7{width:21.800800pt;}
._16{width:22.832000pt;}
._e{width:24.185600pt;}
._4{width:25.779467pt;}
._5{width:26.814400pt;}
._6{width:28.416000pt;}
._13{width:29.312000pt;}
._15{width:30.395200pt;}
._17{width:31.395200pt;}
._d{width:34.094933pt;}
._12{width:36.032000pt;}
._11{width:37.293867pt;}
._14{width:38.832267pt;}
._10{width:39.936000pt;}
._c{width:41.203200pt;}
._1a{width:45.824000pt;}
._19{width:46.768000pt;}
._f{width:50.163467pt;}
._3{width:62.458667pt;}
._18{width:73.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y2c{bottom:108.066667pt;}
.y2b{bottom:126.466667pt;}
.y2a{bottom:144.866667pt;}
.y29{bottom:163.266667pt;}
.y28{bottom:181.666667pt;}
.y27{bottom:200.066667pt;}
.y26{bottom:218.466667pt;}
.y52{bottom:238.308000pt;}
.y25{bottom:255.588000pt;}
.y51{bottom:256.706667pt;}
.y24{bottom:273.988000pt;}
.y50{bottom:275.108000pt;}
.y23{bottom:292.388000pt;}
.y4f{bottom:293.508000pt;}
.y22{bottom:310.788000pt;}
.y4e{bottom:311.908000pt;}
.y21{bottom:329.188000pt;}
.y4d{bottom:330.308000pt;}
.y20{bottom:347.588000pt;}
.y4c{bottom:348.706667pt;}
.y4b{bottom:367.108000pt;}
.y1f{bottom:384.546667pt;}
.y1e{bottom:402.946667pt;}
.y4a{bottom:404.066667pt;}
.y1d{bottom:421.346667pt;}
.y49{bottom:422.466667pt;}
.y1c{bottom:439.746667pt;}
.y48{bottom:440.866667pt;}
.y1b{bottom:458.146667pt;}
.y47{bottom:459.266667pt;}
.y1a{bottom:476.546667pt;}
.y46{bottom:477.666667pt;}
.y19{bottom:494.946667pt;}
.y45{bottom:496.066667pt;}
.y44{bottom:514.466667pt;}
.y18{bottom:532.066667pt;}
.y43{bottom:532.866667pt;}
.y17{bottom:550.466667pt;}
.y42{bottom:551.266667pt;}
.y16{bottom:568.866667pt;}
.y41{bottom:569.666667pt;}
.y15{bottom:587.266667pt;}
.y14{bottom:605.666667pt;}
.y40{bottom:606.788000pt;}
.y13{bottom:624.066667pt;}
.y3f{bottom:625.188000pt;}
.y12{bottom:642.466667pt;}
.y3e{bottom:643.588000pt;}
.y3d{bottom:661.988000pt;}
.y11{bottom:679.588000pt;}
.y3c{bottom:680.388000pt;}
.y10{bottom:697.988000pt;}
.y3b{bottom:717.506667pt;}
.yf{bottom:734.946667pt;}
.y3a{bottom:735.906667pt;}
.ye{bottom:753.346667pt;}
.y39{bottom:754.308000pt;}
.yd{bottom:771.746667pt;}
.y38{bottom:772.706667pt;}
.yc{bottom:790.146667pt;}
.y37{bottom:791.106667pt;}
.yb{bottom:808.546667pt;}
.ya{bottom:826.946667pt;}
.y36{bottom:828.066667pt;}
.y9{bottom:845.346667pt;}
.y35{bottom:846.466667pt;}
.y34{bottom:864.866667pt;}
.y8{bottom:882.466667pt;}
.y33{bottom:883.266667pt;}
.y7{bottom:900.866667pt;}
.y32{bottom:901.666667pt;}
.y31{bottom:938.788000pt;}
.y30{bottom:957.188000pt;}
.y2f{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2e{bottom:993.988000pt;}
.y2d{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:125.920000pt;}
.x2{left:142.720000pt;}
.x6{left:244.320000pt;}
.x5{left:338.560000pt;}
.x8{left:379.678667pt;}
}




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