
    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_da430957caaf3a7b74bfef26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_02fa763315cc64c2459433e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_22755087d00561d0b6df8410.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_61116170f71a975a6d549837.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f08bb92d0aceb0f63721920c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_752e9cd587fb13d3a0b64658.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b6d9711b2194450235e1acb7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9a658ad387a7c9208c292980.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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:ff9;src:url('chunks/assets/font_02f3e6320474ae67117e62ad.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f27f923964d7c6e85c64bfa2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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;}
.ls8{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:23.580000px;}
.ls6{letter-spacing:129.221280px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws1{word-spacing:-19.800000px;}
.ws0{word-spacing:-19.620000px;}
.ws2{word-spacing:-14.970240px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-6.065280px;}
._3{margin-left:-4.546320px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.121760px;}
._2{width:1.446240px;}
._6{width:3.560400px;}
._9{width:5.391360px;}
._a{width:7.076160px;}
._5{width:8.424000px;}
._15{width:9.621120px;}
._14{width:16.342560px;}
._8{width:17.353440px;}
._7{width:18.532800px;}
._c{width:22.771440px;}
._17{width:24.224640px;}
._1b{width:25.945920px;}
._f{width:28.162800px;}
._16{width:30.242160px;}
._10{width:32.095440px;}
._11{width:33.201360px;}
._b{width:34.474080px;}
._e{width:39.703680px;}
._1c{width:40.790400px;}
._1a{width:42.284160px;}
._d{width:43.467840px;}
._18{width:46.584720px;}
._19{width:47.620560px;}
._12{width:48.690720px;}
._13{width:49.870080px;}
._23{width:94.795200px;}
._24{width:97.231200px;}
._21{width:118.887840px;}
._22{width:120.561360px;}
._1f{width:155.273040px;}
._1d{width:156.317040px;}
._1e{width:157.472880px;}
._20{width:288.522000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y4b{bottom:8.100000px;}
.y33{bottom:8.280000px;}
.y40{bottom:8.325000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y4a{bottom:35.820000px;}
.y32{bottom:36.000000px;}
.y3f{bottom:36.045000px;}
.y70{bottom:58.320000px;}
.y49{bottom:63.540000px;}
.y39{bottom:63.720000px;}
.y3e{bottom:63.765000px;}
.y30{bottom:65.700000px;}
.y2{bottom:72.720000px;}
.y46{bottom:81.720000px;}
.y45{bottom:91.440000px;}
.y38{bottom:91.470000px;}
.y3d{bottom:91.665000px;}
.y2f{bottom:93.600000px;}
.y6f{bottom:94.500000px;}
.y6e{bottom:118.620000px;}
.y48{bottom:119.160000px;}
.y44{bottom:119.340000px;}
.y37{bottom:119.370000px;}
.y3c{bottom:119.385000px;}
.y2e{bottom:121.320000px;}
.y6d{bottom:142.740000px;}
.y47{bottom:146.910000px;}
.y43{bottom:147.060000px;}
.y36{bottom:147.090000px;}
.y3b{bottom:147.105000px;}
.y2d{bottom:149.040000px;}
.y6c{bottom:166.860000px;}
.y42{bottom:174.780000px;}
.y35{bottom:174.810000px;}
.y2c{bottom:176.760000px;}
.y6b{bottom:190.980000px;}
.y2b{bottom:204.660000px;}
.y6a{bottom:215.130000px;}
.y2a{bottom:232.410000px;}
.y69{bottom:239.430000px;}
.y41{bottom:248.970000px;}
.y29{bottom:260.130000px;}
.y68{bottom:263.550000px;}
.y67{bottom:287.670000px;}
.y28{bottom:288.030000px;}
.y66{bottom:311.790000px;}
.y27{bottom:315.750000px;}
.y65{bottom:335.910000px;}
.y26{bottom:343.470000px;}
.y64{bottom:360.030000px;}
.y25{bottom:371.190000px;}
.y63{bottom:384.330000px;}
.y24{bottom:399.090000px;}
.y62{bottom:408.450000px;}
.y23{bottom:426.810000px;}
.y61{bottom:432.570000px;}
.y3a{bottom:444.090000px;}
.y22{bottom:454.575000px;}
.y60{bottom:456.735000px;}
.y5f{bottom:480.855000px;}
.y21{bottom:482.475000px;}
.y5e{bottom:508.575000px;}
.y20{bottom:510.195000px;}
.y5d{bottom:536.475000px;}
.y1f{bottom:537.915000px;}
.y5c{bottom:564.195000px;}
.y1e{bottom:565.635000px;}
.y5b{bottom:591.915000px;}
.y1d{bottom:593.535000px;}
.y34{bottom:611.535000px;}
.y5a{bottom:619.815000px;}
.y1c{bottom:621.255000px;}
.y59{bottom:647.535000px;}
.y1b{bottom:648.975000px;}
.y58{bottom:675.255000px;}
.y1a{bottom:676.695000px;}
.y57{bottom:703.005000px;}
.y19{bottom:704.625000px;}
.y56{bottom:730.905000px;}
.y18{bottom:732.345000px;}
.y55{bottom:758.625000px;}
.y17{bottom:760.065000px;}
.y54{bottom:786.345000px;}
.y16{bottom:787.965000px;}
.y31{bottom:806.685000px;}
.y53{bottom:814.245000px;}
.y15{bottom:815.685000px;}
.y52{bottom:841.965000px;}
.y14{bottom:843.405000px;}
.y51{bottom:869.685000px;}
.y13{bottom:871.125000px;}
.y50{bottom:897.405000px;}
.y12{bottom:899.025000px;}
.y4f{bottom:925.350000px;}
.y11{bottom:926.790000px;}
.y4e{bottom:953.070000px;}
.y10{bottom:954.510000px;}
.y4d{bottom:980.790000px;}
.yf{bottom:982.410000px;}
.y4c{bottom:1001.130000px;}
.ye{bottom:1010.130000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.hd{height:55.620000px;}
.h8{height:58.651172px;}
.ha{height:59.066719px;}
.hc{height:59.436914px;}
.h6{height:65.884219px;}
.h4{height:75.849609px;}
.hb{height:82.676953px;}
.h9{height:84.898125px;}
.h13{height:86.585445px;}
.h2{height:92.340000px;}
.h12{height:111.060000px;}
.h11{height:166.530000px;}
.hf{height:166.710000px;}
.h10{height:194.400000px;}
.he{height:194.430000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:36.576000px;}
.w4{width:64.800000px;}
.w7{width:161.850000px;}
.wa{width:165.450000px;}
.w9{width:196.410000px;}
.w3{width:207.255000px;}
.w8{width:211.350000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x10{left:7.740000px;}
.x4{left:62.280000px;}
.x7{left:63.899987px;}
.xd{left:72.899987px;}
.x11{left:101.916000px;}
.x1{left:137.736000px;}
.x8{left:153.209987px;}
.xa{left:229.709987px;}
.x12{left:264.675000px;}
.xc{left:274.214987px;}
.xb{left:323.894987px;}
.x15{left:333.254987px;}
.x2{left:340.269000px;}
.x9{left:452.084987px;}
.x13{left:476.745000px;}
.x14{left:673.890000px;}
.x5{left:752.580000px;}
.xf{left:766.619987px;}
.xe{left:840.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:20.960000pt;}
.ls6{letter-spacing:114.863360pt;}
.ws6{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.600000pt;}
.ws0{word-spacing:-17.440000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-5.391360pt;}
._3{margin-left:-4.041173pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-0.997120pt;}
._2{width:1.285547pt;}
._6{width:3.164800pt;}
._9{width:4.792320pt;}
._a{width:6.289920pt;}
._5{width:7.488000pt;}
._15{width:8.552107pt;}
._14{width:14.526720pt;}
._8{width:15.425280pt;}
._7{width:16.473600pt;}
._c{width:20.241280pt;}
._17{width:21.533013pt;}
._1b{width:23.063040pt;}
._f{width:25.033600pt;}
._16{width:26.881920pt;}
._10{width:28.529280pt;}
._11{width:29.512320pt;}
._b{width:30.643627pt;}
._e{width:35.292160pt;}
._1c{width:36.258133pt;}
._1a{width:37.585920pt;}
._d{width:38.638080pt;}
._18{width:41.408640pt;}
._19{width:42.329387pt;}
._12{width:43.280640pt;}
._13{width:44.328960pt;}
._23{width:84.262400pt;}
._24{width:86.427733pt;}
._21{width:105.678080pt;}
._22{width:107.165653pt;}
._1f{width:138.020480pt;}
._1d{width:138.948480pt;}
._1e{width:139.975893pt;}
._20{width:256.464000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y4b{bottom:7.200000pt;}
.y33{bottom:7.360000pt;}
.y40{bottom:7.400000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y4a{bottom:31.840000pt;}
.y32{bottom:32.000000pt;}
.y3f{bottom:32.040000pt;}
.y70{bottom:51.840000pt;}
.y49{bottom:56.480000pt;}
.y39{bottom:56.640000pt;}
.y3e{bottom:56.680000pt;}
.y30{bottom:58.400000pt;}
.y2{bottom:64.640000pt;}
.y46{bottom:72.640000pt;}
.y45{bottom:81.280000pt;}
.y38{bottom:81.306667pt;}
.y3d{bottom:81.480000pt;}
.y2f{bottom:83.200000pt;}
.y6f{bottom:84.000000pt;}
.y6e{bottom:105.440000pt;}
.y48{bottom:105.920000pt;}
.y44{bottom:106.080000pt;}
.y37{bottom:106.106667pt;}
.y3c{bottom:106.120000pt;}
.y2e{bottom:107.840000pt;}
.y6d{bottom:126.880000pt;}
.y47{bottom:130.586667pt;}
.y43{bottom:130.720000pt;}
.y36{bottom:130.746667pt;}
.y3b{bottom:130.760000pt;}
.y2d{bottom:132.480000pt;}
.y6c{bottom:148.320000pt;}
.y42{bottom:155.360000pt;}
.y35{bottom:155.386667pt;}
.y2c{bottom:157.120000pt;}
.y6b{bottom:169.760000pt;}
.y2b{bottom:181.920000pt;}
.y6a{bottom:191.226667pt;}
.y2a{bottom:206.586667pt;}
.y69{bottom:212.826667pt;}
.y41{bottom:221.306667pt;}
.y29{bottom:231.226667pt;}
.y68{bottom:234.266667pt;}
.y67{bottom:255.706667pt;}
.y28{bottom:256.026667pt;}
.y66{bottom:277.146667pt;}
.y27{bottom:280.666667pt;}
.y65{bottom:298.586667pt;}
.y26{bottom:305.306667pt;}
.y64{bottom:320.026667pt;}
.y25{bottom:329.946667pt;}
.y63{bottom:341.626667pt;}
.y24{bottom:354.746667pt;}
.y62{bottom:363.066667pt;}
.y23{bottom:379.386667pt;}
.y61{bottom:384.506667pt;}
.y3a{bottom:394.746667pt;}
.y22{bottom:404.066667pt;}
.y60{bottom:405.986667pt;}
.y5f{bottom:427.426667pt;}
.y21{bottom:428.866667pt;}
.y5e{bottom:452.066667pt;}
.y20{bottom:453.506667pt;}
.y5d{bottom:476.866667pt;}
.y1f{bottom:478.146667pt;}
.y5c{bottom:501.506667pt;}
.y1e{bottom:502.786667pt;}
.y5b{bottom:526.146667pt;}
.y1d{bottom:527.586667pt;}
.y34{bottom:543.586667pt;}
.y5a{bottom:550.946667pt;}
.y1c{bottom:552.226667pt;}
.y59{bottom:575.586667pt;}
.y1b{bottom:576.866667pt;}
.y58{bottom:600.226667pt;}
.y1a{bottom:601.506667pt;}
.y57{bottom:624.893333pt;}
.y19{bottom:626.333333pt;}
.y56{bottom:649.693333pt;}
.y18{bottom:650.973333pt;}
.y55{bottom:674.333333pt;}
.y17{bottom:675.613333pt;}
.y54{bottom:698.973333pt;}
.y16{bottom:700.413333pt;}
.y31{bottom:717.053333pt;}
.y53{bottom:723.773333pt;}
.y15{bottom:725.053333pt;}
.y52{bottom:748.413333pt;}
.y14{bottom:749.693333pt;}
.y51{bottom:773.053333pt;}
.y13{bottom:774.333333pt;}
.y50{bottom:797.693333pt;}
.y12{bottom:799.133333pt;}
.y4f{bottom:822.533333pt;}
.y11{bottom:823.813333pt;}
.y4e{bottom:847.173333pt;}
.y10{bottom:848.453333pt;}
.y4d{bottom:871.813333pt;}
.yf{bottom:873.253333pt;}
.y4c{bottom:889.893333pt;}
.ye{bottom:897.893333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.hd{height:49.440000pt;}
.h8{height:52.134375pt;}
.ha{height:52.503750pt;}
.hc{height:52.832812pt;}
.h6{height:58.563750pt;}
.h4{height:67.421875pt;}
.hb{height:73.490625pt;}
.h9{height:75.465000pt;}
.h13{height:76.964840pt;}
.h2{height:82.080000pt;}
.h12{height:98.720000pt;}
.h11{height:148.026667pt;}
.hf{height:148.186667pt;}
.h10{height:172.800000pt;}
.he{height:172.826667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:32.512000pt;}
.w4{width:57.600000pt;}
.w7{width:143.866667pt;}
.wa{width:147.066667pt;}
.w9{width:174.586667pt;}
.w3{width:184.226667pt;}
.w8{width:187.866667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x10{left:6.880000pt;}
.x4{left:55.360000pt;}
.x7{left:56.799988pt;}
.xd{left:64.799988pt;}
.x11{left:90.592000pt;}
.x1{left:122.432000pt;}
.x8{left:136.186655pt;}
.xa{left:204.186655pt;}
.x12{left:235.266667pt;}
.xc{left:243.746655pt;}
.xb{left:287.906655pt;}
.x15{left:296.226655pt;}
.x2{left:302.461333pt;}
.x9{left:401.853321pt;}
.x13{left:423.773333pt;}
.x14{left:599.013333pt;}
.x5{left:668.960000pt;}
.xf{left:681.439988pt;}
.xe{left:746.879988pt;}
}




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