
    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_4dbe461b2f58e5546b734b4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_8642827cdb10f312aaadec57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4bdc827829c6a7d65259f61e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_22cc42d19fa1609fea924261.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_1fb5db6b7014d2f01daf9446.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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;}
.ls11{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.900000px;}
.lsf{letter-spacing:10.260000px;}
.ls14{letter-spacing:11.466720px;}
.lsc{letter-spacing:12.420000px;}
.lse{letter-spacing:14.580000px;}
.ls13{letter-spacing:41.706720px;}
.ls5{letter-spacing:70.482720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.369680px;}
._2{width:1.032960px;}
._18{width:2.150640px;}
._1{width:3.162480px;}
._6{width:4.500000px;}
._11{width:5.600400px;}
._e{width:6.974880px;}
._8{width:8.366400px;}
._7{width:9.501840px;}
._d{width:10.536000px;}
._9{width:11.638800px;}
._15{width:12.790800px;}
._14{width:13.804560px;}
._c{width:16.058400px;}
._12{width:17.352720px;}
._b{width:19.131840px;}
._a{width:20.378160px;}
._13{width:22.051440px;}
._1a{width:23.827200px;}
._10{width:24.860160px;}
._f{width:25.935840px;}
._19{width:27.151920px;}
._17{width:30.119040px;}
._16{width:31.194720px;}
._1b{width:55.796400px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.956000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.240000px;}
.yb{bottom:35.640000px;}
.ya{bottom:53.280000px;}
.y9{bottom:68.760000px;}
.y34{bottom:111.276000px;}
.y77{bottom:115.776000px;}
.y33{bottom:134.676000px;}
.y5a{bottom:139.176000px;}
.y76{bottom:146.376000px;}
.y32{bottom:158.070000px;}
.y59{bottom:162.570000px;}
.y75{bottom:169.770000px;}
.y31{bottom:181.470000px;}
.y58{bottom:185.970000px;}
.y74{bottom:193.170000px;}
.y30{bottom:204.870000px;}
.y57{bottom:209.370000px;}
.y73{bottom:216.570000px;}
.y2f{bottom:228.270000px;}
.y56{bottom:232.770000px;}
.y72{bottom:239.970000px;}
.y2e{bottom:251.670000px;}
.y55{bottom:256.170000px;}
.y71{bottom:263.370000px;}
.y2d{bottom:275.070000px;}
.y54{bottom:279.570000px;}
.y70{bottom:286.770000px;}
.y2c{bottom:298.470000px;}
.y53{bottom:302.970000px;}
.y6f{bottom:310.170000px;}
.y2b{bottom:321.870000px;}
.y52{bottom:326.370000px;}
.y6e{bottom:333.570000px;}
.y2a{bottom:345.315000px;}
.y51{bottom:349.815000px;}
.y6d{bottom:357.015000px;}
.y29{bottom:368.715000px;}
.y50{bottom:373.215000px;}
.y6c{bottom:380.415000px;}
.y28{bottom:394.275000px;}
.y4f{bottom:396.615000px;}
.y6b{bottom:403.815000px;}
.y27{bottom:417.675000px;}
.y4e{bottom:420.015000px;}
.y6a{bottom:427.215000px;}
.y26{bottom:441.075000px;}
.y4d{bottom:443.415000px;}
.y69{bottom:450.615000px;}
.y25{bottom:464.475000px;}
.y4c{bottom:466.815000px;}
.y68{bottom:474.015000px;}
.y24{bottom:487.875000px;}
.y4b{bottom:490.215000px;}
.y67{bottom:497.415000px;}
.y23{bottom:511.275000px;}
.y4a{bottom:513.615000px;}
.y66{bottom:520.815000px;}
.y22{bottom:534.675000px;}
.y49{bottom:537.015000px;}
.y65{bottom:544.215000px;}
.y21{bottom:558.075000px;}
.y48{bottom:560.415000px;}
.y64{bottom:567.615000px;}
.y20{bottom:581.475000px;}
.y47{bottom:583.815000px;}
.y63{bottom:591.015000px;}
.y1f{bottom:604.905000px;}
.y46{bottom:607.245000px;}
.y62{bottom:608.145000px;}
.y61{bottom:625.425000px;}
.y1e{bottom:628.305000px;}
.y45{bottom:630.645000px;}
.y60{bottom:642.705000px;}
.y78{bottom:649.545000px;}
.y5b{bottom:650.445000px;}
.y1d{bottom:651.705000px;}
.y44{bottom:654.045000px;}
.y5f{bottom:659.985000px;}
.y1c{bottom:675.105000px;}
.y5d{bottom:677.265000px;}
.y43{bottom:677.445000px;}
.y1b{bottom:698.505000px;}
.y42{bottom:700.845000px;}
.y1a{bottom:721.905000px;}
.y41{bottom:724.245000px;}
.y19{bottom:745.305000px;}
.y40{bottom:747.645000px;}
.y5c{bottom:748.905000px;}
.y18{bottom:768.705000px;}
.y3f{bottom:771.045000px;}
.y17{bottom:792.105000px;}
.y3e{bottom:794.445000px;}
.y16{bottom:815.505000px;}
.y3d{bottom:817.845000px;}
.y15{bottom:838.905000px;}
.y3c{bottom:841.245000px;}
.y14{bottom:862.305000px;}
.y3b{bottom:864.645000px;}
.y13{bottom:885.750000px;}
.y3a{bottom:888.090000px;}
.y12{bottom:911.490000px;}
.y11{bottom:934.350000px;}
.y39{bottom:934.890000px;}
.y10{bottom:957.750000px;}
.y38{bottom:958.290000px;}
.yf{bottom:981.150000px;}
.y37{bottom:981.690000px;}
.ye{bottom:1005.090000px;}
.yd{bottom:1027.410000px;}
.y36{bottom:1028.490000px;}
.yc{bottom:1050.810000px;}
.y35{bottom:1051.890000px;}
.y8{bottom:1072.410000px;}
.y7{bottom:1089.870000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1123.710000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1181.340000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:17.280000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:42.281367px;}
.h9{height:43.506914px;}
.h3{height:44.240625px;}
.hb{height:45.024258px;}
.h8{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:50.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:189.570000px;}
.w3{width:199.290000px;}
.w4{width:236.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:61.914000px;}
.x18{left:65.880000px;}
.x16{left:80.820000px;}
.x1{left:108.035987px;}
.x2{left:130.535987px;}
.xe{left:135.035987px;}
.x10{left:143.855987px;}
.x7{left:148.715987px;}
.x4{left:157.169987px;}
.x1b{left:212.069987px;}
.x13{left:214.589987px;}
.x19{left:236.729987px;}
.x11{left:244.469987px;}
.x8{left:262.469987px;}
.x15{left:306.975000px;}
.x1c{left:322.274987px;}
.xc{left:335.234987px;}
.xd{left:356.294987px;}
.xa{left:362.594987px;}
.xb{left:378.074987px;}
.x1d{left:388.154987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.324987px;}
.x17{left:542.985000px;}
.x12{left:697.649987px;}
.x1a{left:724.649987px;}
.xf{left:757.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.800000pt;}
.lsf{letter-spacing:9.120000pt;}
.ls14{letter-spacing:10.192640pt;}
.lsc{letter-spacing:11.040000pt;}
.lse{letter-spacing:12.960000pt;}
.ls13{letter-spacing:37.072640pt;}
.ls5{letter-spacing:62.651307pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.592000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.217493pt;}
._2{width:0.918187pt;}
._18{width:1.911680pt;}
._1{width:2.811093pt;}
._6{width:4.000000pt;}
._11{width:4.978133pt;}
._e{width:6.199893pt;}
._8{width:7.436800pt;}
._7{width:8.446080pt;}
._d{width:9.365333pt;}
._9{width:10.345600pt;}
._15{width:11.369600pt;}
._14{width:12.270720pt;}
._c{width:14.274133pt;}
._12{width:15.424640pt;}
._b{width:17.006080pt;}
._a{width:18.113920pt;}
._13{width:19.601280pt;}
._1a{width:21.179733pt;}
._10{width:22.097920pt;}
._f{width:23.054080pt;}
._19{width:24.135040pt;}
._17{width:26.772480pt;}
._16{width:27.728640pt;}
._1b{width:49.596800pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.738667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:2.880000pt;}
.yb{bottom:31.680000pt;}
.ya{bottom:47.360000pt;}
.y9{bottom:61.120000pt;}
.y34{bottom:98.912000pt;}
.y77{bottom:102.912000pt;}
.y33{bottom:119.712000pt;}
.y5a{bottom:123.712000pt;}
.y76{bottom:130.112000pt;}
.y32{bottom:140.506667pt;}
.y59{bottom:144.506667pt;}
.y75{bottom:150.906667pt;}
.y31{bottom:161.306667pt;}
.y58{bottom:165.306667pt;}
.y74{bottom:171.706667pt;}
.y30{bottom:182.106667pt;}
.y57{bottom:186.106667pt;}
.y73{bottom:192.506667pt;}
.y2f{bottom:202.906667pt;}
.y56{bottom:206.906667pt;}
.y72{bottom:213.306667pt;}
.y2e{bottom:223.706667pt;}
.y55{bottom:227.706667pt;}
.y71{bottom:234.106667pt;}
.y2d{bottom:244.506667pt;}
.y54{bottom:248.506667pt;}
.y70{bottom:254.906667pt;}
.y2c{bottom:265.306667pt;}
.y53{bottom:269.306667pt;}
.y6f{bottom:275.706667pt;}
.y2b{bottom:286.106667pt;}
.y52{bottom:290.106667pt;}
.y6e{bottom:296.506667pt;}
.y2a{bottom:306.946667pt;}
.y51{bottom:310.946667pt;}
.y6d{bottom:317.346667pt;}
.y29{bottom:327.746667pt;}
.y50{bottom:331.746667pt;}
.y6c{bottom:338.146667pt;}
.y28{bottom:350.466667pt;}
.y4f{bottom:352.546667pt;}
.y6b{bottom:358.946667pt;}
.y27{bottom:371.266667pt;}
.y4e{bottom:373.346667pt;}
.y6a{bottom:379.746667pt;}
.y26{bottom:392.066667pt;}
.y4d{bottom:394.146667pt;}
.y69{bottom:400.546667pt;}
.y25{bottom:412.866667pt;}
.y4c{bottom:414.946667pt;}
.y68{bottom:421.346667pt;}
.y24{bottom:433.666667pt;}
.y4b{bottom:435.746667pt;}
.y67{bottom:442.146667pt;}
.y23{bottom:454.466667pt;}
.y4a{bottom:456.546667pt;}
.y66{bottom:462.946667pt;}
.y22{bottom:475.266667pt;}
.y49{bottom:477.346667pt;}
.y65{bottom:483.746667pt;}
.y21{bottom:496.066667pt;}
.y48{bottom:498.146667pt;}
.y64{bottom:504.546667pt;}
.y20{bottom:516.866667pt;}
.y47{bottom:518.946667pt;}
.y63{bottom:525.346667pt;}
.y1f{bottom:537.693333pt;}
.y46{bottom:539.773333pt;}
.y62{bottom:540.573333pt;}
.y61{bottom:555.933333pt;}
.y1e{bottom:558.493333pt;}
.y45{bottom:560.573333pt;}
.y60{bottom:571.293333pt;}
.y78{bottom:577.373333pt;}
.y5b{bottom:578.173333pt;}
.y1d{bottom:579.293333pt;}
.y44{bottom:581.373333pt;}
.y5f{bottom:586.653333pt;}
.y1c{bottom:600.093333pt;}
.y5d{bottom:602.013333pt;}
.y43{bottom:602.173333pt;}
.y1b{bottom:620.893333pt;}
.y42{bottom:622.973333pt;}
.y1a{bottom:641.693333pt;}
.y41{bottom:643.773333pt;}
.y19{bottom:662.493333pt;}
.y40{bottom:664.573333pt;}
.y5c{bottom:665.693333pt;}
.y18{bottom:683.293333pt;}
.y3f{bottom:685.373333pt;}
.y17{bottom:704.093333pt;}
.y3e{bottom:706.173333pt;}
.y16{bottom:724.893333pt;}
.y3d{bottom:726.973333pt;}
.y15{bottom:745.693333pt;}
.y3c{bottom:747.773333pt;}
.y14{bottom:766.493333pt;}
.y3b{bottom:768.573333pt;}
.y13{bottom:787.333333pt;}
.y3a{bottom:789.413333pt;}
.y12{bottom:810.213333pt;}
.y11{bottom:830.533333pt;}
.y39{bottom:831.013333pt;}
.y10{bottom:851.333333pt;}
.y38{bottom:851.813333pt;}
.yf{bottom:872.133333pt;}
.y37{bottom:872.613333pt;}
.ye{bottom:893.413333pt;}
.yd{bottom:913.253333pt;}
.y36{bottom:914.213333pt;}
.yc{bottom:934.053333pt;}
.y35{bottom:935.013333pt;}
.y8{bottom:953.253333pt;}
.y7{bottom:968.773333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:998.853333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1050.080000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:15.360000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:37.583438pt;}
.h9{height:38.672812pt;}
.h3{height:39.325000pt;}
.hb{height:40.021563pt;}
.h8{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:45.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:168.506667pt;}
.w3{width:177.146667pt;}
.w4{width:209.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:55.034667pt;}
.x18{left:58.560000pt;}
.x16{left:71.840000pt;}
.x1{left:96.031988pt;}
.x2{left:116.031988pt;}
.xe{left:120.031988pt;}
.x10{left:127.871988pt;}
.x7{left:132.191988pt;}
.x4{left:139.706655pt;}
.x1b{left:188.506655pt;}
.x13{left:190.746655pt;}
.x19{left:210.426655pt;}
.x11{left:217.306655pt;}
.x8{left:233.306655pt;}
.x15{left:272.866667pt;}
.x1c{left:286.466655pt;}
.xc{left:297.986655pt;}
.xd{left:316.706655pt;}
.xa{left:322.306655pt;}
.xb{left:336.066655pt;}
.x1d{left:345.026655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.733322pt;}
.x17{left:482.653333pt;}
.x12{left:620.133322pt;}
.x1a{left:644.133322pt;}
.xf{left:673.733322pt;}
}




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