
    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_23ccd5c27b680d0a94faa85b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_70bca7b5083e8d33ec74425a.woff2')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_186b30cec94f1fe9164caa8c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d3084b982ac3b451a9f0b5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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;}
.ls3{letter-spacing:-0.798000px;}
.ls6{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.320400px;}
.lsb{letter-spacing:-0.276000px;}
.ls9{letter-spacing:-0.263400px;}
.lsc{letter-spacing:-0.169200px;}
.ls4{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.177600px;}
.ls5{letter-spacing:0.247800px;}
.ls1{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.351600px;}
.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;}
}
.ws1{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.506440px;}
.ws2{word-spacing:-14.172240px;}
.ws5{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.638840px;}
.ws9{word-spacing:-10.626240px;}
.ws8{word-spacing:-10.581840px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.258560px;}
._1{width:2.132160px;}
._2{width:849.149760px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.240000px;}
.y5b{bottom:3.420000px;}
.y5{bottom:4.500000px;}
.y52{bottom:17.820000px;}
.y54{bottom:18.000000px;}
.y57{bottom:18.045000px;}
.y17{bottom:24.480000px;}
.y4{bottom:24.660000px;}
.y20{bottom:24.705000px;}
.y59{bottom:32.580000px;}
.y5f{bottom:32.610000px;}
.y16{bottom:44.640000px;}
.y1a{bottom:44.814000px;}
.yc{bottom:44.820000px;}
.y10{bottom:44.850000px;}
.y1f{bottom:44.865000px;}
.y66{bottom:47.160000px;}
.y62{bottom:47.340000px;}
.y5e{bottom:47.370000px;}
.y19{bottom:64.794000px;}
.y15{bottom:64.800000px;}
.yf{bottom:64.830000px;}
.y2f{bottom:64.845000px;}
.y32{bottom:64.974000px;}
.yb{bottom:64.980000px;}
.y24{bottom:65.010000px;}
.y1e{bottom:65.025000px;}
.y22{bottom:84.960000px;}
.ye{bottom:84.990000px;}
.y14{bottom:85.005000px;}
.y31{bottom:85.134000px;}
.ya{bottom:85.140000px;}
.y1d{bottom:85.185000px;}
.y13{bottom:105.165000px;}
.y9{bottom:105.300000px;}
.y26{bottom:105.345000px;}
.y18{bottom:110.376000px;}
.y69{bottom:116.496000px;}
.y30{bottom:117.396000px;}
.y2d{bottom:125.460000px;}
.y8{bottom:125.505000px;}
.y2c{bottom:145.650000px;}
.y7{bottom:145.665000px;}
.y68{bottom:150.150000px;}
.y27{bottom:157.710000px;}
.y2b{bottom:165.630000px;}
.y67{bottom:183.990000px;}
.y4e{bottom:190.650000px;}
.y12{bottom:191.730000px;}
.y65{bottom:200.370000px;}
.y2e{bottom:218.910000px;}
.y4d{bottom:224.490000px;}
.y4c{bottom:258.150000px;}
.y25{bottom:259.050000px;}
.y64{bottom:259.590000px;}
.y4b{bottom:274.575000px;}
.y63{bottom:289.695000px;}
.y4a{bottom:295.455000px;}
.y11{bottom:313.275000px;}
.y49{bottom:316.335000px;}
.y61{bottom:319.755000px;}
.y2a{bottom:320.295000px;}
.y48{bottom:337.215000px;}
.y47{bottom:358.095000px;}
.y46{bottom:378.975000px;}
.y60{bottom:379.155000px;}
.y23{bottom:400.935000px;}
.yd{bottom:414.795000px;}
.y37{bottom:416.955000px;}
.y45{bottom:420.015000px;}
.y5d{bottom:423.795000px;}
.y44{bottom:441.075000px;}
.y36{bottom:450.645000px;}
.y43{bottom:461.985000px;}
.y35{bottom:472.425000px;}
.y42{bottom:482.865000px;}
.y5c{bottom:483.225000px;}
.y21{bottom:502.485000px;}
.y41{bottom:503.745000px;}
.y34{bottom:506.085000px;}
.y6{bottom:516.165000px;}
.y33{bottom:522.465000px;}
.y40{bottom:524.625000px;}
.y5a{bottom:527.865000px;}
.y3f{bottom:545.505000px;}
.y3e{bottom:566.385000px;}
.y58{bottom:572.685000px;}
.y29{bottom:583.665000px;}
.y3d{bottom:587.265000px;}
.y1c{bottom:603.825000px;}
.y3c{bottom:608.145000px;}
.y56{bottom:617.325000px;}
.y3b{bottom:629.070000px;}
.y55{bottom:647.430000px;}
.y3a{bottom:649.950000px;}
.y39{bottom:670.830000px;}
.y53{bottom:677.490000px;}
.y3{bottom:678.210000px;}
.y28{bottom:685.230000px;}
.y1b{bottom:705.390000px;}
.y51{bottom:707.550000px;}
.y38{bottom:711.870000px;}
.y2{bottom:737.250000px;}
.y4f{bottom:737.610000px;}
.y1{bottom:771.090000px;}
.h14{height:14.580000px;}
.h12{height:19.980000px;}
.h13{height:20.016000px;}
.h10{height:20.160000px;}
.h11{height:20.196000px;}
.h16{height:29.160000px;}
.h18{height:29.340000px;}
.h19{height:29.376000px;}
.h4{height:40.320000px;}
.h1a{height:43.920000px;}
.h17{height:47.980898px;}
.h15{height:49.394180px;}
.h1d{height:58.500000px;}
.h1c{height:58.680000px;}
.h1b{height:58.716000px;}
.h3{height:65.884219px;}
.h2{height:67.824844px;}
.h9{height:80.460000px;}
.hf{height:80.640000px;}
.he{height:80.676000px;}
.hb{height:100.620000px;}
.h6{height:100.656000px;}
.h7{height:100.800000px;}
.ha{height:100.836000px;}
.h8{height:120.816000px;}
.hc{height:141.156000px;}
.h5{height:161.310000px;}
.hd{height:181.290000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.wc{width:46.116000px;}
.we{width:48.780000px;}
.wd{width:48.816000px;}
.wa{width:52.560000px;}
.w9{width:52.740000px;}
.wb{width:52.776000px;}
.w8{width:61.200000px;}
.w7{width:65.196000px;}
.w3{width:73.296000px;}
.w5{width:213.330000px;}
.w6{width:213.510000px;}
.w4{width:353.550000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:7.740000px;}
.x1{left:84.959981px;}
.x8{left:151.770000px;}
.x3{left:159.870000px;}
.x9{left:213.690000px;}
.xa{left:267.150000px;}
.x7{left:299.910000px;}
.xb{left:320.430000px;}
.xc{left:373.935000px;}
.xd{left:427.395000px;}
.xe{left:480.675000px;}
.x4{left:514.155000px;}
.xf{left:534.135000px;}
.x10{left:587.595000px;}
.x11{left:634.425000px;}
.x12{left:687.705000px;}
.x5{left:728.205000px;}
.x13{left:741.165000px;}
.x14{left:794.625000px;}
.x15{left:847.905000px;}
.x16{left:897.450000px;}
.x6{left:942.450000px;}
.x17{left:950.910000px;}
.x18{left:1000.410000px;}
.x19{left:1053.870000px;}
.x1a{left:1107.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.709333pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.284800pt;}
.lsb{letter-spacing:-0.245333pt;}
.ls9{letter-spacing:-0.234133pt;}
.lsc{letter-spacing:-0.150400pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.157867pt;}
.ls5{letter-spacing:0.220267pt;}
.ls1{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.312533pt;}
.ws1{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.597547pt;}
.ws5{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.456747pt;}
.ws9{word-spacing:-9.445547pt;}
.ws8{word-spacing:-9.406080pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.895253pt;}
._2{width:754.799787pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.880000pt;}
.y5b{bottom:3.040000pt;}
.y5{bottom:4.000000pt;}
.y52{bottom:15.840000pt;}
.y54{bottom:16.000000pt;}
.y57{bottom:16.040000pt;}
.y17{bottom:21.760000pt;}
.y4{bottom:21.920000pt;}
.y20{bottom:21.960000pt;}
.y59{bottom:28.960000pt;}
.y5f{bottom:28.986667pt;}
.y16{bottom:39.680000pt;}
.y1a{bottom:39.834667pt;}
.yc{bottom:39.840000pt;}
.y10{bottom:39.866667pt;}
.y1f{bottom:39.880000pt;}
.y66{bottom:41.920000pt;}
.y62{bottom:42.080000pt;}
.y5e{bottom:42.106667pt;}
.y19{bottom:57.594667pt;}
.y15{bottom:57.600000pt;}
.yf{bottom:57.626667pt;}
.y2f{bottom:57.640000pt;}
.y32{bottom:57.754667pt;}
.yb{bottom:57.760000pt;}
.y24{bottom:57.786667pt;}
.y1e{bottom:57.800000pt;}
.y22{bottom:75.520000pt;}
.ye{bottom:75.546667pt;}
.y14{bottom:75.560000pt;}
.y31{bottom:75.674667pt;}
.ya{bottom:75.680000pt;}
.y1d{bottom:75.720000pt;}
.y13{bottom:93.480000pt;}
.y9{bottom:93.600000pt;}
.y26{bottom:93.640000pt;}
.y18{bottom:98.112000pt;}
.y69{bottom:103.552000pt;}
.y30{bottom:104.352000pt;}
.y2d{bottom:111.520000pt;}
.y8{bottom:111.560000pt;}
.y2c{bottom:129.466667pt;}
.y7{bottom:129.480000pt;}
.y68{bottom:133.466667pt;}
.y27{bottom:140.186667pt;}
.y2b{bottom:147.226667pt;}
.y67{bottom:163.546667pt;}
.y4e{bottom:169.466667pt;}
.y12{bottom:170.426667pt;}
.y65{bottom:178.106667pt;}
.y2e{bottom:194.586667pt;}
.y4d{bottom:199.546667pt;}
.y4c{bottom:229.466667pt;}
.y25{bottom:230.266667pt;}
.y64{bottom:230.746667pt;}
.y4b{bottom:244.066667pt;}
.y63{bottom:257.506667pt;}
.y4a{bottom:262.626667pt;}
.y11{bottom:278.466667pt;}
.y49{bottom:281.186667pt;}
.y61{bottom:284.226667pt;}
.y2a{bottom:284.706667pt;}
.y48{bottom:299.746667pt;}
.y47{bottom:318.306667pt;}
.y46{bottom:336.866667pt;}
.y60{bottom:337.026667pt;}
.y23{bottom:356.386667pt;}
.yd{bottom:368.706667pt;}
.y37{bottom:370.626667pt;}
.y45{bottom:373.346667pt;}
.y5d{bottom:376.706667pt;}
.y44{bottom:392.066667pt;}
.y36{bottom:400.573333pt;}
.y43{bottom:410.653333pt;}
.y35{bottom:419.933333pt;}
.y42{bottom:429.213333pt;}
.y5c{bottom:429.533333pt;}
.y21{bottom:446.653333pt;}
.y41{bottom:447.773333pt;}
.y34{bottom:449.853333pt;}
.y6{bottom:458.813333pt;}
.y33{bottom:464.413333pt;}
.y40{bottom:466.333333pt;}
.y5a{bottom:469.213333pt;}
.y3f{bottom:484.893333pt;}
.y3e{bottom:503.453333pt;}
.y58{bottom:509.053333pt;}
.y29{bottom:518.813333pt;}
.y3d{bottom:522.013333pt;}
.y1c{bottom:536.733333pt;}
.y3c{bottom:540.573333pt;}
.y56{bottom:548.733333pt;}
.y3b{bottom:559.173333pt;}
.y55{bottom:575.493333pt;}
.y3a{bottom:577.733333pt;}
.y39{bottom:596.293333pt;}
.y53{bottom:602.213333pt;}
.y3{bottom:602.853333pt;}
.y28{bottom:609.093333pt;}
.y1b{bottom:627.013333pt;}
.y51{bottom:628.933333pt;}
.y38{bottom:632.773333pt;}
.y2{bottom:655.333333pt;}
.y4f{bottom:655.653333pt;}
.y1{bottom:685.413333pt;}
.h14{height:12.960000pt;}
.h12{height:17.760000pt;}
.h13{height:17.792000pt;}
.h10{height:17.920000pt;}
.h11{height:17.952000pt;}
.h16{height:25.920000pt;}
.h18{height:26.080000pt;}
.h19{height:26.112000pt;}
.h4{height:35.840000pt;}
.h1a{height:39.040000pt;}
.h17{height:42.649687pt;}
.h15{height:43.905937pt;}
.h1d{height:52.000000pt;}
.h1c{height:52.160000pt;}
.h1b{height:52.192000pt;}
.h3{height:58.563750pt;}
.h2{height:60.288750pt;}
.h9{height:71.520000pt;}
.hf{height:71.680000pt;}
.he{height:71.712000pt;}
.hb{height:89.440000pt;}
.h6{height:89.472000pt;}
.h7{height:89.600000pt;}
.ha{height:89.632000pt;}
.h8{height:107.392000pt;}
.hc{height:125.472000pt;}
.h5{height:143.386667pt;}
.hd{height:161.146667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.wc{width:40.992000pt;}
.we{width:43.360000pt;}
.wd{width:43.392000pt;}
.wa{width:46.720000pt;}
.w9{width:46.880000pt;}
.wb{width:46.912000pt;}
.w8{width:54.400000pt;}
.w7{width:57.952000pt;}
.w3{width:65.152000pt;}
.w5{width:189.626667pt;}
.w6{width:189.786667pt;}
.w4{width:314.266667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:6.880000pt;}
.x1{left:75.519983pt;}
.x8{left:134.906667pt;}
.x3{left:142.106667pt;}
.x9{left:189.946667pt;}
.xa{left:237.466667pt;}
.x7{left:266.586667pt;}
.xb{left:284.826667pt;}
.xc{left:332.386667pt;}
.xd{left:379.906667pt;}
.xe{left:427.266667pt;}
.x4{left:457.026667pt;}
.xf{left:474.786667pt;}
.x10{left:522.306667pt;}
.x11{left:563.933333pt;}
.x12{left:611.293333pt;}
.x5{left:647.293333pt;}
.x13{left:658.813333pt;}
.x14{left:706.333333pt;}
.x15{left:753.693333pt;}
.x16{left:797.733333pt;}
.x6{left:837.733333pt;}
.x17{left:845.253333pt;}
.x18{left:889.253333pt;}
.x19{left:936.773333pt;}
.x1a{left:984.133333pt;}
}




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