
    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_111b1e1acbc5248f26981ecf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_86cf112144e87bc589a09699.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.590400px;}
.ls9{letter-spacing:69.264000px;}
.ls8{letter-spacing:92.304000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws3{word-spacing:-16.200000px;}
.wsf{word-spacing:-16.128000px;}
.wsd{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.624000px;}
.ws1{word-spacing:-15.552000px;}
.ws2{word-spacing:-15.480000px;}
.ws10{word-spacing:-0.864000px;}
.ws9{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:0.072000px;}
.wsb{word-spacing:0.144000px;}
.ws8{word-spacing:0.216000px;}
.ws6{word-spacing:0.288000px;}
._1{margin-left:-1.152000px;}
._0{width:1.368000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:115.920000px;}
.y24{bottom:123.480000px;}
.y66{bottom:134.100000px;}
.y43{bottom:136.980000px;}
.y8a{bottom:141.300000px;}
.y23{bottom:144.720000px;}
.y65{bottom:155.160000px;}
.y42{bottom:158.220000px;}
.y89{bottom:162.360000px;}
.y64{bottom:176.220000px;}
.y22{bottom:179.280000px;}
.y41{bottom:192.780000px;}
.y88{bottom:196.920000px;}
.y63{bottom:210.780000px;}
.y21{bottom:213.840000px;}
.y87{bottom:231.480000px;}
.y62{bottom:232.020000px;}
.y20{bottom:234.900000px;}
.y86{bottom:252.720000px;}
.y61{bottom:253.080000px;}
.y1f{bottom:269.460000px;}
.y85{bottom:273.780000px;}
.y60{bottom:274.140000px;}
.y40{bottom:290.700000px;}
.y84{bottom:294.840000px;}
.y1e{bottom:304.200000px;}
.y5f{bottom:308.700000px;}
.y83{bottom:315.900000px;}
.y1d{bottom:325.260000px;}
.y5e{bottom:329.940000px;}
.y82{bottom:336.960000px;}
.y1c{bottom:346.320000px;}
.y81{bottom:358.200000px;}
.y5d{bottom:364.500000px;}
.y1b{bottom:367.380000px;}
.y80{bottom:379.260000px;}
.y3f{bottom:380.880000px;}
.y5c{bottom:385.560000px;}
.y1a{bottom:388.620000px;}
.y19{bottom:409.680000px;}
.y7f{bottom:413.820000px;}
.y3e{bottom:415.620000px;}
.y5b{bottom:420.120000px;}
.y18{bottom:430.740000px;}
.y7e{bottom:434.880000px;}
.y98{bottom:444.240000px;}
.y3d{bottom:450.180000px;}
.y17{bottom:451.800000px;}
.y5a{bottom:454.680000px;}
.y7d{bottom:456.120000px;}
.y97{bottom:465.300000px;}
.y16{bottom:473.040000px;}
.y59{bottom:475.920000px;}
.y7c{bottom:477.180000px;}
.y3c{bottom:484.740000px;}
.y15{bottom:494.100000px;}
.y7b{bottom:498.240000px;}
.y96{bottom:500.040000px;}
.y3b{bottom:505.800000px;}
.y58{bottom:510.480000px;}
.y7a{bottom:519.300000px;}
.y95{bottom:521.100000px;}
.y3a{bottom:527.040000px;}
.y14{bottom:528.660000px;}
.y57{bottom:531.540000px;}
.y94{bottom:542.160000px;}
.y79{bottom:554.040000px;}
.y39{bottom:561.600000px;}
.y13{bottom:563.220000px;}
.y56{bottom:566.100000px;}
.y78{bottom:575.100000px;}
.y93{bottom:576.720000px;}
.y38{bottom:582.660000px;}
.y55{bottom:587.340000px;}
.y77{bottom:596.160000px;}
.y12{bottom:597.960000px;}
.y37{bottom:603.720000px;}
.y76{bottom:617.220000px;}
.y11{bottom:619.020000px;}
.y54{bottom:621.900000px;}
.y36{bottom:624.960000px;}
.y10{bottom:640.080000px;}
.y53{bottom:642.960000px;}
.y75{bottom:651.960000px;}
.y92{bottom:653.580000px;}
.y35{bottom:659.520000px;}
.yf{bottom:661.140000px;}
.y52{bottom:664.020000px;}
.y74{bottom:673.020000px;}
.y91{bottom:674.640000px;}
.y34{bottom:680.580000px;}
.ye{bottom:682.380000px;}
.y73{bottom:694.080000px;}
.y51{bottom:698.760000px;}
.y33{bottom:701.640000px;}
.y90{bottom:709.380000px;}
.y72{bottom:715.140000px;}
.yd{bottom:716.940000px;}
.y50{bottom:719.820000px;}
.y32{bottom:722.880000px;}
.y71{bottom:736.380000px;}
.y4f{bottom:740.880000px;}
.y31{bottom:743.940000px;}
.yc{bottom:751.500000px;}
.y4e{bottom:761.940000px;}
.y8f{bottom:765.000000px;}
.y70{bottom:770.940000px;}
.yb{bottom:772.560000px;}
.y30{bottom:778.500000px;}
.y6f{bottom:792.000000px;}
.ya{bottom:793.620000px;}
.y4d{bottom:796.680000px;}
.y8e{bottom:799.560000px;}
.y2f{bottom:813.060000px;}
.y9{bottom:814.860000px;}
.y4c{bottom:817.740000px;}
.y8d{bottom:820.620000px;}
.y6e{bottom:834.120000px;}
.y8{bottom:835.920000px;}
.y4b{bottom:838.800000px;}
.y2e{bottom:847.620000px;}
.y6d{bottom:855.360000px;}
.y7{bottom:856.980000px;}
.y4a{bottom:873.360000px;}
.y6c{bottom:876.420000px;}
.y2d{bottom:882.360000px;}
.y6{bottom:891.540000px;}
.y6b{bottom:897.480000px;}
.y2c{bottom:903.420000px;}
.y49{bottom:907.920000px;}
.y8c{bottom:918.540000px;}
.y2b{bottom:924.480000px;}
.y5{bottom:926.280000px;}
.y6a{bottom:932.040000px;}
.y48{bottom:944.100000px;}
.y4{bottom:947.340000px;}
.y69{bottom:953.280000px;}
.y2a{bottom:959.040000px;}
.y47{bottom:965.160000px;}
.y68{bottom:974.340000px;}
.y29{bottom:980.280000px;}
.y3{bottom:981.900000px;}
.y46{bottom:986.400000px;}
.y8b{bottom:987.840000px;}
.y28{bottom:1001.340000px;}
.y45{bottom:1007.460000px;}
.y67{bottom:1008.900000px;}
.y2{bottom:1016.460000px;}
.y27{bottom:1022.400000px;}
.y26{bottom:1043.460000px;}
.y1{bottom:1051.200000px;}
.y25{bottom:1064.700000px;}
.h1{height:62.648438px;}
.h2{height:75.093750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x2{left:163.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.524800pt;}
.ls9{letter-spacing:61.568000pt;}
.ls8{letter-spacing:82.048000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws3{word-spacing:-14.400000pt;}
.wsf{word-spacing:-14.336000pt;}
.wsd{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws5{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.888000pt;}
.ws1{word-spacing:-13.824000pt;}
.ws2{word-spacing:-13.760000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws9{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:0.064000pt;}
.wsb{word-spacing:0.128000pt;}
.ws8{word-spacing:0.192000pt;}
.ws6{word-spacing:0.256000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.216000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:103.040000pt;}
.y24{bottom:109.760000pt;}
.y66{bottom:119.200000pt;}
.y43{bottom:121.760000pt;}
.y8a{bottom:125.600000pt;}
.y23{bottom:128.640000pt;}
.y65{bottom:137.920000pt;}
.y42{bottom:140.640000pt;}
.y89{bottom:144.320000pt;}
.y64{bottom:156.640000pt;}
.y22{bottom:159.360000pt;}
.y41{bottom:171.360000pt;}
.y88{bottom:175.040000pt;}
.y63{bottom:187.360000pt;}
.y21{bottom:190.080000pt;}
.y87{bottom:205.760000pt;}
.y62{bottom:206.240000pt;}
.y20{bottom:208.800000pt;}
.y86{bottom:224.640000pt;}
.y61{bottom:224.960000pt;}
.y1f{bottom:239.520000pt;}
.y85{bottom:243.360000pt;}
.y60{bottom:243.680000pt;}
.y40{bottom:258.400000pt;}
.y84{bottom:262.080000pt;}
.y1e{bottom:270.400000pt;}
.y5f{bottom:274.400000pt;}
.y83{bottom:280.800000pt;}
.y1d{bottom:289.120000pt;}
.y5e{bottom:293.280000pt;}
.y82{bottom:299.520000pt;}
.y1c{bottom:307.840000pt;}
.y81{bottom:318.400000pt;}
.y5d{bottom:324.000000pt;}
.y1b{bottom:326.560000pt;}
.y80{bottom:337.120000pt;}
.y3f{bottom:338.560000pt;}
.y5c{bottom:342.720000pt;}
.y1a{bottom:345.440000pt;}
.y19{bottom:364.160000pt;}
.y7f{bottom:367.840000pt;}
.y3e{bottom:369.440000pt;}
.y5b{bottom:373.440000pt;}
.y18{bottom:382.880000pt;}
.y7e{bottom:386.560000pt;}
.y98{bottom:394.880000pt;}
.y3d{bottom:400.160000pt;}
.y17{bottom:401.600000pt;}
.y5a{bottom:404.160000pt;}
.y7d{bottom:405.440000pt;}
.y97{bottom:413.600000pt;}
.y16{bottom:420.480000pt;}
.y59{bottom:423.040000pt;}
.y7c{bottom:424.160000pt;}
.y3c{bottom:430.880000pt;}
.y15{bottom:439.200000pt;}
.y7b{bottom:442.880000pt;}
.y96{bottom:444.480000pt;}
.y3b{bottom:449.600000pt;}
.y58{bottom:453.760000pt;}
.y7a{bottom:461.600000pt;}
.y95{bottom:463.200000pt;}
.y3a{bottom:468.480000pt;}
.y14{bottom:469.920000pt;}
.y57{bottom:472.480000pt;}
.y94{bottom:481.920000pt;}
.y79{bottom:492.480000pt;}
.y39{bottom:499.200000pt;}
.y13{bottom:500.640000pt;}
.y56{bottom:503.200000pt;}
.y78{bottom:511.200000pt;}
.y93{bottom:512.640000pt;}
.y38{bottom:517.920000pt;}
.y55{bottom:522.080000pt;}
.y77{bottom:529.920000pt;}
.y12{bottom:531.520000pt;}
.y37{bottom:536.640000pt;}
.y76{bottom:548.640000pt;}
.y11{bottom:550.240000pt;}
.y54{bottom:552.800000pt;}
.y36{bottom:555.520000pt;}
.y10{bottom:568.960000pt;}
.y53{bottom:571.520000pt;}
.y75{bottom:579.520000pt;}
.y92{bottom:580.960000pt;}
.y35{bottom:586.240000pt;}
.yf{bottom:587.680000pt;}
.y52{bottom:590.240000pt;}
.y74{bottom:598.240000pt;}
.y91{bottom:599.680000pt;}
.y34{bottom:604.960000pt;}
.ye{bottom:606.560000pt;}
.y73{bottom:616.960000pt;}
.y51{bottom:621.120000pt;}
.y33{bottom:623.680000pt;}
.y90{bottom:630.560000pt;}
.y72{bottom:635.680000pt;}
.yd{bottom:637.280000pt;}
.y50{bottom:639.840000pt;}
.y32{bottom:642.560000pt;}
.y71{bottom:654.560000pt;}
.y4f{bottom:658.560000pt;}
.y31{bottom:661.280000pt;}
.yc{bottom:668.000000pt;}
.y4e{bottom:677.280000pt;}
.y8f{bottom:680.000000pt;}
.y70{bottom:685.280000pt;}
.yb{bottom:686.720000pt;}
.y30{bottom:692.000000pt;}
.y6f{bottom:704.000000pt;}
.ya{bottom:705.440000pt;}
.y4d{bottom:708.160000pt;}
.y8e{bottom:710.720000pt;}
.y2f{bottom:722.720000pt;}
.y9{bottom:724.320000pt;}
.y4c{bottom:726.880000pt;}
.y8d{bottom:729.440000pt;}
.y6e{bottom:741.440000pt;}
.y8{bottom:743.040000pt;}
.y4b{bottom:745.600000pt;}
.y2e{bottom:753.440000pt;}
.y6d{bottom:760.320000pt;}
.y7{bottom:761.760000pt;}
.y4a{bottom:776.320000pt;}
.y6c{bottom:779.040000pt;}
.y2d{bottom:784.320000pt;}
.y6{bottom:792.480000pt;}
.y6b{bottom:797.760000pt;}
.y2c{bottom:803.040000pt;}
.y49{bottom:807.040000pt;}
.y8c{bottom:816.480000pt;}
.y2b{bottom:821.760000pt;}
.y5{bottom:823.360000pt;}
.y6a{bottom:828.480000pt;}
.y48{bottom:839.200000pt;}
.y4{bottom:842.080000pt;}
.y69{bottom:847.360000pt;}
.y2a{bottom:852.480000pt;}
.y47{bottom:857.920000pt;}
.y68{bottom:866.080000pt;}
.y29{bottom:871.360000pt;}
.y3{bottom:872.800000pt;}
.y46{bottom:876.800000pt;}
.y8b{bottom:878.080000pt;}
.y28{bottom:890.080000pt;}
.y45{bottom:895.520000pt;}
.y67{bottom:896.800000pt;}
.y2{bottom:903.520000pt;}
.y27{bottom:908.800000pt;}
.y26{bottom:927.520000pt;}
.y1{bottom:934.400000pt;}
.y25{bottom:946.400000pt;}
.h1{height:55.687500pt;}
.h2{height:66.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x2{left:145.440000pt;}
}




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