
    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_c5bfcfba784d89da7566dcac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_0b06d653049b8f501be49d78.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_13c8930cfb587d72881256a7.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_709d98eef44e13d2ff165436.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_bb3e55e79bbff4f36a8dfcd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_6f186b8e5208d34e47e68085.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd08ce270203ada9423cd68a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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(0.253279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253279,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.642000px;}
.ls9{letter-spacing:-0.590400px;}
.ls8{letter-spacing:-0.445200px;}
.ls7{letter-spacing:-0.283800px;}
.ls3{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.133800px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.044640px;}
.ls4{letter-spacing:0.525600px;}
.ls1{letter-spacing:4.694843px;}
.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:-66.393206px;}
.ws9{word-spacing:-21.849120px;}
.ws4{word-spacing:-21.804480px;}
.ws5{word-spacing:-21.670680px;}
.ws3{word-spacing:-21.552480px;}
.ws6{word-spacing:-21.520680px;}
.ws7{word-spacing:-21.359280px;}
.ws8{word-spacing:-21.214080px;}
.ws1{word-spacing:-0.066393px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.543680px;}
._1{width:1.157760px;}
._2{width:3.073920px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:66.393206px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y36{bottom:16.678232px;}
.y6d{bottom:114.516000px;}
.y9e{bottom:126.792000px;}
.y93{bottom:130.032000px;}
.y50{bottom:138.672000px;}
.y34{bottom:139.392000px;}
.y1b{bottom:142.632000px;}
.y66{bottom:146.232000px;}
.y6c{bottom:158.115000px;}
.y92{bottom:161.355000px;}
.y4f{bottom:170.355000px;}
.y33{bottom:171.075000px;}
.y1a{bottom:174.315000px;}
.y65{bottom:189.795000px;}
.y4e{bottom:202.035000px;}
.y91{bottom:205.275000px;}
.y32{bottom:214.635000px;}
.yab{bottom:217.155000px;}
.y19{bottom:217.875000px;}
.y7e{bottom:221.475000px;}
.y64{bottom:233.355000px;}
.y4d{bottom:245.595000px;}
.y90{bottom:248.835000px;}
.y18{bottom:249.555000px;}
.y7d{bottom:253.185000px;}
.y31{bottom:258.585000px;}
.y6b{bottom:265.065000px;}
.y63{bottom:277.305000px;}
.yaa{bottom:280.545000px;}
.y17{bottom:281.265000px;}
.y7c{bottom:284.865000px;}
.y4c{bottom:289.185000px;}
.y8f{bottom:292.425000px;}
.y30{bottom:302.145000px;}
.y62{bottom:308.625000px;}
.y16{bottom:312.945000px;}
.y7b{bottom:316.545000px;}
.y95{bottom:320.865000px;}
.ya9{bottom:324.105000px;}
.y4b{bottom:332.745000px;}
.y8e{bottom:335.985000px;}
.y61{bottom:340.305000px;}
.y15{bottom:344.265000px;}
.y2f{bottom:345.705000px;}
.y6a{bottom:352.545000px;}
.ya8{bottom:355.785000px;}
.y7a{bottom:360.105000px;}
.y94{bottom:364.425000px;}
.y8d{bottom:367.665000px;}
.y60{bottom:371.985000px;}
.y4a{bottom:376.350000px;}
.y2e{bottom:377.430000px;}
.y9b{bottom:383.910000px;}
.ya7{bottom:387.150000px;}
.y14{bottom:388.230000px;}
.y69{bottom:396.150000px;}
.y8c{bottom:399.390000px;}
.y5f{bottom:403.710000px;}
.y49{bottom:408.030000px;}
.y2d{bottom:409.110000px;}
.y9a{bottom:415.590000px;}
.ya6{bottom:431.070000px;}
.y13{bottom:431.790000px;}
.y5e{bottom:435.390000px;}
.y48{bottom:439.710000px;}
.y2c{bottom:440.430000px;}
.y8b{bottom:442.950000px;}
.y79{bottom:447.270000px;}
.ya5{bottom:462.390000px;}
.y12{bottom:463.470000px;}
.y5d{bottom:467.070000px;}
.y47{bottom:471.390000px;}
.y2b{bottom:472.110000px;}
.y99{bottom:478.950000px;}
.y8a{bottom:486.510000px;}
.y78{bottom:490.830000px;}
.ya4{bottom:494.070000px;}
.y11{bottom:494.790000px;}
.y5c{bottom:498.390000px;}
.y46{bottom:503.100000px;}
.y2a{bottom:503.820000px;}
.y98{bottom:510.660000px;}
.y77{bottom:522.540000px;}
.y10{bottom:526.500000px;}
.y89{bottom:530.100000px;}
.y45{bottom:534.420000px;}
.y29{bottom:535.500000px;}
.ya3{bottom:537.660000px;}
.y5b{bottom:541.980000px;}
.y76{bottom:554.220000px;}
.yf{bottom:558.180000px;}
.y44{bottom:566.100000px;}
.y28{bottom:567.180000px;}
.y88{bottom:573.660000px;}
.ya2{bottom:581.220000px;}
.y5a{bottom:585.900000px;}
.ye{bottom:589.860000px;}
.y43{bottom:597.780000px;}
.y87{bottom:605.340000px;}
.y27{bottom:610.740000px;}
.y75{bottom:617.220000px;}
.yd{bottom:621.540000px;}
.ya1{bottom:625.140000px;}
.y42{bottom:629.490000px;}
.y86{bottom:637.050000px;}
.y74{bottom:648.930000px;}
.y26{bottom:654.330000px;}
.y41{bottom:661.170000px;}
.yc{bottom:665.130000px;}
.y85{bottom:668.730000px;}
.y59{bottom:673.050000px;}
.y73{bottom:692.490000px;}
.yb{bottom:696.810000px;}
.y25{bottom:697.890000px;}
.y84{bottom:700.410000px;}
.y40{bottom:704.730000px;}
.ya0{bottom:712.290000px;}
.y9d{bottom:716.610000px;}
.y97{bottom:724.170000px;}
.ya{bottom:728.130000px;}
.y58{bottom:736.410000px;}
.y24{bottom:741.450000px;}
.y83{bottom:743.970000px;}
.y3f{bottom:748.290000px;}
.y9f{bottom:755.895000px;}
.y9{bottom:759.855000px;}
.y57{bottom:767.775000px;}
.y23{bottom:773.175000px;}
.y68{bottom:780.015000px;}
.y82{bottom:787.575000px;}
.y8{bottom:791.535000px;}
.y3e{bottom:791.895000px;}
.y56{bottom:799.455000px;}
.y22{bottom:804.855000px;}
.y96{bottom:811.695000px;}
.y7{bottom:823.215000px;}
.y67{bottom:823.575000px;}
.y55{bottom:831.135000px;}
.y3d{bottom:835.455000px;}
.y21{bottom:836.535000px;}
.y9c{bottom:843.015000px;}
.y6{bottom:854.895000px;}
.y72{bottom:855.255000px;}
.y54{bottom:862.815000px;}
.y3c{bottom:867.135000px;}
.y81{bottom:874.695000px;}
.y20{bottom:880.125000px;}
.y71{bottom:886.965000px;}
.y53{bottom:894.525000px;}
.y5{bottom:898.485000px;}
.y3b{bottom:898.845000px;}
.y80{bottom:906.405000px;}
.y70{bottom:918.285000px;}
.y1f{bottom:923.685000px;}
.y52{bottom:926.205000px;}
.y3a{bottom:930.525000px;}
.y7f{bottom:938.085000px;}
.y4{bottom:942.045000px;}
.y6f{bottom:949.965000px;}
.y39{bottom:962.205000px;}
.y1e{bottom:966.165000px;}
.y51{bottom:969.765000px;}
.y3{bottom:970.485000px;}
.y6e{bottom:981.645000px;}
.y38{bottom:993.525000px;}
.y1d{bottom:1009.050000px;}
.y2{bottom:1013.370000px;}
.y37{bottom:1025.250000px;}
.y1c{bottom:1045.410000px;}
.y35{bottom:1045.799919px;}
.y1{bottom:1056.930000px;}
.h4{height:34.200081px;}
.h5{height:65.161301px;}
.h1{height:77.636250px;}
.h2{height:97.233750px;}
.h3{height:99.166237px;}
.h0{height:1188.000000px;}
.w2{width:702.003813px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035986px;}
.x1{left:127.475986px;}
.x2{left:386.789986px;}
.x4{left:810.284986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.570667pt;}
.ls9{letter-spacing:-0.524800pt;}
.ls8{letter-spacing:-0.395733pt;}
.ls7{letter-spacing:-0.252267pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.118933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.039680pt;}
.ls4{letter-spacing:0.467200pt;}
.ls1{letter-spacing:4.173193pt;}
.ws2{word-spacing:-59.016183pt;}
.ws9{word-spacing:-19.421440pt;}
.ws4{word-spacing:-19.381760pt;}
.ws5{word-spacing:-19.262827pt;}
.ws3{word-spacing:-19.157760pt;}
.ws6{word-spacing:-19.129493pt;}
.ws7{word-spacing:-18.986027pt;}
.ws8{word-spacing:-18.856960pt;}
.ws1{word-spacing:-0.059016pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.372160pt;}
._1{width:1.029120pt;}
._2{width:2.732373pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:59.016183pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:14.825095pt;}
.y6d{bottom:101.792000pt;}
.y9e{bottom:112.704000pt;}
.y93{bottom:115.584000pt;}
.y50{bottom:123.264000pt;}
.y34{bottom:123.904000pt;}
.y1b{bottom:126.784000pt;}
.y66{bottom:129.984000pt;}
.y6c{bottom:140.546667pt;}
.y92{bottom:143.426667pt;}
.y4f{bottom:151.426667pt;}
.y33{bottom:152.066667pt;}
.y1a{bottom:154.946667pt;}
.y65{bottom:168.706667pt;}
.y4e{bottom:179.586667pt;}
.y91{bottom:182.466667pt;}
.y32{bottom:190.786667pt;}
.yab{bottom:193.026667pt;}
.y19{bottom:193.666667pt;}
.y7e{bottom:196.866667pt;}
.y64{bottom:207.426667pt;}
.y4d{bottom:218.306667pt;}
.y90{bottom:221.186667pt;}
.y18{bottom:221.826667pt;}
.y7d{bottom:225.053333pt;}
.y31{bottom:229.853333pt;}
.y6b{bottom:235.613333pt;}
.y63{bottom:246.493333pt;}
.yaa{bottom:249.373333pt;}
.y17{bottom:250.013333pt;}
.y7c{bottom:253.213333pt;}
.y4c{bottom:257.053333pt;}
.y8f{bottom:259.933333pt;}
.y30{bottom:268.573333pt;}
.y62{bottom:274.333333pt;}
.y16{bottom:278.173333pt;}
.y7b{bottom:281.373333pt;}
.y95{bottom:285.213333pt;}
.ya9{bottom:288.093333pt;}
.y4b{bottom:295.773333pt;}
.y8e{bottom:298.653333pt;}
.y61{bottom:302.493333pt;}
.y15{bottom:306.013333pt;}
.y2f{bottom:307.293333pt;}
.y6a{bottom:313.373333pt;}
.ya8{bottom:316.253333pt;}
.y7a{bottom:320.093333pt;}
.y94{bottom:323.933333pt;}
.y8d{bottom:326.813333pt;}
.y60{bottom:330.653333pt;}
.y4a{bottom:334.533333pt;}
.y2e{bottom:335.493333pt;}
.y9b{bottom:341.253333pt;}
.ya7{bottom:344.133333pt;}
.y14{bottom:345.093333pt;}
.y69{bottom:352.133333pt;}
.y8c{bottom:355.013333pt;}
.y5f{bottom:358.853333pt;}
.y49{bottom:362.693333pt;}
.y2d{bottom:363.653333pt;}
.y9a{bottom:369.413333pt;}
.ya6{bottom:383.173333pt;}
.y13{bottom:383.813333pt;}
.y5e{bottom:387.013333pt;}
.y48{bottom:390.853333pt;}
.y2c{bottom:391.493333pt;}
.y8b{bottom:393.733333pt;}
.y79{bottom:397.573333pt;}
.ya5{bottom:411.013333pt;}
.y12{bottom:411.973333pt;}
.y5d{bottom:415.173333pt;}
.y47{bottom:419.013333pt;}
.y2b{bottom:419.653333pt;}
.y99{bottom:425.733333pt;}
.y8a{bottom:432.453333pt;}
.y78{bottom:436.293333pt;}
.ya4{bottom:439.173333pt;}
.y11{bottom:439.813333pt;}
.y5c{bottom:443.013333pt;}
.y46{bottom:447.200000pt;}
.y2a{bottom:447.840000pt;}
.y98{bottom:453.920000pt;}
.y77{bottom:464.480000pt;}
.y10{bottom:468.000000pt;}
.y89{bottom:471.200000pt;}
.y45{bottom:475.040000pt;}
.y29{bottom:476.000000pt;}
.ya3{bottom:477.920000pt;}
.y5b{bottom:481.760000pt;}
.y76{bottom:492.640000pt;}
.yf{bottom:496.160000pt;}
.y44{bottom:503.200000pt;}
.y28{bottom:504.160000pt;}
.y88{bottom:509.920000pt;}
.ya2{bottom:516.640000pt;}
.y5a{bottom:520.800000pt;}
.ye{bottom:524.320000pt;}
.y43{bottom:531.360000pt;}
.y87{bottom:538.080000pt;}
.y27{bottom:542.880000pt;}
.y75{bottom:548.640000pt;}
.yd{bottom:552.480000pt;}
.ya1{bottom:555.680000pt;}
.y42{bottom:559.546667pt;}
.y86{bottom:566.266667pt;}
.y74{bottom:576.826667pt;}
.y26{bottom:581.626667pt;}
.y41{bottom:587.706667pt;}
.yc{bottom:591.226667pt;}
.y85{bottom:594.426667pt;}
.y59{bottom:598.266667pt;}
.y73{bottom:615.546667pt;}
.yb{bottom:619.386667pt;}
.y25{bottom:620.346667pt;}
.y84{bottom:622.586667pt;}
.y40{bottom:626.426667pt;}
.ya0{bottom:633.146667pt;}
.y9d{bottom:636.986667pt;}
.y97{bottom:643.706667pt;}
.ya{bottom:647.226667pt;}
.y58{bottom:654.586667pt;}
.y24{bottom:659.066667pt;}
.y83{bottom:661.306667pt;}
.y3f{bottom:665.146667pt;}
.y9f{bottom:671.906667pt;}
.y9{bottom:675.426667pt;}
.y57{bottom:682.466667pt;}
.y23{bottom:687.266667pt;}
.y68{bottom:693.346667pt;}
.y82{bottom:700.066667pt;}
.y8{bottom:703.586667pt;}
.y3e{bottom:703.906667pt;}
.y56{bottom:710.626667pt;}
.y22{bottom:715.426667pt;}
.y96{bottom:721.506667pt;}
.y7{bottom:731.746667pt;}
.y67{bottom:732.066667pt;}
.y55{bottom:738.786667pt;}
.y3d{bottom:742.626667pt;}
.y21{bottom:743.586667pt;}
.y9c{bottom:749.346667pt;}
.y6{bottom:759.906667pt;}
.y72{bottom:760.226667pt;}
.y54{bottom:766.946667pt;}
.y3c{bottom:770.786667pt;}
.y81{bottom:777.506667pt;}
.y20{bottom:782.333333pt;}
.y71{bottom:788.413333pt;}
.y53{bottom:795.133333pt;}
.y5{bottom:798.653333pt;}
.y3b{bottom:798.973333pt;}
.y80{bottom:805.693333pt;}
.y70{bottom:816.253333pt;}
.y1f{bottom:821.053333pt;}
.y52{bottom:823.293333pt;}
.y3a{bottom:827.133333pt;}
.y7f{bottom:833.853333pt;}
.y4{bottom:837.373333pt;}
.y6f{bottom:844.413333pt;}
.y39{bottom:855.293333pt;}
.y1e{bottom:858.813333pt;}
.y51{bottom:862.013333pt;}
.y3{bottom:862.653333pt;}
.y6e{bottom:872.573333pt;}
.y38{bottom:883.133333pt;}
.y1d{bottom:896.933333pt;}
.y2{bottom:900.773333pt;}
.y37{bottom:911.333333pt;}
.y1c{bottom:929.253333pt;}
.y35{bottom:929.599928pt;}
.y1{bottom:939.493333pt;}
.h4{height:30.400072pt;}
.h5{height:57.921157pt;}
.h1{height:69.010000pt;}
.h2{height:86.430000pt;}
.h3{height:88.147766pt;}
.h0{height:1056.000000pt;}
.w2{width:624.003389pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.031988pt;}
.x1{left:113.311988pt;}
.x2{left:343.813321pt;}
.x4{left:720.253321pt;}
}




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