
    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_771532bbb12dfe53157b4c6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_f20eff487a604548bcb5e9cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5d424d123ad998579ffaf057.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_96d9a6ca54b749268144bd71.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_deee0cbf4863852fa83d3135.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_d9524571acb290c7a2d690a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.975586;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_ec45188245bba32764d546a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_5f1ebd1f56a937a44b7b70f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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);}
.v6{vertical-align:-19.500000px;}
.v3{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.500000px;}
.v5{vertical-align:25.620000px;}
.v1{vertical-align:45.120000px;}
.v2{vertical-align:76.620000px;}
.lsb{letter-spacing:-1.032000px;}
.ls3{letter-spacing:-0.516000px;}
.lsa{letter-spacing:-0.468000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.045000px;}
.ls8{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.471000px;}
.ls5{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.492000px;}
.ls2{letter-spacing:54.984000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws6{word-spacing:-51.000000px;}
.ws0{word-spacing:-36.000000px;}
.ws8{word-spacing:-20.268000px;}
.ws4{word-spacing:-18.492000px;}
.ws5{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:7.098000px;}
._1{margin-left:-13.536000px;}
._4{margin-left:-12.528000px;}
._2{margin-left:-6.768000px;}
._0{margin-left:-2.592000px;}
._3{margin-left:-1.008000px;}
._5{width:1.296000px;}
._6{width:3.030000px;}
._a{width:4.788000px;}
._9{width:19.716000px;}
._8{width:21.180000px;}
._7{width:846.450000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:81.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.735000px;}
.y10{bottom:3.750000px;}
.y29{bottom:3.795000px;}
.y23{bottom:4.125000px;}
.y50{bottom:9.000000px;}
.y17{bottom:24.360000px;}
.y12{bottom:24.375000px;}
.y38{bottom:24.382500px;}
.y28{bottom:24.420000px;}
.y22{bottom:24.780000px;}
.y36{bottom:24.795000px;}
.y46{bottom:25.500000px;}
.y2f{bottom:25.530000px;}
.y2c{bottom:25.875000px;}
.y4f{bottom:38.655000px;}
.y31{bottom:45.375000px;}
.y21{bottom:45.405000px;}
.y33{bottom:45.420000px;}
.y27{bottom:46.170000px;}
.y16{bottom:46.530000px;}
.y5a{bottom:47.625000px;}
.y2e{bottom:47.655000px;}
.y2b{bottom:48.000000px;}
.y4e{bottom:59.280000px;}
.y15{bottom:67.155000px;}
.y20{bottom:67.530000px;}
.y26{bottom:68.295000px;}
.y45{bottom:69.405000px;}
.y59{bottom:69.780000px;}
.y4d{bottom:79.905000px;}
.y1f{bottom:88.155000px;}
.y25{bottom:88.920000px;}
.y14{bottom:89.280000px;}
.y44{bottom:91.530000px;}
.y58{bottom:91.920000px;}
.y4c{bottom:100.905000px;}
.y1e{bottom:108.780000px;}
.y54{bottom:112.545000px;}
.y57{bottom:113.670000px;}
.y1d{bottom:130.905000px;}
.y53{bottom:134.670000px;}
.y37{bottom:135.037500px;}
.y56{bottom:135.795000px;}
.y1c{bottom:151.560000px;}
.y5d{bottom:153.045000px;}
.y55{bottom:156.420000px;}
.y52{bottom:156.795000px;}
.y1b{bottom:172.185000px;}
.y5c{bottom:174.045000px;}
.y35{bottom:177.030000px;}
.y5b{bottom:191.700000px;}
.y1a{bottom:194.310000px;}
.y51{bottom:233.700000px;}
.y34{bottom:240.075000px;}
.y73{bottom:279.450000px;}
.y32{bottom:282.075000px;}
.y72{bottom:321.120000px;}
.y71{bottom:342.120000px;}
.y30{bottom:345.120000px;}
.y70{bottom:362.745000px;}
.y6f{bottom:404.370000px;}
.y4b{bottom:407.745000px;}
.y2d{bottom:408.120000px;}
.y6e{bottom:425.025000px;}
.y6d{bottom:467.400000px;}
.y2a{bottom:473.400000px;}
.y6c{bottom:510.900000px;}
.y4a{bottom:526.275000px;}
.y24{bottom:539.025000px;}
.y6b{bottom:553.695000px;}
.y49{bottom:568.320000px;}
.y48{bottom:589.695000px;}
.y6a{bottom:597.195000px;}
.y47{bottom:611.070000px;}
.y43{bottom:632.820000px;}
.yd{bottom:636.945000px;}
.y69{bottom:639.570000px;}
.y19{bottom:645.570000px;}
.yc{bottom:678.600000px;}
.y68{bottom:685.350000px;}
.yb{bottom:699.225000px;}
.y67{bottom:731.475000px;}
.ya{bottom:740.850000px;}
.y42{bottom:741.975000px;}
.y9{bottom:761.475000px;}
.y41{bottom:763.350000px;}
.y66{bottom:776.850000px;}
.y65{bottom:797.520000px;}
.y8{bottom:805.380000px;}
.y40{bottom:805.755000px;}
.y3f{bottom:827.130000px;}
.y64{bottom:839.880000px;}
.y3e{bottom:848.505000px;}
.y7{bottom:851.505000px;}
.y13{bottom:857.520000px;}
.y63{bottom:883.755000px;}
.y3d{bottom:896.925000px;}
.y6{bottom:897.300000px;}
.y62{bottom:904.425000px;}
.y5{bottom:917.925000px;}
.y61{bottom:925.050000px;}
.y3c{bottom:928.050000px;}
.y4{bottom:938.550000px;}
.y3{bottom:959.175000px;}
.y11{bottom:964.425000px;}
.y60{bottom:967.425000px;}
.y3b{bottom:974.175000px;}
.y3a{bottom:995.550000px;}
.y2{bottom:1004.925000px;}
.yf{bottom:1006.425000px;}
.y5f{bottom:1013.175000px;}
.y39{bottom:1037.955000px;}
.y1{bottom:1046.580000px;}
.ye{bottom:1054.830000px;}
.y5e{bottom:1059.330000px;}
.h10{height:20.625000px;}
.h5{height:20.662500px;}
.h12{height:21.000000px;}
.h6{height:41.250000px;}
.h13{height:41.287500px;}
.hf{height:41.662500px;}
.h3{height:50.273438px;}
.h2{height:50.800781px;}
.h8{height:52.417969px;}
.h19{height:57.150879px;}
.h18{height:60.855469px;}
.hd{height:62.250000px;}
.he{height:62.287500px;}
.hc{height:64.537500px;}
.hb{height:64.875000px;}
.h4{height:76.201172px;}
.h16{height:90.565313px;}
.h1{height:101.601562px;}
.ha{height:105.787500px;}
.h7{height:106.162500px;}
.h11{height:108.412500px;}
.h14{height:117.787500px;}
.h15{height:141.565313px;}
.h17{height:173.295000px;}
.h9{height:211.200000px;}
.h0{height:1188.000000px;}
.w6{width:116.287500px;}
.wc{width:116.662500px;}
.w3{width:117.037500px;}
.w9{width:117.412500px;}
.wb{width:158.325000px;}
.w8{width:158.700000px;}
.w5{width:224.745000px;}
.w2{width:225.120000px;}
.w7{width:358.275000px;}
.w4{width:358.650000px;}
.wd{width:424.320000px;}
.wa{width:424.695000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x5{left:18.000000px;}
.xb{left:21.000000px;}
.x9{left:34.875000px;}
.x3{left:54.037500px;}
.xa{left:61.905000px;}
.x1{left:108.037486px;}
.x7{left:141.075000px;}
.xf{left:149.700000px;}
.xe{left:173.700000px;}
.x10{left:213.855000px;}
.xc{left:267.495000px;}
.x4{left:333.900000px;}
.xd{left:384.900000px;}
.x6{left:450.945000px;}
.x2{left:810.344986px;}
@media print{
.v6{vertical-align:-17.333333pt;}
.v3{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.333333pt;}
.v5{vertical-align:22.773333pt;}
.v1{vertical-align:40.106667pt;}
.v2{vertical-align:68.106667pt;}
.lsb{letter-spacing:-0.917333pt;}
.ls3{letter-spacing:-0.458667pt;}
.lsa{letter-spacing:-0.416000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.040000pt;}
.ls8{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.418667pt;}
.ls5{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.437333pt;}
.ls2{letter-spacing:48.874667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6{word-spacing:-45.333333pt;}
.ws0{word-spacing:-32.000000pt;}
.ws8{word-spacing:-18.016000pt;}
.ws4{word-spacing:-16.437333pt;}
.ws5{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:6.309333pt;}
._1{margin-left:-12.032000pt;}
._4{margin-left:-11.136000pt;}
._2{margin-left:-6.016000pt;}
._0{margin-left:-2.304000pt;}
._3{margin-left:-0.896000pt;}
._5{width:1.152000pt;}
._6{width:2.693333pt;}
._a{width:4.256000pt;}
._9{width:17.525333pt;}
._8{width:18.826667pt;}
._7{width:752.400000pt;}
.fs3{font-size:45.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:72.000000pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:3.320000pt;}
.y10{bottom:3.333333pt;}
.y29{bottom:3.373333pt;}
.y23{bottom:3.666667pt;}
.y50{bottom:8.000000pt;}
.y17{bottom:21.653333pt;}
.y12{bottom:21.666667pt;}
.y38{bottom:21.673333pt;}
.y28{bottom:21.706667pt;}
.y22{bottom:22.026667pt;}
.y36{bottom:22.040000pt;}
.y46{bottom:22.666667pt;}
.y2f{bottom:22.693333pt;}
.y2c{bottom:23.000000pt;}
.y4f{bottom:34.360000pt;}
.y31{bottom:40.333333pt;}
.y21{bottom:40.360000pt;}
.y33{bottom:40.373333pt;}
.y27{bottom:41.040000pt;}
.y16{bottom:41.360000pt;}
.y5a{bottom:42.333333pt;}
.y2e{bottom:42.360000pt;}
.y2b{bottom:42.666667pt;}
.y4e{bottom:52.693333pt;}
.y15{bottom:59.693333pt;}
.y20{bottom:60.026667pt;}
.y26{bottom:60.706667pt;}
.y45{bottom:61.693333pt;}
.y59{bottom:62.026667pt;}
.y4d{bottom:71.026667pt;}
.y1f{bottom:78.360000pt;}
.y25{bottom:79.040000pt;}
.y14{bottom:79.360000pt;}
.y44{bottom:81.360000pt;}
.y58{bottom:81.706667pt;}
.y4c{bottom:89.693333pt;}
.y1e{bottom:96.693333pt;}
.y54{bottom:100.040000pt;}
.y57{bottom:101.040000pt;}
.y1d{bottom:116.360000pt;}
.y53{bottom:119.706667pt;}
.y37{bottom:120.033333pt;}
.y56{bottom:120.706667pt;}
.y1c{bottom:134.720000pt;}
.y5d{bottom:136.040000pt;}
.y55{bottom:139.040000pt;}
.y52{bottom:139.373333pt;}
.y1b{bottom:153.053333pt;}
.y5c{bottom:154.706667pt;}
.y35{bottom:157.360000pt;}
.y5b{bottom:170.400000pt;}
.y1a{bottom:172.720000pt;}
.y51{bottom:207.733333pt;}
.y34{bottom:213.400000pt;}
.y73{bottom:248.400000pt;}
.y32{bottom:250.733333pt;}
.y72{bottom:285.440000pt;}
.y71{bottom:304.106667pt;}
.y30{bottom:306.773333pt;}
.y70{bottom:322.440000pt;}
.y6f{bottom:359.440000pt;}
.y4b{bottom:362.440000pt;}
.y2d{bottom:362.773333pt;}
.y6e{bottom:377.800000pt;}
.y6d{bottom:415.466667pt;}
.y2a{bottom:420.800000pt;}
.y6c{bottom:454.133333pt;}
.y4a{bottom:467.800000pt;}
.y24{bottom:479.133333pt;}
.y6b{bottom:492.173333pt;}
.y49{bottom:505.173333pt;}
.y48{bottom:524.173333pt;}
.y6a{bottom:530.840000pt;}
.y47{bottom:543.173333pt;}
.y43{bottom:562.506667pt;}
.yd{bottom:566.173333pt;}
.y69{bottom:568.506667pt;}
.y19{bottom:573.840000pt;}
.yc{bottom:603.200000pt;}
.y68{bottom:609.200000pt;}
.yb{bottom:621.533333pt;}
.y67{bottom:650.200000pt;}
.ya{bottom:658.533333pt;}
.y42{bottom:659.533333pt;}
.y9{bottom:676.866667pt;}
.y41{bottom:678.533333pt;}
.y66{bottom:690.533333pt;}
.y65{bottom:708.906667pt;}
.y8{bottom:715.893333pt;}
.y40{bottom:716.226667pt;}
.y3f{bottom:735.226667pt;}
.y64{bottom:746.560000pt;}
.y3e{bottom:754.226667pt;}
.y7{bottom:756.893333pt;}
.y13{bottom:762.240000pt;}
.y63{bottom:785.560000pt;}
.y3d{bottom:797.266667pt;}
.y6{bottom:797.600000pt;}
.y62{bottom:803.933333pt;}
.y5{bottom:815.933333pt;}
.y61{bottom:822.266667pt;}
.y3c{bottom:824.933333pt;}
.y4{bottom:834.266667pt;}
.y3{bottom:852.600000pt;}
.y11{bottom:857.266667pt;}
.y60{bottom:859.933333pt;}
.y3b{bottom:865.933333pt;}
.y3a{bottom:884.933333pt;}
.y2{bottom:893.266667pt;}
.yf{bottom:894.600000pt;}
.y5f{bottom:900.600000pt;}
.y39{bottom:922.626667pt;}
.y1{bottom:930.293333pt;}
.ye{bottom:937.626667pt;}
.y5e{bottom:941.626667pt;}
.h10{height:18.333333pt;}
.h5{height:18.366667pt;}
.h12{height:18.666667pt;}
.h6{height:36.666667pt;}
.h13{height:36.700000pt;}
.hf{height:37.033333pt;}
.h3{height:44.687500pt;}
.h2{height:45.156250pt;}
.h8{height:46.593750pt;}
.h19{height:50.800781pt;}
.h18{height:54.093750pt;}
.hd{height:55.333333pt;}
.he{height:55.366667pt;}
.hc{height:57.366667pt;}
.hb{height:57.666667pt;}
.h4{height:67.734375pt;}
.h16{height:80.502500pt;}
.h1{height:90.312500pt;}
.ha{height:94.033333pt;}
.h7{height:94.366667pt;}
.h11{height:96.366667pt;}
.h14{height:104.700000pt;}
.h15{height:125.835833pt;}
.h17{height:154.040000pt;}
.h9{height:187.733333pt;}
.h0{height:1056.000000pt;}
.w6{width:103.366667pt;}
.wc{width:103.700000pt;}
.w3{width:104.033333pt;}
.w9{width:104.366667pt;}
.wb{width:140.733333pt;}
.w8{width:141.066667pt;}
.w5{width:199.773333pt;}
.w2{width:200.106667pt;}
.w7{width:318.466667pt;}
.w4{width:318.800000pt;}
.wd{width:377.173333pt;}
.wa{width:377.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x5{left:16.000000pt;}
.xb{left:18.666667pt;}
.x9{left:31.000000pt;}
.x3{left:48.033333pt;}
.xa{left:55.026667pt;}
.x1{left:96.033321pt;}
.x7{left:125.400000pt;}
.xf{left:133.066667pt;}
.xe{left:154.400000pt;}
.x10{left:190.093333pt;}
.xc{left:237.773333pt;}
.x4{left:296.800000pt;}
.xd{left:342.133333pt;}
.x6{left:400.840000pt;}
.x2{left:720.306655pt;}
}




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