
    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_1e41b5bada322d459a03b7f2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_98cceca82ac1fce1c4bb024c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_a23e8e67ed225292dbe194a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_505aa43329d8d06ed8b485b9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_07bce18455cd9051210fcd33.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3d70db03507cd6cc598f3f83.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.ls4{letter-spacing:12.960000px;}
.ls5{letter-spacing:22.320000px;}
.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;}
}
.ws8{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.352000px;}
.ws4{word-spacing:-16.269240px;}
.ws1{word-spacing:-15.978240px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-2.786880px;}
._1{margin-left:-1.083840px;}
._0{width:1.738560px;}
._20{width:2.746560px;}
._5{width:3.877440px;}
._7{width:5.266560px;}
._3{width:6.912000px;}
._2{width:7.992000px;}
._4{width:9.144000px;}
._c{width:10.587840px;}
._d{width:12.240000px;}
._e{width:13.248000px;}
._8{width:14.760000px;}
._9{width:15.769440px;}
._13{width:16.782240px;}
._14{width:19.429440px;}
._1f{width:20.530560px;}
._b{width:21.579840px;}
._a{width:22.584000px;}
._11{width:23.649600px;}
._1a{width:25.070400px;}
._19{width:26.208000px;}
._15{width:27.360000px;}
._22{width:28.440000px;}
._6{width:30.024000px;}
._12{width:31.104000px;}
._21{width:32.976000px;}
._10{width:34.272000px;}
._18{width:35.496000px;}
._16{width:37.080000px;}
._17{width:38.520000px;}
._24{width:40.176000px;}
._2c{width:41.328000px;}
._23{width:43.416000px;}
._1d{width:44.568000px;}
._1e{width:45.997440px;}
._25{width:64.440000px;}
._1b{width:66.960000px;}
._1c{width:68.616000px;}
._2b{width:69.941280px;}
._29{width:99.432000px;}
._2a{width:101.232000px;}
._2d{width:104.331840px;}
._26{width:141.480000px;}
._28{width:200.592000px;}
._27{width:201.888000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:34.956000px;}
.ya{bottom:39.276000px;}
.y6e{bottom:68.976000px;}
.y3c{bottom:72.396000px;}
.y81{bottom:77.976000px;}
.y6d{bottom:89.676000px;}
.y3b{bottom:93.096000px;}
.y80{bottom:98.676000px;}
.y6c{bottom:110.376000px;}
.y3a{bottom:113.796000px;}
.y89{bottom:119.016000px;}
.y7f{bottom:119.376000px;}
.y6b{bottom:129.276000px;}
.y39{bottom:134.496000px;}
.y88{bottom:139.716000px;}
.y7e{bottom:140.076000px;}
.y6a{bottom:148.176000px;}
.y38{bottom:155.190000px;}
.y7d{bottom:160.770000px;}
.y69{bottom:167.250000px;}
.y37{bottom:175.890000px;}
.y7c{bottom:181.470000px;}
.y68{bottom:186.150000px;}
.y36{bottom:196.590000px;}
.y7b{bottom:202.170000px;}
.y67{bottom:205.230000px;}
.y35{bottom:217.290000px;}
.y83{bottom:222.510000px;}
.y7a{bottom:222.870000px;}
.y66{bottom:224.130000px;}
.y34{bottom:237.630000px;}
.y82{bottom:243.210000px;}
.y65{bottom:243.570000px;}
.y33{bottom:258.330000px;}
.y64{bottom:263.910000px;}
.y79{bottom:264.270000px;}
.y32{bottom:279.435000px;}
.y63{bottom:284.655000px;}
.y78{bottom:285.015000px;}
.y31{bottom:299.955000px;}
.y62{bottom:305.715000px;}
.y30{bottom:320.295000px;}
.y87{bottom:326.055000px;}
.y61{bottom:326.415000px;}
.y2f{bottom:341.355000px;}
.y86{bottom:346.755000px;}
.y60{bottom:347.115000px;}
.y2e{bottom:362.055000px;}
.y5f{bottom:367.815000px;}
.y2d{bottom:382.755000px;}
.y5e{bottom:388.515000px;}
.y2c{bottom:403.455000px;}
.y5d{bottom:409.215000px;}
.y2b{bottom:424.155000px;}
.y5c{bottom:429.915000px;}
.y2a{bottom:444.855000px;}
.y5b{bottom:450.615000px;}
.y29{bottom:465.555000px;}
.y5a{bottom:471.315000px;}
.y28{bottom:486.255000px;}
.y59{bottom:492.015000px;}
.y27{bottom:506.955000px;}
.y58{bottom:512.715000px;}
.y26{bottom:527.655000px;}
.y77{bottom:533.055000px;}
.y57{bottom:533.415000px;}
.y25{bottom:548.355000px;}
.y76{bottom:553.755000px;}
.y56{bottom:554.115000px;}
.y24{bottom:569.085000px;}
.y8d{bottom:574.485000px;}
.y55{bottom:574.845000px;}
.y23{bottom:589.785000px;}
.y54{bottom:595.185000px;}
.y75{bottom:595.545000px;}
.y22{bottom:610.485000px;}
.y53{bottom:615.885000px;}
.y74{bottom:616.245000px;}
.y21{bottom:630.825000px;}
.y52{bottom:636.945000px;}
.y20{bottom:651.525000px;}
.y51{bottom:657.645000px;}
.y1f{bottom:672.045000px;}
.y50{bottom:678.345000px;}
.y1e{bottom:692.925000px;}
.y4f{bottom:699.045000px;}
.y1d{bottom:713.625000px;}
.y4e{bottom:719.745000px;}
.y1c{bottom:734.325000px;}
.y4d{bottom:740.445000px;}
.y1b{bottom:754.665000px;}
.y4c{bottom:761.145000px;}
.y1a{bottom:775.365000px;}
.y4b{bottom:781.845000px;}
.y19{bottom:796.425000px;}
.y4a{bottom:802.545000px;}
.y18{bottom:817.125000px;}
.y73{bottom:822.885000px;}
.y49{bottom:823.245000px;}
.y17{bottom:837.825000px;}
.y72{bottom:843.630000px;}
.y48{bottom:843.990000px;}
.y16{bottom:858.030000px;}
.y47{bottom:864.690000px;}
.y15{bottom:878.730000px;}
.y46{bottom:885.390000px;}
.y14{bottom:899.790000px;}
.y85{bottom:905.730000px;}
.y45{bottom:906.090000px;}
.y13{bottom:920.490000px;}
.y84{bottom:926.430000px;}
.y44{bottom:926.790000px;}
.y12{bottom:941.190000px;}
.y43{bottom:947.490000px;}
.y11{bottom:961.530000px;}
.y8c{bottom:967.830000px;}
.y42{bottom:968.190000px;}
.y10{bottom:982.230000px;}
.y8b{bottom:988.530000px;}
.y41{bottom:988.890000px;}
.yf{bottom:1002.750000px;}
.y8a{bottom:1009.230000px;}
.y40{bottom:1009.590000px;}
.ye{bottom:1023.810000px;}
.y71{bottom:1029.930000px;}
.y3f{bottom:1030.290000px;}
.yd{bottom:1047.930000px;}
.y70{bottom:1050.630000px;}
.y3e{bottom:1050.990000px;}
.y6f{bottom:1071.330000px;}
.yc{bottom:1071.510000px;}
.y3d{bottom:1071.690000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.280000px;}
.y5{bottom:1150.380000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h5{height:45.170156px;}
.hd{height:46.251562px;}
.h7{height:50.068125px;}
.hb{height:50.273438px;}
.h4{height:54.421875px;}
.h6{height:63.673594px;}
.hc{height:65.010937px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:81.632812px;}
.h8{height:84.898125px;}
.h2{height:105.996094px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:126.036000px;}
.x4{left:163.650000px;}
.x6{left:180.030000px;}
.x5{left:204.510000px;}
.x2{left:440.175000px;}
.x3{left:448.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls4{letter-spacing:11.520000pt;}
.ls5{letter-spacing:19.840000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws4{word-spacing:-14.461547pt;}
.ws1{word-spacing:-14.202880pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-2.477227pt;}
._1{margin-left:-0.963413pt;}
._0{width:1.545387pt;}
._20{width:2.441387pt;}
._5{width:3.446613pt;}
._7{width:4.681387pt;}
._3{width:6.144000pt;}
._2{width:7.104000pt;}
._4{width:8.128000pt;}
._c{width:9.411413pt;}
._d{width:10.880000pt;}
._e{width:11.776000pt;}
._8{width:13.120000pt;}
._9{width:14.017280pt;}
._13{width:14.917547pt;}
._14{width:17.270613pt;}
._1f{width:18.249387pt;}
._b{width:19.182080pt;}
._a{width:20.074667pt;}
._11{width:21.021867pt;}
._1a{width:22.284800pt;}
._19{width:23.296000pt;}
._15{width:24.320000pt;}
._22{width:25.280000pt;}
._6{width:26.688000pt;}
._12{width:27.648000pt;}
._21{width:29.312000pt;}
._10{width:30.464000pt;}
._18{width:31.552000pt;}
._16{width:32.960000pt;}
._17{width:34.240000pt;}
._24{width:35.712000pt;}
._2c{width:36.736000pt;}
._23{width:38.592000pt;}
._1d{width:39.616000pt;}
._1e{width:40.886613pt;}
._25{width:57.280000pt;}
._1b{width:59.520000pt;}
._1c{width:60.992000pt;}
._2b{width:62.170027pt;}
._29{width:88.384000pt;}
._2a{width:89.984000pt;}
._2d{width:92.739413pt;}
._26{width:125.760000pt;}
._28{width:178.304000pt;}
._27{width:179.456000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:31.072000pt;}
.ya{bottom:34.912000pt;}
.y6e{bottom:61.312000pt;}
.y3c{bottom:64.352000pt;}
.y81{bottom:69.312000pt;}
.y6d{bottom:79.712000pt;}
.y3b{bottom:82.752000pt;}
.y80{bottom:87.712000pt;}
.y6c{bottom:98.112000pt;}
.y3a{bottom:101.152000pt;}
.y89{bottom:105.792000pt;}
.y7f{bottom:106.112000pt;}
.y6b{bottom:114.912000pt;}
.y39{bottom:119.552000pt;}
.y88{bottom:124.192000pt;}
.y7e{bottom:124.512000pt;}
.y6a{bottom:131.712000pt;}
.y38{bottom:137.946667pt;}
.y7d{bottom:142.906667pt;}
.y69{bottom:148.666667pt;}
.y37{bottom:156.346667pt;}
.y7c{bottom:161.306667pt;}
.y68{bottom:165.466667pt;}
.y36{bottom:174.746667pt;}
.y7b{bottom:179.706667pt;}
.y67{bottom:182.426667pt;}
.y35{bottom:193.146667pt;}
.y83{bottom:197.786667pt;}
.y7a{bottom:198.106667pt;}
.y66{bottom:199.226667pt;}
.y34{bottom:211.226667pt;}
.y82{bottom:216.186667pt;}
.y65{bottom:216.506667pt;}
.y33{bottom:229.626667pt;}
.y64{bottom:234.586667pt;}
.y79{bottom:234.906667pt;}
.y32{bottom:248.386667pt;}
.y63{bottom:253.026667pt;}
.y78{bottom:253.346667pt;}
.y31{bottom:266.626667pt;}
.y62{bottom:271.746667pt;}
.y30{bottom:284.706667pt;}
.y87{bottom:289.826667pt;}
.y61{bottom:290.146667pt;}
.y2f{bottom:303.426667pt;}
.y86{bottom:308.226667pt;}
.y60{bottom:308.546667pt;}
.y2e{bottom:321.826667pt;}
.y5f{bottom:326.946667pt;}
.y2d{bottom:340.226667pt;}
.y5e{bottom:345.346667pt;}
.y2c{bottom:358.626667pt;}
.y5d{bottom:363.746667pt;}
.y2b{bottom:377.026667pt;}
.y5c{bottom:382.146667pt;}
.y2a{bottom:395.426667pt;}
.y5b{bottom:400.546667pt;}
.y29{bottom:413.826667pt;}
.y5a{bottom:418.946667pt;}
.y28{bottom:432.226667pt;}
.y59{bottom:437.346667pt;}
.y27{bottom:450.626667pt;}
.y58{bottom:455.746667pt;}
.y26{bottom:469.026667pt;}
.y77{bottom:473.826667pt;}
.y57{bottom:474.146667pt;}
.y25{bottom:487.426667pt;}
.y76{bottom:492.226667pt;}
.y56{bottom:492.546667pt;}
.y24{bottom:505.853333pt;}
.y8d{bottom:510.653333pt;}
.y55{bottom:510.973333pt;}
.y23{bottom:524.253333pt;}
.y54{bottom:529.053333pt;}
.y75{bottom:529.373333pt;}
.y22{bottom:542.653333pt;}
.y53{bottom:547.453333pt;}
.y74{bottom:547.773333pt;}
.y21{bottom:560.733333pt;}
.y52{bottom:566.173333pt;}
.y20{bottom:579.133333pt;}
.y51{bottom:584.573333pt;}
.y1f{bottom:597.373333pt;}
.y50{bottom:602.973333pt;}
.y1e{bottom:615.933333pt;}
.y4f{bottom:621.373333pt;}
.y1d{bottom:634.333333pt;}
.y4e{bottom:639.773333pt;}
.y1c{bottom:652.733333pt;}
.y4d{bottom:658.173333pt;}
.y1b{bottom:670.813333pt;}
.y4c{bottom:676.573333pt;}
.y1a{bottom:689.213333pt;}
.y4b{bottom:694.973333pt;}
.y19{bottom:707.933333pt;}
.y4a{bottom:713.373333pt;}
.y18{bottom:726.333333pt;}
.y73{bottom:731.453333pt;}
.y49{bottom:731.773333pt;}
.y17{bottom:744.733333pt;}
.y72{bottom:749.893333pt;}
.y48{bottom:750.213333pt;}
.y16{bottom:762.693333pt;}
.y47{bottom:768.613333pt;}
.y15{bottom:781.093333pt;}
.y46{bottom:787.013333pt;}
.y14{bottom:799.813333pt;}
.y85{bottom:805.093333pt;}
.y45{bottom:805.413333pt;}
.y13{bottom:818.213333pt;}
.y84{bottom:823.493333pt;}
.y44{bottom:823.813333pt;}
.y12{bottom:836.613333pt;}
.y43{bottom:842.213333pt;}
.y11{bottom:854.693333pt;}
.y8c{bottom:860.293333pt;}
.y42{bottom:860.613333pt;}
.y10{bottom:873.093333pt;}
.y8b{bottom:878.693333pt;}
.y41{bottom:879.013333pt;}
.yf{bottom:891.333333pt;}
.y8a{bottom:897.093333pt;}
.y40{bottom:897.413333pt;}
.ye{bottom:910.053333pt;}
.y71{bottom:915.493333pt;}
.y3f{bottom:915.813333pt;}
.yd{bottom:931.493333pt;}
.y70{bottom:933.893333pt;}
.y3e{bottom:934.213333pt;}
.y6f{bottom:952.293333pt;}
.yc{bottom:952.453333pt;}
.y3d{bottom:952.613333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.360000pt;}
.y5{bottom:1022.560000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h5{height:40.151250pt;}
.hd{height:41.112500pt;}
.h7{height:44.505000pt;}
.hb{height:44.687500pt;}
.h4{height:48.375000pt;}
.h6{height:56.598750pt;}
.hc{height:57.787500pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:72.562500pt;}
.h8{height:75.465000pt;}
.h2{height:94.218750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:112.032000pt;}
.x4{left:145.466667pt;}
.x6{left:160.026667pt;}
.x5{left:181.786667pt;}
.x2{left:391.266667pt;}
.x3{left:399.106667pt;}
}




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