
    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_e3b1ce1a00963b08394f8886.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_e1f464a04588d6bf68e25c98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_c84866e50c0adeaf2f065d6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_e6c6050fe99761c93db9b1d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_6f2e93b318244f8b6959a6ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_38cd7e62bb9b150bbac76cf4.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.lsb{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.118200px;}
.lsa{letter-spacing:-0.115200px;}
.lse{letter-spacing:-0.043920px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.233400px;}
.lsd{letter-spacing:0.313920px;}
.ls4{letter-spacing:0.391800px;}
.ls10{letter-spacing:0.587400px;}
.lsf{letter-spacing:0.612000px;}
.ls0{letter-spacing:2.309760px;}
.ls5{letter-spacing:19.589760px;}
.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;}
}
.ws8{word-spacing:-15.102840px;}
.ws2{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.855040px;}
.ws5{word-spacing:-14.852040px;}
.ws0{word-spacing:-14.837640px;}
.ws3{word-spacing:-14.754240px;}
.ws7{word-spacing:-14.117760px;}
.ws6{word-spacing:-13.461840px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.324800px;}
._1{width:1.077600px;}
._2{width:2.119680px;}
._3{width:3.475200px;}
._13{width:5.299200px;}
._4{width:6.557760px;}
._8{width:8.147520px;}
._14{width:9.273600px;}
._b{width:10.465920px;}
._c{width:11.496000px;}
._15{width:12.629280px;}
._d{width:13.861440px;}
._7{width:16.246560px;}
._f{width:18.017280px;}
._10{width:19.035360px;}
._5{width:20.136960px;}
._6{width:21.207840px;}
._e{width:22.468800px;}
._16{width:23.806080px;}
._9{width:31.993920px;}
._a{width:33.019200px;}
._12{width:34.064160px;}
._11{width:35.372160px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:4.680000px;}
.y4e{bottom:24.840000px;}
.y4d{bottom:44.820000px;}
.y50{bottom:45.000000px;}
.y28{bottom:117.576000px;}
.y3f{bottom:124.956000px;}
.y8e{bottom:137.916000px;}
.y27{bottom:140.796000px;}
.y8d{bottom:157.890000px;}
.y26{bottom:164.010000px;}
.y8c{bottom:174.810000px;}
.y25{bottom:187.050000px;}
.y8b{bottom:191.910000px;}
.y8a{bottom:208.830000px;}
.y24{bottom:210.270000px;}
.y89{bottom:225.750000px;}
.y23{bottom:233.490000px;}
.y88{bottom:242.850000px;}
.y22{bottom:256.530000px;}
.y87{bottom:260.310000px;}
.y21{bottom:279.795000px;}
.y86{bottom:280.515000px;}
.y85{bottom:300.495000px;}
.y20{bottom:303.015000px;}
.y84{bottom:320.655000px;}
.y1f{bottom:326.055000px;}
.y65{bottom:328.575000px;}
.y83{bottom:340.815000px;}
.y64{bottom:348.735000px;}
.y1e{bottom:349.275000px;}
.y82{bottom:360.975000px;}
.y63{bottom:368.895000px;}
.y1d{bottom:372.495000px;}
.y81{bottom:381.135000px;}
.y62{bottom:389.055000px;}
.y80{bottom:401.295000px;}
.y61{bottom:409.215000px;}
.y1c{bottom:410.475000px;}
.y7f{bottom:421.455000px;}
.y60{bottom:429.375000px;}
.y3e{bottom:433.515000px;}
.y1b{bottom:433.875000px;}
.y7e{bottom:441.615000px;}
.y5f{bottom:449.535000px;}
.y3d{bottom:453.675000px;}
.y1a{bottom:456.915000px;}
.y7d{bottom:461.775000px;}
.y5e{bottom:469.515000px;}
.y3c{bottom:473.835000px;}
.y19{bottom:480.135000px;}
.y7c{bottom:481.935000px;}
.y5d{bottom:489.675000px;}
.y3b{bottom:493.815000px;}
.y7b{bottom:501.915000px;}
.y18{bottom:503.355000px;}
.y5c{bottom:509.835000px;}
.y3a{bottom:513.975000px;}
.y7a{bottom:522.075000px;}
.y17{bottom:526.395000px;}
.y5b{bottom:529.995000px;}
.y39{bottom:534.135000px;}
.y79{bottom:542.235000px;}
.y16{bottom:549.615000px;}
.y5a{bottom:550.155000px;}
.y38{bottom:554.295000px;}
.y78{bottom:562.425000px;}
.y59{bottom:570.345000px;}
.y15{bottom:572.865000px;}
.y37{bottom:574.485000px;}
.y77{bottom:582.585000px;}
.y36{bottom:590.145000px;}
.y58{bottom:590.505000px;}
.y14{bottom:595.905000px;}
.y76{bottom:602.745000px;}
.y57{bottom:610.665000px;}
.y13{bottom:619.125000px;}
.y75{bottom:622.365000px;}
.y56{bottom:630.825000px;}
.y74{bottom:640.545000px;}
.y12{bottom:642.345000px;}
.y55{bottom:647.025000px;}
.y73{bottom:658.905000px;}
.y11{bottom:665.385000px;}
.y54{bottom:667.905000px;}
.y72{bottom:677.265000px;}
.y10{bottom:688.605000px;}
.y71{bottom:696.165000px;}
.y53{bottom:708.945000px;}
.yf{bottom:711.825000px;}
.y70{bottom:716.325000px;}
.y52{bottom:729.825000px;}
.ye{bottom:734.865000px;}
.y6f{bottom:736.305000px;}
.y51{bottom:750.705000px;}
.y6e{bottom:756.465000px;}
.yd{bottom:758.085000px;}
.y6d{bottom:776.625000px;}
.yc{bottom:781.305000px;}
.y4f{bottom:791.745000px;}
.y6c{bottom:796.785000px;}
.yb{bottom:804.345000px;}
.y6b{bottom:816.945000px;}
.ya{bottom:827.565000px;}
.y6a{bottom:837.105000px;}
.y35{bottom:848.310000px;}
.y9{bottom:850.830000px;}
.y4c{bottom:852.990000px;}
.y69{bottom:857.310000px;}
.y34{bottom:868.470000px;}
.y8{bottom:873.870000px;}
.y68{bottom:877.470000px;}
.y67{bottom:897.630000px;}
.y33{bottom:906.450000px;}
.y7{bottom:911.850000px;}
.y66{bottom:913.290000px;}
.y4a{bottom:914.190000px;}
.y32{bottom:929.670000px;}
.y49{bottom:939.750000px;}
.y6{bottom:950.190000px;}
.y31{bottom:952.890000px;}
.y48{bottom:959.910000px;}
.y30{bottom:976.110000px;}
.y47{bottom:979.890000px;}
.y5{bottom:988.350000px;}
.y2f{bottom:996.270000px;}
.y46{bottom:1000.050000px;}
.y2e{bottom:1016.250000px;}
.y45{bottom:1020.210000px;}
.y4{bottom:1026.510000px;}
.y2d{bottom:1036.410000px;}
.y44{bottom:1040.370000px;}
.y2c{bottom:1056.570000px;}
.y43{bottom:1060.530000px;}
.y3{bottom:1064.670000px;}
.y42{bottom:1080.690000px;}
.y2b{bottom:1094.550000px;}
.y41{bottom:1100.850000px;}
.y2{bottom:1102.830000px;}
.y2a{bottom:1117.950000px;}
.y40{bottom:1121.010000px;}
.y1{bottom:1141.020000px;}
.y29{bottom:1141.200000px;}
.h5{height:20.145000px;}
.h9{height:20.160000px;}
.hb{height:39.830273px;}
.h8{height:40.320000px;}
.h2{height:45.410625px;}
.h4{height:45.895781px;}
.ha{height:49.284492px;}
.h3{height:54.628594px;}
.h6{height:60.285000px;}
.h7{height:60.502500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:112.176000px;}
.w6{width:112.701000px;}
.w5{width:113.385000px;}
.w7{width:113.395500px;}
.w8{width:113.400000px;}
.w3{width:114.480000px;}
.w2{width:143.661000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.725000px;}
.x5{left:127.656000px;}
.x6{left:154.650000px;}
.xa{left:173.925000px;}
.x7{left:181.650000px;}
.x1{left:249.330000px;}
.x2{left:288.390000px;}
.xc{left:318.315000px;}
.x4{left:369.075000px;}
.x10{left:380.595000px;}
.xd{left:433.515000px;}
.x3{left:446.475000px;}
.x8{left:453.855000px;}
.x9{left:462.855000px;}
.xe{left:546.420000px;}
.xf{left:660.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.105067pt;}
.lsa{letter-spacing:-0.102400pt;}
.lse{letter-spacing:-0.039040pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.207467pt;}
.lsd{letter-spacing:0.279040pt;}
.ls4{letter-spacing:0.348267pt;}
.ls10{letter-spacing:0.522133pt;}
.lsf{letter-spacing:0.544000pt;}
.ls0{letter-spacing:2.053120pt;}
.ls5{letter-spacing:17.413120pt;}
.ws8{word-spacing:-13.424747pt;}
.ws2{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.204480pt;}
.ws5{word-spacing:-13.201813pt;}
.ws0{word-spacing:-13.189013pt;}
.ws3{word-spacing:-13.114880pt;}
.ws7{word-spacing:-12.549120pt;}
.ws6{word-spacing:-11.966080pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.957867pt;}
._2{width:1.884160pt;}
._3{width:3.089067pt;}
._13{width:4.710400pt;}
._4{width:5.829120pt;}
._8{width:7.242240pt;}
._14{width:8.243200pt;}
._b{width:9.303040pt;}
._c{width:10.218667pt;}
._15{width:11.226027pt;}
._d{width:12.321280pt;}
._7{width:14.441387pt;}
._f{width:16.015360pt;}
._10{width:16.920320pt;}
._5{width:17.899520pt;}
._6{width:18.851413pt;}
._e{width:19.972267pt;}
._16{width:21.160960pt;}
._9{width:28.439040pt;}
._a{width:29.350400pt;}
._12{width:30.279253pt;}
._11{width:31.441920pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:4.160000pt;}
.y4e{bottom:22.080000pt;}
.y4d{bottom:39.840000pt;}
.y50{bottom:40.000000pt;}
.y28{bottom:104.512000pt;}
.y3f{bottom:111.072000pt;}
.y8e{bottom:122.592000pt;}
.y27{bottom:125.152000pt;}
.y8d{bottom:140.346667pt;}
.y26{bottom:145.786667pt;}
.y8c{bottom:155.386667pt;}
.y25{bottom:166.266667pt;}
.y8b{bottom:170.586667pt;}
.y8a{bottom:185.626667pt;}
.y24{bottom:186.906667pt;}
.y89{bottom:200.666667pt;}
.y23{bottom:207.546667pt;}
.y88{bottom:215.866667pt;}
.y22{bottom:228.026667pt;}
.y87{bottom:231.386667pt;}
.y21{bottom:248.706667pt;}
.y86{bottom:249.346667pt;}
.y85{bottom:267.106667pt;}
.y20{bottom:269.346667pt;}
.y84{bottom:285.026667pt;}
.y1f{bottom:289.826667pt;}
.y65{bottom:292.066667pt;}
.y83{bottom:302.946667pt;}
.y64{bottom:309.986667pt;}
.y1e{bottom:310.466667pt;}
.y82{bottom:320.866667pt;}
.y63{bottom:327.906667pt;}
.y1d{bottom:331.106667pt;}
.y81{bottom:338.786667pt;}
.y62{bottom:345.826667pt;}
.y80{bottom:356.706667pt;}
.y61{bottom:363.746667pt;}
.y1c{bottom:364.866667pt;}
.y7f{bottom:374.626667pt;}
.y60{bottom:381.666667pt;}
.y3e{bottom:385.346667pt;}
.y1b{bottom:385.666667pt;}
.y7e{bottom:392.546667pt;}
.y5f{bottom:399.586667pt;}
.y3d{bottom:403.266667pt;}
.y1a{bottom:406.146667pt;}
.y7d{bottom:410.466667pt;}
.y5e{bottom:417.346667pt;}
.y3c{bottom:421.186667pt;}
.y19{bottom:426.786667pt;}
.y7c{bottom:428.386667pt;}
.y5d{bottom:435.266667pt;}
.y3b{bottom:438.946667pt;}
.y7b{bottom:446.146667pt;}
.y18{bottom:447.426667pt;}
.y5c{bottom:453.186667pt;}
.y3a{bottom:456.866667pt;}
.y7a{bottom:464.066667pt;}
.y17{bottom:467.906667pt;}
.y5b{bottom:471.106667pt;}
.y39{bottom:474.786667pt;}
.y79{bottom:481.986667pt;}
.y16{bottom:488.546667pt;}
.y5a{bottom:489.026667pt;}
.y38{bottom:492.706667pt;}
.y78{bottom:499.933333pt;}
.y59{bottom:506.973333pt;}
.y15{bottom:509.213333pt;}
.y37{bottom:510.653333pt;}
.y77{bottom:517.853333pt;}
.y36{bottom:524.573333pt;}
.y58{bottom:524.893333pt;}
.y14{bottom:529.693333pt;}
.y76{bottom:535.773333pt;}
.y57{bottom:542.813333pt;}
.y13{bottom:550.333333pt;}
.y75{bottom:553.213333pt;}
.y56{bottom:560.733333pt;}
.y74{bottom:569.373333pt;}
.y12{bottom:570.973333pt;}
.y55{bottom:575.133333pt;}
.y73{bottom:585.693333pt;}
.y11{bottom:591.453333pt;}
.y54{bottom:593.693333pt;}
.y72{bottom:602.013333pt;}
.y10{bottom:612.093333pt;}
.y71{bottom:618.813333pt;}
.y53{bottom:630.173333pt;}
.yf{bottom:632.733333pt;}
.y70{bottom:636.733333pt;}
.y52{bottom:648.733333pt;}
.ye{bottom:653.213333pt;}
.y6f{bottom:654.493333pt;}
.y51{bottom:667.293333pt;}
.y6e{bottom:672.413333pt;}
.yd{bottom:673.853333pt;}
.y6d{bottom:690.333333pt;}
.yc{bottom:694.493333pt;}
.y4f{bottom:703.773333pt;}
.y6c{bottom:708.253333pt;}
.yb{bottom:714.973333pt;}
.y6b{bottom:726.173333pt;}
.ya{bottom:735.613333pt;}
.y6a{bottom:744.093333pt;}
.y35{bottom:754.053333pt;}
.y9{bottom:756.293333pt;}
.y4c{bottom:758.213333pt;}
.y69{bottom:762.053333pt;}
.y34{bottom:771.973333pt;}
.y8{bottom:776.773333pt;}
.y68{bottom:779.973333pt;}
.y67{bottom:797.893333pt;}
.y33{bottom:805.733333pt;}
.y7{bottom:810.533333pt;}
.y66{bottom:811.813333pt;}
.y4a{bottom:812.613333pt;}
.y32{bottom:826.373333pt;}
.y49{bottom:835.333333pt;}
.y6{bottom:844.613333pt;}
.y31{bottom:847.013333pt;}
.y48{bottom:853.253333pt;}
.y30{bottom:867.653333pt;}
.y47{bottom:871.013333pt;}
.y5{bottom:878.533333pt;}
.y2f{bottom:885.573333pt;}
.y46{bottom:888.933333pt;}
.y2e{bottom:903.333333pt;}
.y45{bottom:906.853333pt;}
.y4{bottom:912.453333pt;}
.y2d{bottom:921.253333pt;}
.y44{bottom:924.773333pt;}
.y2c{bottom:939.173333pt;}
.y43{bottom:942.693333pt;}
.y3{bottom:946.373333pt;}
.y42{bottom:960.613333pt;}
.y2b{bottom:972.933333pt;}
.y41{bottom:978.533333pt;}
.y2{bottom:980.293333pt;}
.y2a{bottom:993.733333pt;}
.y40{bottom:996.453333pt;}
.y1{bottom:1014.240000pt;}
.y29{bottom:1014.400000pt;}
.h5{height:17.906667pt;}
.h9{height:17.920000pt;}
.hb{height:35.404688pt;}
.h8{height:35.840000pt;}
.h2{height:40.365000pt;}
.h4{height:40.796250pt;}
.ha{height:43.808438pt;}
.h3{height:48.558750pt;}
.h6{height:53.586667pt;}
.h7{height:53.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:99.712000pt;}
.w6{width:100.178667pt;}
.w5{width:100.786667pt;}
.w7{width:100.796000pt;}
.w8{width:100.800000pt;}
.w3{width:101.760000pt;}
.w2{width:127.698667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.866667pt;}
.x5{left:113.472000pt;}
.x6{left:137.466667pt;}
.xa{left:154.600000pt;}
.x7{left:161.466667pt;}
.x1{left:221.626667pt;}
.x2{left:256.346667pt;}
.xc{left:282.946667pt;}
.x4{left:328.066667pt;}
.x10{left:338.306667pt;}
.xd{left:385.346667pt;}
.x3{left:396.866667pt;}
.x8{left:403.426667pt;}
.x9{left:411.426667pt;}
.xe{left:485.706667pt;}
.xf{left:587.146667pt;}
}




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