
    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_2c8cf3ddca536658a839efba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_4a998375db1e980a56674280.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f12c3ee3b2cf2ca6be6eade4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_64098bd9f52be640da0e4362.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_cca31c5067617668228478a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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:ff7;src:url('chunks/assets/font_3fb2bc29adf456aabfee3aff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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:ff8;src:url('chunks/assets/font_59c8ed98ddcf8104f68fac7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924805;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.288000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.600000px;}
.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:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.340640px;}
._2{width:2.355600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.960000px;}
.y39{bottom:4.005000px;}
.y1d{bottom:4.500000px;}
.y6f{bottom:5.220000px;}
.y16{bottom:14.220000px;}
.ye{bottom:24.660000px;}
.y12{bottom:24.690000px;}
.y6e{bottom:33.474000px;}
.y72{bottom:33.480000px;}
.yd{bottom:45.360000px;}
.y1f{bottom:126.396000px;}
.y3e{bottom:127.296000px;}
.y1e{bottom:145.476000px;}
.y5a{bottom:148.356000px;}
.y1c{bottom:170.670000px;}
.y3d{bottom:174.630000px;}
.y6d{bottom:186.690000px;}
.y59{bottom:195.690000px;}
.y1b{bottom:199.110000px;}
.y6c{bottom:211.890000px;}
.y3c{bottom:221.970000px;}
.y6b{bottom:237.090000px;}
.y58{bottom:243.210000px;}
.y1a{bottom:245.010000px;}
.y3b{bottom:248.250000px;}
.y6a{bottom:262.290000px;}
.y3a{bottom:273.450000px;}
.y69{bottom:287.490000px;}
.y57{bottom:290.550000px;}
.y19{bottom:293.610000px;}
.y38{bottom:298.650000px;}
.y56{bottom:316.695000px;}
.y37{bottom:323.895000px;}
.y68{bottom:335.955000px;}
.y18{bottom:337.935000px;}
.y55{bottom:341.895000px;}
.y36{bottom:349.095000px;}
.y54{bottom:367.095000px;}
.y35{bottom:374.295000px;}
.y17{bottom:375.195000px;}
.y67{bottom:383.475000px;}
.y53{bottom:392.295000px;}
.y15{bottom:394.455000px;}
.y34{bottom:399.495000px;}
.y52{bottom:417.495000px;}
.y33{bottom:424.695000px;}
.y66{bottom:430.815000px;}
.y14{bottom:440.355000px;}
.y51{bottom:442.695000px;}
.y32{bottom:449.895000px;}
.y65{bottom:456.915000px;}
.y50{bottom:467.895000px;}
.y31{bottom:475.095000px;}
.y64{bottom:482.115000px;}
.y13{bottom:486.255000px;}
.y4f{bottom:493.095000px;}
.y30{bottom:500.295000px;}
.y63{bottom:507.315000px;}
.y4e{bottom:518.295000px;}
.y2f{bottom:525.495000px;}
.y11{bottom:532.155000px;}
.y62{bottom:532.515000px;}
.y4d{bottom:543.495000px;}
.y61{bottom:557.745000px;}
.y4c{bottom:568.725000px;}
.y2e{bottom:574.125000px;}
.y10{bottom:578.085000px;}
.y60{bottom:582.945000px;}
.y2d{bottom:606.525000px;}
.y5f{bottom:608.145000px;}
.y4b{bottom:617.325000px;}
.yf{bottom:623.985000px;}
.y4a{bottom:649.725000px;}
.y2c{bottom:653.865000px;}
.y5e{bottom:656.745000px;}
.yc{bottom:669.885000px;}
.y5d{bottom:689.145000px;}
.y49{bottom:697.065000px;}
.y2b{bottom:701.205000px;}
.y2a{bottom:727.485000px;}
.y5c{bottom:733.425000px;}
.yb{bottom:736.485000px;}
.y48{bottom:744.405000px;}
.y29{bottom:752.685000px;}
.y47{bottom:770.685000px;}
.y28{bottom:777.885000px;}
.ya{bottom:784.905000px;}
.y46{bottom:795.885000px;}
.y5b{bottom:798.585000px;}
.y45{bottom:821.130000px;}
.y27{bottom:823.830000px;}
.y9{bottom:832.470000px;}
.y79{bottom:836.970000px;}
.y26{bottom:849.030000px;}
.y78{bottom:856.230000px;}
.y8{bottom:858.570000px;}
.y44{bottom:867.030000px;}
.y25{bottom:874.230000px;}
.y77{bottom:881.430000px;}
.y7{bottom:883.770000px;}
.y24{bottom:899.430000px;}
.y76{bottom:906.630000px;}
.y6{bottom:908.970000px;}
.y43{bottom:912.930000px;}
.y23{bottom:924.630000px;}
.y75{bottom:931.830000px;}
.y4{bottom:934.170000px;}
.y42{bottom:938.130000px;}
.y22{bottom:949.830000px;}
.y74{bottom:957.030000px;}
.y41{bottom:963.330000px;}
.y21{bottom:975.030000px;}
.y3{bottom:981.690000px;}
.y73{bottom:982.230000px;}
.y40{bottom:988.530000px;}
.y71{bottom:1007.430000px;}
.y20{bottom:1020.750000px;}
.y2{bottom:1024.890000px;}
.y3f{bottom:1037.130000px;}
.y70{bottom:1068.300000px;}
.y1{bottom:1069.380000px;}
.h3{height:20.700000px;}
.hd{height:20.736000px;}
.ha{height:23.940000px;}
.hb{height:41.220000px;}
.h7{height:41.400000px;}
.h8{height:41.436000px;}
.hf{height:55.800000px;}
.h9{height:55.825312px;}
.h11{height:56.340000px;}
.he{height:58.154062px;}
.h5{height:62.100000px;}
.hc{height:63.035156px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.h2{height:73.956797px;}
.h1{height:84.070547px;}
.h10{height:96.508125px;}
.h0{height:1188.000000px;}
.w12{width:277.230000px;}
.wb{width:281.235000px;}
.w11{width:288.615000px;}
.w5{width:291.315000px;}
.wf{width:292.755000px;}
.w13{width:307.875000px;}
.w3{width:313.815000px;}
.w15{width:314.175000px;}
.wa{width:317.190000px;}
.w6{width:318.450000px;}
.w9{width:318.675000px;}
.wc{width:319.890000px;}
.wd{width:321.375000px;}
.we{width:321.690000px;}
.w8{width:322.770000px;}
.w7{width:322.995000px;}
.w14{width:327.090000px;}
.w2{width:327.450000px;}
.w4{width:349.950000px;}
.w10{width:352.650000px;}
.w16{width:643.605000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:1.080000px;}
.x26{left:27.534000px;}
.x22{left:105.114000px;}
.x16{left:111.630000px;}
.x1f{left:115.230000px;}
.x9{left:116.490000px;}
.xc{left:125.634000px;}
.x10{left:127.794000px;}
.x12{left:130.350000px;}
.xe{left:132.330000px;}
.xa{left:135.035986px;}
.x20{left:136.295986px;}
.x3{left:137.376000px;}
.x7{left:141.474000px;}
.x1d{left:142.734000px;}
.x24{left:156.269986px;}
.x27{left:161.814000px;}
.x19{left:163.649986px;}
.x1c{left:181.829986px;}
.x17{left:189.569986px;}
.x13{left:222.509986px;}
.x18{left:262.289986px;}
.x14{left:272.369986px;}
.x21{left:299.369986px;}
.xf{left:319.574986px;}
.x25{left:321.699000px;}
.xb{left:323.714986px;}
.x1{left:366.014986px;}
.x6{left:375.374986px;}
.x1a{left:386.894986px;}
.x23{left:416.775000px;}
.x15{left:456.735000px;}
.xd{left:457.995000px;}
.x2{left:459.074986px;}
.x1b{left:461.235000px;}
.x11{left:462.315000px;}
.x5{left:467.175000px;}
.x8{left:489.675000px;}
.x1e{left:492.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.533333pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.191680pt;}
._2{width:2.093867pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.520000pt;}
.y39{bottom:3.560000pt;}
.y1d{bottom:4.000000pt;}
.y6f{bottom:4.640000pt;}
.y16{bottom:12.640000pt;}
.ye{bottom:21.920000pt;}
.y12{bottom:21.946667pt;}
.y6e{bottom:29.754667pt;}
.y72{bottom:29.760000pt;}
.yd{bottom:40.320000pt;}
.y1f{bottom:112.352000pt;}
.y3e{bottom:113.152000pt;}
.y1e{bottom:129.312000pt;}
.y5a{bottom:131.872000pt;}
.y1c{bottom:151.706667pt;}
.y3d{bottom:155.226667pt;}
.y6d{bottom:165.946667pt;}
.y59{bottom:173.946667pt;}
.y1b{bottom:176.986667pt;}
.y6c{bottom:188.346667pt;}
.y3c{bottom:197.306667pt;}
.y6b{bottom:210.746667pt;}
.y58{bottom:216.186667pt;}
.y1a{bottom:217.786667pt;}
.y3b{bottom:220.666667pt;}
.y6a{bottom:233.146667pt;}
.y3a{bottom:243.066667pt;}
.y69{bottom:255.546667pt;}
.y57{bottom:258.266667pt;}
.y19{bottom:260.986667pt;}
.y38{bottom:265.466667pt;}
.y56{bottom:281.506667pt;}
.y37{bottom:287.906667pt;}
.y68{bottom:298.626667pt;}
.y18{bottom:300.386667pt;}
.y55{bottom:303.906667pt;}
.y36{bottom:310.306667pt;}
.y54{bottom:326.306667pt;}
.y35{bottom:332.706667pt;}
.y17{bottom:333.506667pt;}
.y67{bottom:340.866667pt;}
.y53{bottom:348.706667pt;}
.y15{bottom:350.626667pt;}
.y34{bottom:355.106667pt;}
.y52{bottom:371.106667pt;}
.y33{bottom:377.506667pt;}
.y66{bottom:382.946667pt;}
.y14{bottom:391.426667pt;}
.y51{bottom:393.506667pt;}
.y32{bottom:399.906667pt;}
.y65{bottom:406.146667pt;}
.y50{bottom:415.906667pt;}
.y31{bottom:422.306667pt;}
.y64{bottom:428.546667pt;}
.y13{bottom:432.226667pt;}
.y4f{bottom:438.306667pt;}
.y30{bottom:444.706667pt;}
.y63{bottom:450.946667pt;}
.y4e{bottom:460.706667pt;}
.y2f{bottom:467.106667pt;}
.y11{bottom:473.026667pt;}
.y62{bottom:473.346667pt;}
.y4d{bottom:483.106667pt;}
.y61{bottom:495.773333pt;}
.y4c{bottom:505.533333pt;}
.y2e{bottom:510.333333pt;}
.y10{bottom:513.853333pt;}
.y60{bottom:518.173333pt;}
.y2d{bottom:539.133333pt;}
.y5f{bottom:540.573333pt;}
.y4b{bottom:548.733333pt;}
.yf{bottom:554.653333pt;}
.y4a{bottom:577.533333pt;}
.y2c{bottom:581.213333pt;}
.y5e{bottom:583.773333pt;}
.yc{bottom:595.453333pt;}
.y5d{bottom:612.573333pt;}
.y49{bottom:619.613333pt;}
.y2b{bottom:623.293333pt;}
.y2a{bottom:646.653333pt;}
.y5c{bottom:651.933333pt;}
.yb{bottom:654.653333pt;}
.y48{bottom:661.693333pt;}
.y29{bottom:669.053333pt;}
.y47{bottom:685.053333pt;}
.y28{bottom:691.453333pt;}
.ya{bottom:697.693333pt;}
.y46{bottom:707.453333pt;}
.y5b{bottom:709.853333pt;}
.y45{bottom:729.893333pt;}
.y27{bottom:732.293333pt;}
.y9{bottom:739.973333pt;}
.y79{bottom:743.973333pt;}
.y26{bottom:754.693333pt;}
.y78{bottom:761.093333pt;}
.y8{bottom:763.173333pt;}
.y44{bottom:770.693333pt;}
.y25{bottom:777.093333pt;}
.y77{bottom:783.493333pt;}
.y7{bottom:785.573333pt;}
.y24{bottom:799.493333pt;}
.y76{bottom:805.893333pt;}
.y6{bottom:807.973333pt;}
.y43{bottom:811.493333pt;}
.y23{bottom:821.893333pt;}
.y75{bottom:828.293333pt;}
.y4{bottom:830.373333pt;}
.y42{bottom:833.893333pt;}
.y22{bottom:844.293333pt;}
.y74{bottom:850.693333pt;}
.y41{bottom:856.293333pt;}
.y21{bottom:866.693333pt;}
.y3{bottom:872.613333pt;}
.y73{bottom:873.093333pt;}
.y40{bottom:878.693333pt;}
.y71{bottom:895.493333pt;}
.y20{bottom:907.333333pt;}
.y2{bottom:911.013333pt;}
.y3f{bottom:921.893333pt;}
.y70{bottom:949.600000pt;}
.y1{bottom:950.560000pt;}
.h3{height:18.400000pt;}
.hd{height:18.432000pt;}
.ha{height:21.280000pt;}
.hb{height:36.640000pt;}
.h7{height:36.800000pt;}
.h8{height:36.832000pt;}
.hf{height:49.600000pt;}
.h9{height:49.622500pt;}
.h11{height:50.080000pt;}
.he{height:51.692500pt;}
.h5{height:55.200000pt;}
.hc{height:56.031250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.h2{height:65.739375pt;}
.h1{height:74.729375pt;}
.h10{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w12{width:246.426667pt;}
.wb{width:249.986667pt;}
.w11{width:256.546667pt;}
.w5{width:258.946667pt;}
.wf{width:260.226667pt;}
.w13{width:273.666667pt;}
.w3{width:278.946667pt;}
.w15{width:279.266667pt;}
.wa{width:281.946667pt;}
.w6{width:283.066667pt;}
.w9{width:283.266667pt;}
.wc{width:284.346667pt;}
.wd{width:285.666667pt;}
.we{width:285.946667pt;}
.w8{width:286.906667pt;}
.w7{width:287.106667pt;}
.w14{width:290.746667pt;}
.w2{width:291.066667pt;}
.w4{width:311.066667pt;}
.w10{width:313.466667pt;}
.w16{width:572.093333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:0.960000pt;}
.x26{left:24.474667pt;}
.x22{left:93.434667pt;}
.x16{left:99.226667pt;}
.x1f{left:102.426667pt;}
.x9{left:103.546667pt;}
.xc{left:111.674667pt;}
.x10{left:113.594667pt;}
.x12{left:115.866667pt;}
.xe{left:117.626667pt;}
.xa{left:120.031988pt;}
.x20{left:121.151988pt;}
.x3{left:122.112000pt;}
.x7{left:125.754667pt;}
.x1d{left:126.874667pt;}
.x24{left:138.906655pt;}
.x27{left:143.834667pt;}
.x19{left:145.466655pt;}
.x1c{left:161.626655pt;}
.x17{left:168.506655pt;}
.x13{left:197.786655pt;}
.x18{left:233.146655pt;}
.x14{left:242.106655pt;}
.x21{left:266.106655pt;}
.xf{left:284.066655pt;}
.x25{left:285.954667pt;}
.xb{left:287.746655pt;}
.x1{left:325.346655pt;}
.x6{left:333.666655pt;}
.x1a{left:343.906655pt;}
.x23{left:370.466667pt;}
.x15{left:405.986667pt;}
.xd{left:407.106667pt;}
.x2{left:408.066655pt;}
.x1b{left:409.986667pt;}
.x11{left:410.946667pt;}
.x5{left:415.266667pt;}
.x8{left:435.266667pt;}
.x1e{left:437.666667pt;}
}




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