
    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_82875c8e3ac11bc8efd8981e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8bcd93565f8c00ab654e7ac4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_de69de16200ac8746f6affa0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_84d5ddc07110533f305b0345.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_d803f216ad179c85d6feec59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws3d{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws37{word-spacing:-38.663100px;}
.ws38{word-spacing:-38.660400px;}
.ws8{word-spacing:-38.656800px;}
.ws3{word-spacing:-38.655900px;}
.ws16{word-spacing:-38.644200px;}
.wse{word-spacing:-38.631600px;}
.ws3f{word-spacing:-38.448000px;}
.ws6{word-spacing:-38.440800px;}
.ws19{word-spacing:-38.428200px;}
.ws24{word-spacing:-38.375700px;}
.ws18{word-spacing:-38.373300px;}
.ws32{word-spacing:-38.359800px;}
.ws2a{word-spacing:-38.160000px;}
.ws7{word-spacing:-38.151900px;}
.ws23{word-spacing:-38.142000px;}
.ws26{word-spacing:-38.140200px;}
.ws2{word-spacing:-38.077200px;}
.ws36{word-spacing:-37.948200px;}
.ws35{word-spacing:-37.944000px;}
.ws34{word-spacing:-37.940100px;}
.ws3a{word-spacing:-37.939500px;}
.ws28{word-spacing:-37.935900px;}
.ws29{word-spacing:-37.930500px;}
.ws31{word-spacing:-37.727700px;}
.ws3b{word-spacing:-35.062200px;}
.ws13{word-spacing:-34.842300px;}
.ws1c{word-spacing:-34.840800px;}
.ws2b{word-spacing:-33.613200px;}
.ws30{word-spacing:-31.240800px;}
.ws10{word-spacing:-30.006000px;}
.wsb{word-spacing:-29.526000px;}
.ws33{word-spacing:-29.298600px;}
.ws17{word-spacing:-28.366800px;}
.ws2c{word-spacing:-28.080000px;}
.ws2d{word-spacing:-27.870000px;}
.ws2e{word-spacing:-27.858000px;}
.ws39{word-spacing:-27.360000px;}
.ws12{word-spacing:-27.136800px;}
.ws9{word-spacing:-24.255600px;}
.ws2f{word-spacing:-24.251400px;}
.ws1f{word-spacing:-23.760000px;}
.ws25{word-spacing:-23.535900px;}
.ws20{word-spacing:-23.534400px;}
.wsd{word-spacing:-23.525400px;}
.ws1a{word-spacing:-23.040000px;}
.ws1b{word-spacing:-22.305000px;}
.ws15{word-spacing:-19.935000px;}
.ws11{word-spacing:-19.000800px;}
.ws1d{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.504000px;}
.ws3e{word-spacing:-17.767800px;}
.wsc{word-spacing:-17.049600px;}
.ws21{word-spacing:-16.112700px;}
.ws22{word-spacing:-15.831000px;}
.ws4{word-spacing:-15.821100px;}
.wsf{word-spacing:-15.613200px;}
.ws5{word-spacing:-15.609600px;}
.ws3c{word-spacing:-9.849600px;}
.ws40{word-spacing:-6.752700px;}
.wsa{word-spacing:-6.247800px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.225000px;}
.ws27{word-spacing:86.945700px;}
._d{margin-left:-2.202000px;}
._3{margin-left:-1.004100px;}
._1{width:1.894200px;}
._2{width:19.069200px;}
._0{width:22.505400px;}
._f{width:23.611500px;}
._10{width:26.200800px;}
._7{width:27.942000px;}
._a{width:29.876100px;}
._5{width:33.404100px;}
._e{width:34.563900px;}
._c{width:37.251900px;}
._9{width:38.570400px;}
._8{width:40.305600px;}
._4{width:42.118200px;}
._12{width:47.577600px;}
._6{width:50.972100px;}
._b{width:57.411900px;}
._11{width:73.440000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.300000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y7{bottom:4.545000px;}
.y4{bottom:32.475000px;}
.y1c{bottom:118.336500px;}
.y2d{bottom:177.375000px;}
.y2c{bottom:198.075000px;}
.y2b{bottom:218.775000px;}
.y2a{bottom:239.475000px;}
.y29{bottom:260.175000px;}
.y28{bottom:280.875000px;}
.y27{bottom:301.575000px;}
.y26{bottom:324.975000px;}
.y25{bottom:348.375000px;}
.y24{bottom:371.955000px;}
.y23{bottom:395.536500px;}
.y22{bottom:416.236500px;}
.y21{bottom:436.936500px;}
.y1b{bottom:594.436500px;}
.y1a{bottom:615.136500px;}
.y19{bottom:635.836500px;}
.y18{bottom:656.536500px;}
.y17{bottom:677.236500px;}
.y16{bottom:697.936500px;}
.y15{bottom:718.636500px;}
.y14{bottom:739.336500px;}
.y3d{bottom:759.675000px;}
.y13{bottom:760.036500px;}
.y3c{bottom:780.375000px;}
.y12{bottom:780.736500px;}
.y3b{bottom:801.075000px;}
.y11{bottom:801.436500px;}
.y3a{bottom:821.775000px;}
.y10{bottom:822.136500px;}
.y39{bottom:842.475000px;}
.yf{bottom:842.836500px;}
.y38{bottom:863.175000px;}
.ye{bottom:863.536500px;}
.y37{bottom:883.875000px;}
.yd{bottom:884.236500px;}
.y36{bottom:904.575000px;}
.y35{bottom:925.275000px;}
.yc{bottom:925.636500px;}
.y34{bottom:945.975000px;}
.y33{bottom:966.675000px;}
.yb{bottom:967.036500px;}
.y32{bottom:987.375000px;}
.ya{bottom:987.736500px;}
.y31{bottom:1008.075000px;}
.y20{bottom:1008.436500px;}
.y30{bottom:1028.775000px;}
.y1f{bottom:1029.136500px;}
.y2f{bottom:1049.475000px;}
.y9{bottom:1049.836500px;}
.y2e{bottom:1070.175000px;}
.y1e{bottom:1070.536500px;}
.y1d{bottom:1091.236500px;}
.y8{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y6{bottom:1210.350000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h6{height:48.796875px;}
.h5{height:49.304150px;}
.h7{height:50.027344px;}
.h8{height:58.573682px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:8.325000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x9{left:132.120000px;}
.xa{left:159.480000px;}
.x6{left:171.180000px;}
.x8{left:180.720000px;}
.x5{left:469.875000px;}
.x7{left:498.600000px;}
.x3{left:515.880000px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws3d{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws37{word-spacing:-34.367200pt;}
.ws38{word-spacing:-34.364800pt;}
.ws8{word-spacing:-34.361600pt;}
.ws3{word-spacing:-34.360800pt;}
.ws16{word-spacing:-34.350400pt;}
.wse{word-spacing:-34.339200pt;}
.ws3f{word-spacing:-34.176000pt;}
.ws6{word-spacing:-34.169600pt;}
.ws19{word-spacing:-34.158400pt;}
.ws24{word-spacing:-34.111733pt;}
.ws18{word-spacing:-34.109600pt;}
.ws32{word-spacing:-34.097600pt;}
.ws2a{word-spacing:-33.920000pt;}
.ws7{word-spacing:-33.912800pt;}
.ws23{word-spacing:-33.904000pt;}
.ws26{word-spacing:-33.902400pt;}
.ws2{word-spacing:-33.846400pt;}
.ws36{word-spacing:-33.731733pt;}
.ws35{word-spacing:-33.728000pt;}
.ws34{word-spacing:-33.724533pt;}
.ws3a{word-spacing:-33.724000pt;}
.ws28{word-spacing:-33.720800pt;}
.ws29{word-spacing:-33.716000pt;}
.ws31{word-spacing:-33.535733pt;}
.ws3b{word-spacing:-31.166400pt;}
.ws13{word-spacing:-30.970933pt;}
.ws1c{word-spacing:-30.969600pt;}
.ws2b{word-spacing:-29.878400pt;}
.ws30{word-spacing:-27.769600pt;}
.ws10{word-spacing:-26.672000pt;}
.wsb{word-spacing:-26.245333pt;}
.ws33{word-spacing:-26.043200pt;}
.ws17{word-spacing:-25.214933pt;}
.ws2c{word-spacing:-24.960000pt;}
.ws2d{word-spacing:-24.773333pt;}
.ws2e{word-spacing:-24.762667pt;}
.ws39{word-spacing:-24.320000pt;}
.ws12{word-spacing:-24.121600pt;}
.ws9{word-spacing:-21.560533pt;}
.ws2f{word-spacing:-21.556800pt;}
.ws1f{word-spacing:-21.120000pt;}
.ws25{word-spacing:-20.920800pt;}
.ws20{word-spacing:-20.919467pt;}
.wsd{word-spacing:-20.911467pt;}
.ws1a{word-spacing:-20.480000pt;}
.ws1b{word-spacing:-19.826667pt;}
.ws15{word-spacing:-17.720000pt;}
.ws11{word-spacing:-16.889600pt;}
.ws1d{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.448000pt;}
.ws3e{word-spacing:-15.793600pt;}
.wsc{word-spacing:-15.155200pt;}
.ws21{word-spacing:-14.322400pt;}
.ws22{word-spacing:-14.072000pt;}
.ws4{word-spacing:-14.063200pt;}
.wsf{word-spacing:-13.878400pt;}
.ws5{word-spacing:-13.875200pt;}
.ws3c{word-spacing:-8.755200pt;}
.ws40{word-spacing:-6.002400pt;}
.wsa{word-spacing:-5.553600pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.200000pt;}
.ws27{word-spacing:77.285067pt;}
._d{margin-left:-1.957333pt;}
._3{margin-left:-0.892533pt;}
._1{width:1.683733pt;}
._2{width:16.950400pt;}
._0{width:20.004800pt;}
._f{width:20.988000pt;}
._10{width:23.289600pt;}
._7{width:24.837333pt;}
._a{width:26.556533pt;}
._5{width:29.692533pt;}
._e{width:30.723467pt;}
._c{width:33.112800pt;}
._9{width:34.284800pt;}
._8{width:35.827200pt;}
._4{width:37.438400pt;}
._12{width:42.291200pt;}
._6{width:45.308533pt;}
._b{width:51.032800pt;}
._11{width:65.280000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.933333pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y7{bottom:4.040000pt;}
.y4{bottom:28.866667pt;}
.y1c{bottom:105.188000pt;}
.y2d{bottom:157.666667pt;}
.y2c{bottom:176.066667pt;}
.y2b{bottom:194.466667pt;}
.y2a{bottom:212.866667pt;}
.y29{bottom:231.266667pt;}
.y28{bottom:249.666667pt;}
.y27{bottom:268.066667pt;}
.y26{bottom:288.866667pt;}
.y25{bottom:309.666667pt;}
.y24{bottom:330.626667pt;}
.y23{bottom:351.588000pt;}
.y22{bottom:369.988000pt;}
.y21{bottom:388.388000pt;}
.y1b{bottom:528.388000pt;}
.y1a{bottom:546.788000pt;}
.y19{bottom:565.188000pt;}
.y18{bottom:583.588000pt;}
.y17{bottom:601.988000pt;}
.y16{bottom:620.388000pt;}
.y15{bottom:638.788000pt;}
.y14{bottom:657.188000pt;}
.y3d{bottom:675.266667pt;}
.y13{bottom:675.588000pt;}
.y3c{bottom:693.666667pt;}
.y12{bottom:693.988000pt;}
.y3b{bottom:712.066667pt;}
.y11{bottom:712.388000pt;}
.y3a{bottom:730.466667pt;}
.y10{bottom:730.788000pt;}
.y39{bottom:748.866667pt;}
.yf{bottom:749.188000pt;}
.y38{bottom:767.266667pt;}
.ye{bottom:767.588000pt;}
.y37{bottom:785.666667pt;}
.yd{bottom:785.988000pt;}
.y36{bottom:804.066667pt;}
.y35{bottom:822.466667pt;}
.yc{bottom:822.788000pt;}
.y34{bottom:840.866667pt;}
.y33{bottom:859.266667pt;}
.yb{bottom:859.588000pt;}
.y32{bottom:877.666667pt;}
.ya{bottom:877.988000pt;}
.y31{bottom:896.066667pt;}
.y20{bottom:896.388000pt;}
.y30{bottom:914.466667pt;}
.y1f{bottom:914.788000pt;}
.y2f{bottom:932.866667pt;}
.y9{bottom:933.188000pt;}
.y2e{bottom:951.266667pt;}
.y1e{bottom:951.588000pt;}
.y1d{bottom:969.988000pt;}
.y8{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y6{bottom:1075.866667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h6{height:43.375000pt;}
.h5{height:43.825911pt;}
.h7{height:44.468750pt;}
.h8{height:52.065495pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:7.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x9{left:117.440000pt;}
.xa{left:141.760000pt;}
.x6{left:152.160000pt;}
.x8{left:160.640000pt;}
.x5{left:417.666667pt;}
.x7{left:443.200000pt;}
.x3{left:458.560000pt;}
.x2{left:537.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; }
  