
    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_952c41fbb0ab76b1782a8ce3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_1a39591f98b0add7f0e4d2ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_c41deab353a353103e446249.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_01c080a681039948690ccc70.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_6b7f621040ec9f6fe4959607.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_abfa7bd3a7b470808693f697.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_2b7be587d6af244f0623b1bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.690000px;}
.lsd{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.564600px;}
.ls10{letter-spacing:-0.342600px;}
.ls5{letter-spacing:-0.224400px;}
.lsa{letter-spacing:-0.092400px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.031680px;}
.ls2{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.233280px;}
.ls3{letter-spacing:0.299400px;}
.lse{letter-spacing:0.371400px;}
.ls9{letter-spacing:3.384000px;}
.ls8{letter-spacing:8.153280px;}
.ls0{letter-spacing:11.753280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.960000px;}
.wsa{word-spacing:-13.818120px;}
.ws1{word-spacing:-13.746120px;}
.ws8{word-spacing:-13.478400px;}
.ws3{word-spacing:-13.455360px;}
.ws2{word-spacing:-13.446720px;}
.ws6{word-spacing:-13.354320px;}
.wsc{word-spacing:-13.104120px;}
.ws4{word-spacing:-12.882120px;}
.ws9{word-spacing:-12.786720px;}
.ws7{word-spacing:-12.756720px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-7.477440px;}
._10{margin-left:-6.192000px;}
._f{margin-left:-5.100480px;}
._d{margin-left:-3.643200px;}
._e{margin-left:-2.583360px;}
._1{margin-left:-1.296000px;}
._0{width:1.032000px;}
._9{width:2.057280px;}
._6{width:3.216960px;}
._5{width:4.541760px;}
._7{width:5.847360px;}
._c{width:7.214880px;}
._15{width:8.295840px;}
._3{width:9.406080px;}
._2{width:10.532160px;}
._4{width:12.257760px;}
._8{width:15.036480px;}
._11{width:16.170240px;}
._1a{width:17.745600px;}
._b{width:19.426080px;}
._a{width:20.600640px;}
._16{width:21.957120px;}
._19{width:23.204640px;}
._14{width:24.218400px;}
._13{width:25.237440px;}
._1b{width:32.457600px;}
._17{width:52.727040px;}
._18{width:54.012960px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:121.320000px;}
.y94{bottom:138.600000px;}
.y28{bottom:142.920000px;}
.y52{bottom:143.100000px;}
.y27{bottom:164.520000px;}
.y51{bottom:164.700000px;}
.y73{bottom:172.650000px;}
.y93{bottom:179.670000px;}
.y26{bottom:186.330000px;}
.y50{bottom:186.510000px;}
.y92{bottom:199.830000px;}
.y25{bottom:208.110000px;}
.y4f{bottom:208.290000px;}
.y72{bottom:213.690000px;}
.y24{bottom:229.890000px;}
.y4e{bottom:230.070000px;}
.y71{bottom:233.850000px;}
.y91{bottom:241.050000px;}
.y23{bottom:251.490000px;}
.y70{bottom:254.010000px;}
.y90{bottom:261.210000px;}
.y4d{bottom:272.730000px;}
.y22{bottom:294.330000px;}
.y4c{bottom:294.510000px;}
.y6f{bottom:295.230000px;}
.y8f{bottom:302.250000px;}
.y6e{bottom:315.390000px;}
.y21{bottom:315.930000px;}
.y4b{bottom:316.290000px;}
.y8e{bottom:322.410000px;}
.y20{bottom:337.710000px;}
.y4a{bottom:337.890000px;}
.y8d{bottom:342.570000px;}
.y6d{bottom:356.430000px;}
.y1f{bottom:359.490000px;}
.y49{bottom:359.670000px;}
.y6c{bottom:376.590000px;}
.y1e{bottom:381.270000px;}
.y48{bottom:381.450000px;}
.y8c{bottom:383.790000px;}
.y1d{bottom:402.870000px;}
.y47{bottom:403.230000px;}
.y8b{bottom:403.950000px;}
.y6b{bottom:417.855000px;}
.y8a{bottom:423.975000px;}
.y1c{bottom:424.695000px;}
.y46{bottom:424.875000px;}
.y6a{bottom:438.015000px;}
.y1b{bottom:446.475000px;}
.y45{bottom:446.655000px;}
.y89{bottom:465.195000px;}
.y1a{bottom:468.255000px;}
.y44{bottom:468.435000px;}
.y69{bottom:479.055000px;}
.y88{bottom:485.355000px;}
.y43{bottom:490.215000px;}
.y68{bottom:499.215000px;}
.y19{bottom:510.915000px;}
.y87{bottom:526.395000px;}
.y42{bottom:532.875000px;}
.y67{bottom:540.435000px;}
.y18{bottom:553.755000px;}
.y41{bottom:554.655000px;}
.y86{bottom:567.615000px;}
.ya3{bottom:568.515000px;}
.y17{bottom:575.355000px;}
.y40{bottom:576.435000px;}
.y66{bottom:583.095000px;}
.y85{bottom:587.775000px;}
.y16{bottom:597.135000px;}
.y3f{bottom:598.035000px;}
.ya2{bottom:609.555000px;}
.y65{bottom:616.755000px;}
.y15{bottom:618.915000px;}
.y3e{bottom:619.815000px;}
.y84{bottom:628.815000px;}
.ya1{bottom:629.715000px;}
.y14{bottom:640.695000px;}
.y3d{bottom:641.595000px;}
.y64{bottom:650.595000px;}
.y3c{bottom:663.405000px;}
.y83{bottom:670.065000px;}
.ya0{bottom:670.965000px;}
.y63{bottom:672.405000px;}
.y13{bottom:683.385000px;}
.y3b{bottom:685.005000px;}
.y82{bottom:690.225000px;}
.y9f{bottom:691.125000px;}
.y62{bottom:694.005000px;}
.y12{bottom:705.165000px;}
.y3a{bottom:706.785000px;}
.y9e{bottom:711.285000px;}
.y61{bottom:715.785000px;}
.y11{bottom:726.945000px;}
.y39{bottom:728.565000px;}
.y81{bottom:731.265000px;}
.y60{bottom:737.565000px;}
.y10{bottom:748.545000px;}
.y80{bottom:751.425000px;}
.y9d{bottom:752.325000px;}
.y5f{bottom:759.345000px;}
.yf{bottom:770.325000px;}
.y38{bottom:771.225000px;}
.y9c{bottom:772.485000px;}
.y5e{bottom:780.945000px;}
.ye{bottom:792.105000px;}
.y7f{bottom:792.645000px;}
.y37{bottom:793.005000px;}
.y5d{bottom:802.725000px;}
.y7e{bottom:812.805000px;}
.yd{bottom:813.885000px;}
.y36{bottom:814.785000px;}
.y5c{bottom:824.505000px;}
.y7d{bottom:832.965000px;}
.y9b{bottom:833.685000px;}
.yc{bottom:835.485000px;}
.y35{bottom:836.565000px;}
.y9a{bottom:853.845000px;}
.yb{bottom:857.265000px;}
.y34{bottom:858.165000px;}
.y7c{bottom:874.005000px;}
.ya{bottom:879.045000px;}
.y33{bottom:879.945000px;}
.y7b{bottom:894.165000px;}
.y99{bottom:895.065000px;}
.y9{bottom:900.825000px;}
.y5b{bottom:901.005000px;}
.y32{bottom:901.725000px;}
.y98{bottom:915.270000px;}
.y8{bottom:922.470000px;}
.y5a{bottom:922.830000px;}
.y31{bottom:923.550000px;}
.y7a{bottom:935.430000px;}
.y59{bottom:944.430000px;}
.y30{bottom:945.150000px;}
.y79{bottom:955.590000px;}
.y97{bottom:956.310000px;}
.y7{bottom:965.310000px;}
.y58{bottom:966.210000px;}
.y2f{bottom:966.930000px;}
.y96{bottom:976.470000px;}
.y6{bottom:987.090000px;}
.y57{bottom:987.990000px;}
.y2e{bottom:988.710000px;}
.y78{bottom:996.630000px;}
.y5{bottom:1008.690000px;}
.y56{bottom:1009.770000px;}
.y2d{bottom:1010.490000px;}
.y77{bottom:1016.790000px;}
.y4{bottom:1030.470000px;}
.y55{bottom:1031.370000px;}
.y2c{bottom:1032.090000px;}
.y95{bottom:1037.850000px;}
.y54{bottom:1053.150000px;}
.y76{bottom:1058.010000px;}
.y3{bottom:1072.050000px;}
.y2b{bottom:1074.930000px;}
.y75{bottom:1078.170000px;}
.y2{bottom:1096.530000px;}
.y2a{bottom:1117.590000px;}
.y74{bottom:1119.210000px;}
.y1{bottom:1129.470000px;}
.y29{bottom:1139.370000px;}
.h5{height:55.987031px;}
.h4{height:57.410156px;}
.h3{height:60.855469px;}
.h6{height:62.402344px;}
.h7{height:74.004654px;}
.h2{height:91.283203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.613333pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.501867pt;}
.ls10{letter-spacing:-0.304533pt;}
.ls5{letter-spacing:-0.199467pt;}
.lsa{letter-spacing:-0.082133pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.028160pt;}
.ls2{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.207360pt;}
.ls3{letter-spacing:0.266133pt;}
.lse{letter-spacing:0.330133pt;}
.ls9{letter-spacing:3.008000pt;}
.ls8{letter-spacing:7.247360pt;}
.ls0{letter-spacing:10.447360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.520000pt;}
.wsa{word-spacing:-12.282773pt;}
.ws1{word-spacing:-12.218773pt;}
.ws8{word-spacing:-11.980800pt;}
.ws3{word-spacing:-11.960320pt;}
.ws2{word-spacing:-11.952640pt;}
.ws6{word-spacing:-11.870507pt;}
.wsc{word-spacing:-11.648107pt;}
.ws4{word-spacing:-11.450773pt;}
.ws9{word-spacing:-11.365973pt;}
.ws7{word-spacing:-11.339307pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-6.646613pt;}
._10{margin-left:-5.504000pt;}
._f{margin-left:-4.533760pt;}
._d{margin-left:-3.238400pt;}
._e{margin-left:-2.296320pt;}
._1{margin-left:-1.152000pt;}
._0{width:0.917333pt;}
._9{width:1.828693pt;}
._6{width:2.859520pt;}
._5{width:4.037120pt;}
._7{width:5.197653pt;}
._c{width:6.413227pt;}
._15{width:7.374080pt;}
._3{width:8.360960pt;}
._2{width:9.361920pt;}
._4{width:10.895787pt;}
._8{width:13.365760pt;}
._11{width:14.373547pt;}
._1a{width:15.773867pt;}
._b{width:17.267627pt;}
._a{width:18.311680pt;}
._16{width:19.517440pt;}
._19{width:20.626347pt;}
._14{width:21.527467pt;}
._13{width:22.433280pt;}
._1b{width:28.851200pt;}
._17{width:46.868480pt;}
._18{width:48.011520pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:107.840000pt;}
.y94{bottom:123.200000pt;}
.y28{bottom:127.040000pt;}
.y52{bottom:127.200000pt;}
.y27{bottom:146.240000pt;}
.y51{bottom:146.400000pt;}
.y73{bottom:153.466667pt;}
.y93{bottom:159.706667pt;}
.y26{bottom:165.626667pt;}
.y50{bottom:165.786667pt;}
.y92{bottom:177.626667pt;}
.y25{bottom:184.986667pt;}
.y4f{bottom:185.146667pt;}
.y72{bottom:189.946667pt;}
.y24{bottom:204.346667pt;}
.y4e{bottom:204.506667pt;}
.y71{bottom:207.866667pt;}
.y91{bottom:214.266667pt;}
.y23{bottom:223.546667pt;}
.y70{bottom:225.786667pt;}
.y90{bottom:232.186667pt;}
.y4d{bottom:242.426667pt;}
.y22{bottom:261.626667pt;}
.y4c{bottom:261.786667pt;}
.y6f{bottom:262.426667pt;}
.y8f{bottom:268.666667pt;}
.y6e{bottom:280.346667pt;}
.y21{bottom:280.826667pt;}
.y4b{bottom:281.146667pt;}
.y8e{bottom:286.586667pt;}
.y20{bottom:300.186667pt;}
.y4a{bottom:300.346667pt;}
.y8d{bottom:304.506667pt;}
.y6d{bottom:316.826667pt;}
.y1f{bottom:319.546667pt;}
.y49{bottom:319.706667pt;}
.y6c{bottom:334.746667pt;}
.y1e{bottom:338.906667pt;}
.y48{bottom:339.066667pt;}
.y8c{bottom:341.146667pt;}
.y1d{bottom:358.106667pt;}
.y47{bottom:358.426667pt;}
.y8b{bottom:359.066667pt;}
.y6b{bottom:371.426667pt;}
.y8a{bottom:376.866667pt;}
.y1c{bottom:377.506667pt;}
.y46{bottom:377.666667pt;}
.y6a{bottom:389.346667pt;}
.y1b{bottom:396.866667pt;}
.y45{bottom:397.026667pt;}
.y89{bottom:413.506667pt;}
.y1a{bottom:416.226667pt;}
.y44{bottom:416.386667pt;}
.y69{bottom:425.826667pt;}
.y88{bottom:431.426667pt;}
.y43{bottom:435.746667pt;}
.y68{bottom:443.746667pt;}
.y19{bottom:454.146667pt;}
.y87{bottom:467.906667pt;}
.y42{bottom:473.666667pt;}
.y67{bottom:480.386667pt;}
.y18{bottom:492.226667pt;}
.y41{bottom:493.026667pt;}
.y86{bottom:504.546667pt;}
.ya3{bottom:505.346667pt;}
.y17{bottom:511.426667pt;}
.y40{bottom:512.386667pt;}
.y66{bottom:518.306667pt;}
.y85{bottom:522.466667pt;}
.y16{bottom:530.786667pt;}
.y3f{bottom:531.586667pt;}
.ya2{bottom:541.826667pt;}
.y65{bottom:548.226667pt;}
.y15{bottom:550.146667pt;}
.y3e{bottom:550.946667pt;}
.y84{bottom:558.946667pt;}
.ya1{bottom:559.746667pt;}
.y14{bottom:569.506667pt;}
.y3d{bottom:570.306667pt;}
.y64{bottom:578.306667pt;}
.y3c{bottom:589.693333pt;}
.y83{bottom:595.613333pt;}
.ya0{bottom:596.413333pt;}
.y63{bottom:597.693333pt;}
.y13{bottom:607.453333pt;}
.y3b{bottom:608.893333pt;}
.y82{bottom:613.533333pt;}
.y9f{bottom:614.333333pt;}
.y62{bottom:616.893333pt;}
.y12{bottom:626.813333pt;}
.y3a{bottom:628.253333pt;}
.y9e{bottom:632.253333pt;}
.y61{bottom:636.253333pt;}
.y11{bottom:646.173333pt;}
.y39{bottom:647.613333pt;}
.y81{bottom:650.013333pt;}
.y60{bottom:655.613333pt;}
.y10{bottom:665.373333pt;}
.y80{bottom:667.933333pt;}
.y9d{bottom:668.733333pt;}
.y5f{bottom:674.973333pt;}
.yf{bottom:684.733333pt;}
.y38{bottom:685.533333pt;}
.y9c{bottom:686.653333pt;}
.y5e{bottom:694.173333pt;}
.ye{bottom:704.093333pt;}
.y7f{bottom:704.573333pt;}
.y37{bottom:704.893333pt;}
.y5d{bottom:713.533333pt;}
.y7e{bottom:722.493333pt;}
.yd{bottom:723.453333pt;}
.y36{bottom:724.253333pt;}
.y5c{bottom:732.893333pt;}
.y7d{bottom:740.413333pt;}
.y9b{bottom:741.053333pt;}
.yc{bottom:742.653333pt;}
.y35{bottom:743.613333pt;}
.y9a{bottom:758.973333pt;}
.yb{bottom:762.013333pt;}
.y34{bottom:762.813333pt;}
.y7c{bottom:776.893333pt;}
.ya{bottom:781.373333pt;}
.y33{bottom:782.173333pt;}
.y7b{bottom:794.813333pt;}
.y99{bottom:795.613333pt;}
.y9{bottom:800.733333pt;}
.y5b{bottom:800.893333pt;}
.y32{bottom:801.533333pt;}
.y98{bottom:813.573333pt;}
.y8{bottom:819.973333pt;}
.y5a{bottom:820.293333pt;}
.y31{bottom:820.933333pt;}
.y7a{bottom:831.493333pt;}
.y59{bottom:839.493333pt;}
.y30{bottom:840.133333pt;}
.y79{bottom:849.413333pt;}
.y97{bottom:850.053333pt;}
.y7{bottom:858.053333pt;}
.y58{bottom:858.853333pt;}
.y2f{bottom:859.493333pt;}
.y96{bottom:867.973333pt;}
.y6{bottom:877.413333pt;}
.y57{bottom:878.213333pt;}
.y2e{bottom:878.853333pt;}
.y78{bottom:885.893333pt;}
.y5{bottom:896.613333pt;}
.y56{bottom:897.573333pt;}
.y2d{bottom:898.213333pt;}
.y77{bottom:903.813333pt;}
.y4{bottom:915.973333pt;}
.y55{bottom:916.773333pt;}
.y2c{bottom:917.413333pt;}
.y95{bottom:922.533333pt;}
.y54{bottom:936.133333pt;}
.y76{bottom:940.453333pt;}
.y3{bottom:952.933333pt;}
.y2b{bottom:955.493333pt;}
.y75{bottom:958.373333pt;}
.y2{bottom:974.693333pt;}
.y2a{bottom:993.413333pt;}
.y74{bottom:994.853333pt;}
.y1{bottom:1003.973333pt;}
.y29{bottom:1012.773333pt;}
.h5{height:49.766250pt;}
.h4{height:51.031250pt;}
.h3{height:54.093750pt;}
.h6{height:55.468750pt;}
.h7{height:65.781915pt;}
.h2{height:81.140625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
}




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