
    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_7d0b746262443de30466bf09.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fdb69cebcb3852528e1afe9d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_92cc6889a1ffe115364649d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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;}
.ls1{letter-spacing:-5.544000px;}
.ls3{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.504000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.288000px;}
.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;}
}
.ws3{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.768000px;}
.ws4{word-spacing:-15.226440px;}
.ws0{word-spacing:-10.728000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-7.164000px;}
._8{margin-left:-6.012000px;}
._13{margin-left:-4.896000px;}
._c{margin-left:-3.888000px;}
._6{margin-left:-2.520000px;}
._3{margin-left:-1.368000px;}
._7{width:1.044000px;}
._9{width:2.376000px;}
._12{width:3.780000px;}
._1{width:5.760000px;}
._2{width:6.768000px;}
._4{width:8.724000px;}
._b{width:10.308000px;}
._15{width:12.240000px;}
._16{width:13.284000px;}
._5{width:15.012000px;}
._e{width:19.224000px;}
._d{width:20.448000px;}
._10{width:23.328000px;}
._11{width:24.660000px;}
._f{width:26.892000px;}
._14{width:645.425760px;}
._17{width:859.985760px;}
._0{width:1419.545760px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:4.500000px;}
.y81{bottom:4.680000px;}
.y83{bottom:4.860000px;}
.y98{bottom:4.890000px;}
.y42{bottom:16.920000px;}
.y2d{bottom:22.680000px;}
.y31{bottom:32.760000px;}
.y51{bottom:32.940000px;}
.y2c{bottom:42.480000px;}
.y41{bottom:48.600000px;}
.y30{bottom:52.560000px;}
.y50{bottom:52.740000px;}
.y2b{bottom:62.100000px;}
.y40{bottom:68.400000px;}
.y2a{bottom:81.900000px;}
.y29{bottom:101.745000px;}
.y71{bottom:112.536000px;}
.y4e{bottom:117.036000px;}
.y3e{bottom:119.376000px;}
.y28{bottom:121.545000px;}
.y1f{bottom:128.736000px;}
.ya8{bottom:133.236000px;}
.y27{bottom:141.345000px;}
.y70{bottom:144.216000px;}
.y4d{bottom:150.690000px;}
.y3d{bottom:153.030000px;}
.y26{bottom:161.145000px;}
.y1e{bottom:162.390000px;}
.ya7{bottom:166.890000px;}
.y6f{bottom:176.070000px;}
.y25{bottom:180.945000px;}
.y4c{bottom:184.530000px;}
.y3c{bottom:186.870000px;}
.y1d{bottom:196.230000px;}
.y24{bottom:200.565000px;}
.ya6{bottom:200.730000px;}
.y6e{bottom:207.750000px;}
.y4b{bottom:218.190000px;}
.y23{bottom:220.365000px;}
.y3b{bottom:220.530000px;}
.y1c{bottom:229.890000px;}
.ya5{bottom:234.390000px;}
.y6d{bottom:239.610000px;}
.y22{bottom:240.165000px;}
.y20{bottom:245.730000px;}
.y4a{bottom:252.030000px;}
.y3a{bottom:254.370000px;}
.y21{bottom:259.965000px;}
.y1b{bottom:263.730000px;}
.ya4{bottom:268.050000px;}
.y6c{bottom:271.290000px;}
.y49{bottom:285.690000px;}
.y39{bottom:288.030000px;}
.y1a{bottom:297.390000px;}
.ya3{bottom:301.890000px;}
.y6b{bottom:303.150000px;}
.y48{bottom:319.530000px;}
.y38{bottom:321.690000px;}
.y19{bottom:331.050000px;}
.y6a{bottom:334.830000px;}
.ya2{bottom:335.550000px;}
.y47{bottom:353.235000px;}
.y37{bottom:355.575000px;}
.y18{bottom:364.935000px;}
.y69{bottom:366.735000px;}
.ya1{bottom:369.435000px;}
.y46{bottom:386.895000px;}
.y36{bottom:389.235000px;}
.y68{bottom:398.415000px;}
.y17{bottom:398.595000px;}
.ya0{bottom:403.095000px;}
.y4f{bottom:407.415000px;}
.y45{bottom:420.735000px;}
.y35{bottom:423.075000px;}
.y67{bottom:430.275000px;}
.y16{bottom:432.435000px;}
.y9f{bottom:436.755000px;}
.y3f{bottom:439.815000px;}
.y44{bottom:454.395000px;}
.y34{bottom:456.735000px;}
.y66{bottom:461.955000px;}
.y15{bottom:466.095000px;}
.y9e{bottom:470.595000px;}
.y43{bottom:483.735000px;}
.y33{bottom:490.575000px;}
.y65{bottom:493.815000px;}
.y14{bottom:499.935000px;}
.y9d{bottom:504.255000px;}
.y32{bottom:519.735000px;}
.y9c{bottom:519.915000px;}
.y64{bottom:525.675000px;}
.y13{bottom:533.595000px;}
.y9b{bottom:540.615000px;}
.y2f{bottom:549.795000px;}
.y63{bottom:557.355000px;}
.y9a{bottom:561.315000px;}
.y12{bottom:567.255000px;}
.y99{bottom:582.015000px;}
.y62{bottom:589.215000px;}
.y11{bottom:601.095000px;}
.y97{bottom:602.715000px;}
.y61{bottom:620.925000px;}
.y96{bottom:623.445000px;}
.y2e{bottom:629.745000px;}
.y10{bottom:634.785000px;}
.y95{bottom:644.145000px;}
.y60{bottom:652.785000px;}
.y94{bottom:664.845000px;}
.yf{bottom:668.625000px;}
.y5f{bottom:684.465000px;}
.y93{bottom:685.545000px;}
.ye{bottom:702.285000px;}
.y92{bottom:706.245000px;}
.y5e{bottom:716.325000px;}
.y91{bottom:726.945000px;}
.yd{bottom:736.125000px;}
.y90{bottom:747.645000px;}
.y5d{bottom:748.005000px;}
.y7c{bottom:749.445000px;}
.y8f{bottom:768.345000px;}
.yc{bottom:769.785000px;}
.y7b{bottom:770.145000px;}
.y5c{bottom:779.865000px;}
.y8e{bottom:789.045000px;}
.y7a{bottom:790.845000px;}
.yb{bottom:803.445000px;}
.y8d{bottom:809.745000px;}
.y5b{bottom:811.545000px;}
.y8c{bottom:830.445000px;}
.y79{bottom:832.245000px;}
.ya{bottom:837.285000px;}
.y5a{bottom:843.405000px;}
.y8b{bottom:851.145000px;}
.y78{bottom:852.945000px;}
.y9{bottom:870.990000px;}
.y8a{bottom:871.890000px;}
.y77{bottom:873.690000px;}
.y59{bottom:875.130000px;}
.y89{bottom:892.590000px;}
.y76{bottom:894.390000px;}
.y8{bottom:904.830000px;}
.y58{bottom:906.990000px;}
.y88{bottom:913.290000px;}
.y75{bottom:915.090000px;}
.y87{bottom:933.990000px;}
.y74{bottom:935.790000px;}
.y7{bottom:938.490000px;}
.y57{bottom:938.670000px;}
.y86{bottom:954.690000px;}
.y72{bottom:958.830000px;}
.y56{bottom:970.530000px;}
.y6{bottom:972.150000px;}
.y85{bottom:975.390000px;}
.y84{bottom:996.090000px;}
.y55{bottom:1002.210000px;}
.y5{bottom:1005.990000px;}
.y82{bottom:1016.790000px;}
.y54{bottom:1034.070000px;}
.y4{bottom:1039.650000px;}
.y80{bottom:1039.830000px;}
.y53{bottom:1053.870000px;}
.y3{bottom:1073.490000px;}
.y52{bottom:1073.670000px;}
.y7f{bottom:1077.630000px;}
.y2{bottom:1107.150000px;}
.y7e{bottom:1109.310000px;}
.y1{bottom:1141.020000px;}
.y7d{bottom:1141.200000px;}
.h8{height:20.700000px;}
.h9{height:20.736000px;}
.h2{height:65.884219px;}
.h4{height:71.613281px;}
.h6{height:84.600000px;}
.h5{height:84.636000px;}
.h7{height:84.780000px;}
.h3{height:281.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:79.380000px;}
.w7{width:79.596000px;}
.w9{width:180.930000px;}
.w8{width:228.810000px;}
.w5{width:325.695000px;}
.w4{width:598.785000px;}
.w3{width:598.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x3{left:10.794000px;}
.xc{left:12.960000px;}
.x11{left:16.200000px;}
.x13{left:23.040000px;}
.xf{left:24.840000px;}
.xa{left:37.980000px;}
.xb{left:46.440000px;}
.xd{left:63.180000px;}
.x15{left:81.900000px;}
.x14{left:106.020000px;}
.x1{left:127.655987px;}
.x5{left:145.476000px;}
.x2{left:146.736000px;}
.xe{left:202.530000px;}
.x6{left:212.609987px;}
.x7{left:243.390000px;}
.x10{left:282.135000px;}
.x12{left:510.945000px;}
.x9{left:569.085000px;}
.x4{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-4.928000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.256000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws0{word-spacing:-9.536000pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-6.368000pt;}
._8{margin-left:-5.344000pt;}
._13{margin-left:-4.352000pt;}
._c{margin-left:-3.456000pt;}
._6{margin-left:-2.240000pt;}
._3{margin-left:-1.216000pt;}
._7{width:0.928000pt;}
._9{width:2.112000pt;}
._12{width:3.360000pt;}
._1{width:5.120000pt;}
._2{width:6.016000pt;}
._4{width:7.754667pt;}
._b{width:9.162667pt;}
._15{width:10.880000pt;}
._16{width:11.808000pt;}
._5{width:13.344000pt;}
._e{width:17.088000pt;}
._d{width:18.176000pt;}
._10{width:20.736000pt;}
._11{width:21.920000pt;}
._f{width:23.904000pt;}
._14{width:573.711787pt;}
._17{width:764.431787pt;}
._0{width:1261.818453pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:4.000000pt;}
.y81{bottom:4.160000pt;}
.y83{bottom:4.320000pt;}
.y98{bottom:4.346667pt;}
.y42{bottom:15.040000pt;}
.y2d{bottom:20.160000pt;}
.y31{bottom:29.120000pt;}
.y51{bottom:29.280000pt;}
.y2c{bottom:37.760000pt;}
.y41{bottom:43.200000pt;}
.y30{bottom:46.720000pt;}
.y50{bottom:46.880000pt;}
.y2b{bottom:55.200000pt;}
.y40{bottom:60.800000pt;}
.y2a{bottom:72.800000pt;}
.y29{bottom:90.440000pt;}
.y71{bottom:100.032000pt;}
.y4e{bottom:104.032000pt;}
.y3e{bottom:106.112000pt;}
.y28{bottom:108.040000pt;}
.y1f{bottom:114.432000pt;}
.ya8{bottom:118.432000pt;}
.y27{bottom:125.640000pt;}
.y70{bottom:128.192000pt;}
.y4d{bottom:133.946667pt;}
.y3d{bottom:136.026667pt;}
.y26{bottom:143.240000pt;}
.y1e{bottom:144.346667pt;}
.ya7{bottom:148.346667pt;}
.y6f{bottom:156.506667pt;}
.y25{bottom:160.840000pt;}
.y4c{bottom:164.026667pt;}
.y3c{bottom:166.106667pt;}
.y1d{bottom:174.426667pt;}
.y24{bottom:178.280000pt;}
.ya6{bottom:178.426667pt;}
.y6e{bottom:184.666667pt;}
.y4b{bottom:193.946667pt;}
.y23{bottom:195.880000pt;}
.y3b{bottom:196.026667pt;}
.y1c{bottom:204.346667pt;}
.ya5{bottom:208.346667pt;}
.y6d{bottom:212.986667pt;}
.y22{bottom:213.480000pt;}
.y20{bottom:218.426667pt;}
.y4a{bottom:224.026667pt;}
.y3a{bottom:226.106667pt;}
.y21{bottom:231.080000pt;}
.y1b{bottom:234.426667pt;}
.ya4{bottom:238.266667pt;}
.y6c{bottom:241.146667pt;}
.y49{bottom:253.946667pt;}
.y39{bottom:256.026667pt;}
.y1a{bottom:264.346667pt;}
.ya3{bottom:268.346667pt;}
.y6b{bottom:269.466667pt;}
.y48{bottom:284.026667pt;}
.y38{bottom:285.946667pt;}
.y19{bottom:294.266667pt;}
.y6a{bottom:297.626667pt;}
.ya2{bottom:298.266667pt;}
.y47{bottom:313.986667pt;}
.y37{bottom:316.066667pt;}
.y18{bottom:324.386667pt;}
.y69{bottom:325.986667pt;}
.ya1{bottom:328.386667pt;}
.y46{bottom:343.906667pt;}
.y36{bottom:345.986667pt;}
.y68{bottom:354.146667pt;}
.y17{bottom:354.306667pt;}
.ya0{bottom:358.306667pt;}
.y4f{bottom:362.146667pt;}
.y45{bottom:373.986667pt;}
.y35{bottom:376.066667pt;}
.y67{bottom:382.466667pt;}
.y16{bottom:384.386667pt;}
.y9f{bottom:388.226667pt;}
.y3f{bottom:390.946667pt;}
.y44{bottom:403.906667pt;}
.y34{bottom:405.986667pt;}
.y66{bottom:410.626667pt;}
.y15{bottom:414.306667pt;}
.y9e{bottom:418.306667pt;}
.y43{bottom:429.986667pt;}
.y33{bottom:436.066667pt;}
.y65{bottom:438.946667pt;}
.y14{bottom:444.386667pt;}
.y9d{bottom:448.226667pt;}
.y32{bottom:461.986667pt;}
.y9c{bottom:462.146667pt;}
.y64{bottom:467.266667pt;}
.y13{bottom:474.306667pt;}
.y9b{bottom:480.546667pt;}
.y2f{bottom:488.706667pt;}
.y63{bottom:495.426667pt;}
.y9a{bottom:498.946667pt;}
.y12{bottom:504.226667pt;}
.y99{bottom:517.346667pt;}
.y62{bottom:523.746667pt;}
.y11{bottom:534.306667pt;}
.y97{bottom:535.746667pt;}
.y61{bottom:551.933333pt;}
.y96{bottom:554.173333pt;}
.y2e{bottom:559.773333pt;}
.y10{bottom:564.253333pt;}
.y95{bottom:572.573333pt;}
.y60{bottom:580.253333pt;}
.y94{bottom:590.973333pt;}
.yf{bottom:594.333333pt;}
.y5f{bottom:608.413333pt;}
.y93{bottom:609.373333pt;}
.ye{bottom:624.253333pt;}
.y92{bottom:627.773333pt;}
.y5e{bottom:636.733333pt;}
.y91{bottom:646.173333pt;}
.yd{bottom:654.333333pt;}
.y90{bottom:664.573333pt;}
.y5d{bottom:664.893333pt;}
.y7c{bottom:666.173333pt;}
.y8f{bottom:682.973333pt;}
.yc{bottom:684.253333pt;}
.y7b{bottom:684.573333pt;}
.y5c{bottom:693.213333pt;}
.y8e{bottom:701.373333pt;}
.y7a{bottom:702.973333pt;}
.yb{bottom:714.173333pt;}
.y8d{bottom:719.773333pt;}
.y5b{bottom:721.373333pt;}
.y8c{bottom:738.173333pt;}
.y79{bottom:739.773333pt;}
.ya{bottom:744.253333pt;}
.y5a{bottom:749.693333pt;}
.y8b{bottom:756.573333pt;}
.y78{bottom:758.173333pt;}
.y9{bottom:774.213333pt;}
.y8a{bottom:775.013333pt;}
.y77{bottom:776.613333pt;}
.y59{bottom:777.893333pt;}
.y89{bottom:793.413333pt;}
.y76{bottom:795.013333pt;}
.y8{bottom:804.293333pt;}
.y58{bottom:806.213333pt;}
.y88{bottom:811.813333pt;}
.y75{bottom:813.413333pt;}
.y87{bottom:830.213333pt;}
.y74{bottom:831.813333pt;}
.y7{bottom:834.213333pt;}
.y57{bottom:834.373333pt;}
.y86{bottom:848.613333pt;}
.y72{bottom:852.293333pt;}
.y56{bottom:862.693333pt;}
.y6{bottom:864.133333pt;}
.y85{bottom:867.013333pt;}
.y84{bottom:885.413333pt;}
.y55{bottom:890.853333pt;}
.y5{bottom:894.213333pt;}
.y82{bottom:903.813333pt;}
.y54{bottom:919.173333pt;}
.y4{bottom:924.133333pt;}
.y80{bottom:924.293333pt;}
.y53{bottom:936.773333pt;}
.y3{bottom:954.213333pt;}
.y52{bottom:954.373333pt;}
.y7f{bottom:957.893333pt;}
.y2{bottom:984.133333pt;}
.y7e{bottom:986.053333pt;}
.y1{bottom:1014.240000pt;}
.y7d{bottom:1014.400000pt;}
.h8{height:18.400000pt;}
.h9{height:18.432000pt;}
.h2{height:58.563750pt;}
.h4{height:63.656250pt;}
.h6{height:75.200000pt;}
.h5{height:75.232000pt;}
.h7{height:75.360000pt;}
.h3{height:250.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:70.560000pt;}
.w7{width:70.752000pt;}
.w9{width:160.826667pt;}
.w8{width:203.386667pt;}
.w5{width:289.506667pt;}
.w4{width:532.253333pt;}
.w3{width:532.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x3{left:9.594667pt;}
.xc{left:11.520000pt;}
.x11{left:14.400000pt;}
.x13{left:20.480000pt;}
.xf{left:22.080000pt;}
.xa{left:33.760000pt;}
.xb{left:41.280000pt;}
.xd{left:56.160000pt;}
.x15{left:72.800000pt;}
.x14{left:94.240000pt;}
.x1{left:113.471988pt;}
.x5{left:129.312000pt;}
.x2{left:130.432000pt;}
.xe{left:180.026667pt;}
.x6{left:188.986655pt;}
.x7{left:216.346667pt;}
.x10{left:250.786667pt;}
.x12{left:454.173333pt;}
.x9{left:505.853333pt;}
.x4{left:680.453322pt;}
}




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