
    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_69beb142adc2353dc652f6ea.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_030ff42adc846d3d4887f828.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_cdba5402c69f58073c109e39.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_75b8c056b226b8b640f79a38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.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_5b2f3a306397f16a691fa916.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:11.466720px;}
.ls7{letter-spacing:28.980000px;}
.lsf{letter-spacing:41.706720px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-3.100320px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._a{width:2.428080px;}
._2{width:4.245600px;}
._12{width:5.268480px;}
._b{width:6.287760px;}
._9{width:8.000160px;}
._11{width:9.047280px;}
._6{width:10.218960px;}
._c{width:11.653200px;}
._7{width:13.557840px;}
._e{width:16.119840px;}
._8{width:17.143440px;}
._13{width:18.309600px;}
._f{width:19.653360px;}
._10{width:20.916000px;}
._15{width:21.924240px;}
._14{width:23.545440px;}
._17{width:25.987920px;}
._16{width:27.370080px;}
._19{width:28.375680px;}
._18{width:29.859840px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.956000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.240000px;}
.yb{bottom:35.640000px;}
.ya{bottom:53.280000px;}
.y9{bottom:68.760000px;}
.y7b{bottom:120.276000px;}
.y58{bottom:128.376000px;}
.y7a{bottom:143.676000px;}
.y32{bottom:147.276000px;}
.y57{bottom:151.770000px;}
.y79{bottom:167.070000px;}
.y31{bottom:170.670000px;}
.y56{bottom:175.170000px;}
.y78{bottom:190.470000px;}
.y30{bottom:194.070000px;}
.y55{bottom:198.570000px;}
.y77{bottom:213.870000px;}
.y2f{bottom:217.470000px;}
.y54{bottom:221.970000px;}
.y76{bottom:237.270000px;}
.y2e{bottom:240.870000px;}
.y53{bottom:245.370000px;}
.y75{bottom:260.670000px;}
.y2d{bottom:264.270000px;}
.y52{bottom:268.770000px;}
.y74{bottom:284.070000px;}
.y2c{bottom:287.670000px;}
.y51{bottom:292.170000px;}
.y73{bottom:307.470000px;}
.y2b{bottom:311.070000px;}
.y50{bottom:315.570000px;}
.y72{bottom:330.870000px;}
.y2a{bottom:334.470000px;}
.y4f{bottom:339.015000px;}
.y71{bottom:354.315000px;}
.y29{bottom:357.915000px;}
.y4e{bottom:362.415000px;}
.y70{bottom:377.715000px;}
.y28{bottom:383.475000px;}
.y4d{bottom:385.815000px;}
.y6f{bottom:401.115000px;}
.y27{bottom:406.875000px;}
.y4c{bottom:409.215000px;}
.y6e{bottom:424.515000px;}
.y26{bottom:430.275000px;}
.y4b{bottom:432.615000px;}
.y6d{bottom:447.915000px;}
.y25{bottom:453.675000px;}
.y4a{bottom:456.015000px;}
.y6c{bottom:471.315000px;}
.y24{bottom:477.075000px;}
.y49{bottom:479.415000px;}
.y6b{bottom:494.715000px;}
.y23{bottom:500.475000px;}
.y48{bottom:502.815000px;}
.y6a{bottom:518.115000px;}
.y22{bottom:523.875000px;}
.y47{bottom:526.215000px;}
.y69{bottom:541.515000px;}
.y21{bottom:547.275000px;}
.y46{bottom:549.615000px;}
.y68{bottom:564.915000px;}
.y20{bottom:570.675000px;}
.y45{bottom:573.015000px;}
.y67{bottom:588.315000px;}
.y1f{bottom:594.075000px;}
.y44{bottom:596.415000px;}
.y66{bottom:611.745000px;}
.y1e{bottom:617.505000px;}
.y43{bottom:619.845000px;}
.y65{bottom:635.145000px;}
.y1d{bottom:640.905000px;}
.y42{bottom:643.245000px;}
.y64{bottom:658.545000px;}
.y1c{bottom:664.305000px;}
.y41{bottom:666.645000px;}
.y7c{bottom:669.345000px;}
.y63{bottom:681.945000px;}
.y1b{bottom:687.705000px;}
.y40{bottom:690.045000px;}
.y62{bottom:705.345000px;}
.y1a{bottom:711.105000px;}
.y3f{bottom:713.445000px;}
.y61{bottom:728.745000px;}
.y19{bottom:734.505000px;}
.y3e{bottom:736.845000px;}
.y60{bottom:752.145000px;}
.y18{bottom:757.905000px;}
.y59{bottom:759.345000px;}
.y3d{bottom:760.245000px;}
.y5f{bottom:775.545000px;}
.y17{bottom:781.305000px;}
.y3c{bottom:783.645000px;}
.y5e{bottom:798.945000px;}
.y16{bottom:804.705000px;}
.y3b{bottom:807.045000px;}
.y5d{bottom:816.945000px;}
.y15{bottom:828.105000px;}
.y3a{bottom:830.445000px;}
.y5c{bottom:834.945000px;}
.y14{bottom:851.505000px;}
.y5a{bottom:852.945000px;}
.y39{bottom:853.845000px;}
.y13{bottom:874.950000px;}
.y38{bottom:877.290000px;}
.y12{bottom:900.690000px;}
.y11{bottom:923.550000px;}
.y37{bottom:924.090000px;}
.y10{bottom:946.950000px;}
.y36{bottom:947.490000px;}
.yf{bottom:970.350000px;}
.y35{bottom:970.890000px;}
.ye{bottom:994.290000px;}
.yd{bottom:1016.610000px;}
.y34{bottom:1017.690000px;}
.yc{bottom:1040.010000px;}
.y33{bottom:1041.090000px;}
.y8{bottom:1061.610000px;}
.y7{bottom:1079.070000px;}
.y6{bottom:1094.910000px;}
.y5{bottom:1112.910000px;}
.y4{bottom:1129.830000px;}
.y3{bottom:1170.540000px;}
.y2{bottom:1188.360000px;}
.y1{bottom:1205.640000px;}
.ha{height:17.100000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.302656px;}
.hc{height:43.506914px;}
.hb{height:43.681992px;}
.h3{height:44.240625px;}
.h8{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:50.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:136.080000px;}
.w3{width:136.440000px;}
.w5{width:152.310000px;}
.w4{width:159.690000px;}
.w6{width:166.350000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x19{left:135.035987px;}
.x4{left:157.169987px;}
.x10{left:172.649987px;}
.xd{left:195.689987px;}
.xc{left:213.869987px;}
.x16{left:243.929987px;}
.x12{left:245.370000px;}
.x15{left:268.229987px;}
.xf{left:300.494987px;}
.x11{left:312.734987px;}
.x7{left:330.914987px;}
.xb{left:335.234987px;}
.x9{left:362.594987px;}
.xa{left:380.054987px;}
.x18{left:388.154987px;}
.x6{left:396.434987px;}
.x13{left:405.795000px;}
.x5{left:412.274987px;}
.x8{left:446.474987px;}
.x3{left:518.324987px;}
.x14{left:558.825000px;}
.xe{left:667.049987px;}
.x17{left:730.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:10.192640pt;}
.ls7{letter-spacing:25.760000pt;}
.lsf{letter-spacing:37.072640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-2.755840pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._a{width:2.158293pt;}
._2{width:3.773867pt;}
._12{width:4.683093pt;}
._b{width:5.589120pt;}
._9{width:7.111253pt;}
._11{width:8.042027pt;}
._6{width:9.083520pt;}
._c{width:10.358400pt;}
._7{width:12.051413pt;}
._e{width:14.328747pt;}
._8{width:15.238613pt;}
._13{width:16.275200pt;}
._f{width:17.469653pt;}
._10{width:18.592000pt;}
._15{width:19.488213pt;}
._14{width:20.929280pt;}
._17{width:23.100373pt;}
._16{width:24.328960pt;}
._19{width:25.222827pt;}
._18{width:26.542080pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.738667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.880000pt;}
.yb{bottom:31.680000pt;}
.ya{bottom:47.360000pt;}
.y9{bottom:61.120000pt;}
.y7b{bottom:106.912000pt;}
.y58{bottom:114.112000pt;}
.y7a{bottom:127.712000pt;}
.y32{bottom:130.912000pt;}
.y57{bottom:134.906667pt;}
.y79{bottom:148.506667pt;}
.y31{bottom:151.706667pt;}
.y56{bottom:155.706667pt;}
.y78{bottom:169.306667pt;}
.y30{bottom:172.506667pt;}
.y55{bottom:176.506667pt;}
.y77{bottom:190.106667pt;}
.y2f{bottom:193.306667pt;}
.y54{bottom:197.306667pt;}
.y76{bottom:210.906667pt;}
.y2e{bottom:214.106667pt;}
.y53{bottom:218.106667pt;}
.y75{bottom:231.706667pt;}
.y2d{bottom:234.906667pt;}
.y52{bottom:238.906667pt;}
.y74{bottom:252.506667pt;}
.y2c{bottom:255.706667pt;}
.y51{bottom:259.706667pt;}
.y73{bottom:273.306667pt;}
.y2b{bottom:276.506667pt;}
.y50{bottom:280.506667pt;}
.y72{bottom:294.106667pt;}
.y2a{bottom:297.306667pt;}
.y4f{bottom:301.346667pt;}
.y71{bottom:314.946667pt;}
.y29{bottom:318.146667pt;}
.y4e{bottom:322.146667pt;}
.y70{bottom:335.746667pt;}
.y28{bottom:340.866667pt;}
.y4d{bottom:342.946667pt;}
.y6f{bottom:356.546667pt;}
.y27{bottom:361.666667pt;}
.y4c{bottom:363.746667pt;}
.y6e{bottom:377.346667pt;}
.y26{bottom:382.466667pt;}
.y4b{bottom:384.546667pt;}
.y6d{bottom:398.146667pt;}
.y25{bottom:403.266667pt;}
.y4a{bottom:405.346667pt;}
.y6c{bottom:418.946667pt;}
.y24{bottom:424.066667pt;}
.y49{bottom:426.146667pt;}
.y6b{bottom:439.746667pt;}
.y23{bottom:444.866667pt;}
.y48{bottom:446.946667pt;}
.y6a{bottom:460.546667pt;}
.y22{bottom:465.666667pt;}
.y47{bottom:467.746667pt;}
.y69{bottom:481.346667pt;}
.y21{bottom:486.466667pt;}
.y46{bottom:488.546667pt;}
.y68{bottom:502.146667pt;}
.y20{bottom:507.266667pt;}
.y45{bottom:509.346667pt;}
.y67{bottom:522.946667pt;}
.y1f{bottom:528.066667pt;}
.y44{bottom:530.146667pt;}
.y66{bottom:543.773333pt;}
.y1e{bottom:548.893333pt;}
.y43{bottom:550.973333pt;}
.y65{bottom:564.573333pt;}
.y1d{bottom:569.693333pt;}
.y42{bottom:571.773333pt;}
.y64{bottom:585.373333pt;}
.y1c{bottom:590.493333pt;}
.y41{bottom:592.573333pt;}
.y7c{bottom:594.973333pt;}
.y63{bottom:606.173333pt;}
.y1b{bottom:611.293333pt;}
.y40{bottom:613.373333pt;}
.y62{bottom:626.973333pt;}
.y1a{bottom:632.093333pt;}
.y3f{bottom:634.173333pt;}
.y61{bottom:647.773333pt;}
.y19{bottom:652.893333pt;}
.y3e{bottom:654.973333pt;}
.y60{bottom:668.573333pt;}
.y18{bottom:673.693333pt;}
.y59{bottom:674.973333pt;}
.y3d{bottom:675.773333pt;}
.y5f{bottom:689.373333pt;}
.y17{bottom:694.493333pt;}
.y3c{bottom:696.573333pt;}
.y5e{bottom:710.173333pt;}
.y16{bottom:715.293333pt;}
.y3b{bottom:717.373333pt;}
.y5d{bottom:726.173333pt;}
.y15{bottom:736.093333pt;}
.y3a{bottom:738.173333pt;}
.y5c{bottom:742.173333pt;}
.y14{bottom:756.893333pt;}
.y5a{bottom:758.173333pt;}
.y39{bottom:758.973333pt;}
.y13{bottom:777.733333pt;}
.y38{bottom:779.813333pt;}
.y12{bottom:800.613333pt;}
.y11{bottom:820.933333pt;}
.y37{bottom:821.413333pt;}
.y10{bottom:841.733333pt;}
.y36{bottom:842.213333pt;}
.yf{bottom:862.533333pt;}
.y35{bottom:863.013333pt;}
.ye{bottom:883.813333pt;}
.yd{bottom:903.653333pt;}
.y34{bottom:904.613333pt;}
.yc{bottom:924.453333pt;}
.y33{bottom:925.413333pt;}
.y8{bottom:943.653333pt;}
.y7{bottom:959.173333pt;}
.y6{bottom:973.253333pt;}
.y5{bottom:989.253333pt;}
.y4{bottom:1004.293333pt;}
.y3{bottom:1040.480000pt;}
.y2{bottom:1056.320000pt;}
.y1{bottom:1071.680000pt;}
.ha{height:15.200000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.491250pt;}
.hc{height:38.672812pt;}
.hb{height:38.828437pt;}
.h3{height:39.325000pt;}
.h8{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:45.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:120.960000pt;}
.w3{width:121.280000pt;}
.w5{width:135.386667pt;}
.w4{width:141.946667pt;}
.w6{width:147.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x19{left:120.031988pt;}
.x4{left:139.706655pt;}
.x10{left:153.466655pt;}
.xd{left:173.946655pt;}
.xc{left:190.106655pt;}
.x16{left:216.826655pt;}
.x12{left:218.106667pt;}
.x15{left:238.426655pt;}
.xf{left:267.106655pt;}
.x11{left:277.986655pt;}
.x7{left:294.146655pt;}
.xb{left:297.986655pt;}
.x9{left:322.306655pt;}
.xa{left:337.826655pt;}
.x18{left:345.026655pt;}
.x6{left:352.386655pt;}
.x13{left:360.706667pt;}
.x5{left:366.466655pt;}
.x8{left:396.866655pt;}
.x3{left:460.733322pt;}
.x14{left:496.733333pt;}
.xe{left:592.933322pt;}
.x17{left:649.733322pt;}
}




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