
    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_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.747559;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_a541236fd4e58a61fa417334.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_a138feadabc605452e22a08b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d2c248673594ce30e20cb549.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_03197c0ba55669b73a2a8048.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_03674503cdab78880f1442d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-6.774240px;}
._d{margin-left:-3.496320px;}
._e{margin-left:-2.105280px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._f{width:2.938320px;}
._10{width:4.886880px;}
._12{width:6.348000px;}
._1a{width:8.127360px;}
._3{width:9.540000px;}
._11{width:11.324640px;}
._1{width:12.420000px;}
._15{width:13.505760px;}
._1c{width:16.565760px;}
._14{width:17.808480px;}
._13{width:19.481760px;}
._19{width:21.394080px;}
._18{width:22.410000px;}
._1b{width:23.425920px;}
._1d{width:24.561360px;}
._2b{width:25.590960px;}
._22{width:26.832240px;}
._21{width:28.027440px;}
._1e{width:29.401920px;}
._1f{width:30.417840px;}
._2d{width:31.613040px;}
._2c{width:34.541280px;}
._2a{width:35.856000px;}
._24{width:36.871920px;}
._16{width:38.067120px;}
._17{width:39.083040px;}
._2f{width:40.098960px;}
._27{width:41.114880px;}
._26{width:42.130800px;}
._25{width:49.122720px;}
._20{width:51.572880px;}
._2e{width:52.886160px;}
._23{width:54.979200px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._28{width:153.045360px;}
._29{width:156.332160px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc6{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y2a{bottom:5.760000px;}
.y10{bottom:7.020000px;}
.y19{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y29{bottom:25.560000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y28{bottom:45.540000px;}
.yf{bottom:53.280000px;}
.y6{bottom:63.180000px;}
.y27{bottom:65.340000px;}
.yb{bottom:73.080000px;}
.y40{bottom:83.160000px;}
.y5{bottom:84.450000px;}
.y26{bottom:85.140000px;}
.y6c{bottom:88.560000px;}
.ya{bottom:92.370000px;}
.y3f{bottom:102.960000px;}
.y25{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.y6b{bottom:108.360000px;}
.y9{bottom:110.190000px;}
.y7b{bottom:112.500000px;}
.y3e{bottom:122.940000px;}
.y24{bottom:124.770000px;}
.y3{bottom:126.750000px;}
.y6a{bottom:128.160000px;}
.y7a{bottom:132.300000px;}
.y3d{bottom:142.740000px;}
.y23{bottom:144.750000px;}
.y69{bottom:147.960000px;}
.y79{bottom:152.310000px;}
.y3c{bottom:162.570000px;}
.y22{bottom:164.550000px;}
.y78{bottom:172.110000px;}
.y3b{bottom:182.370000px;}
.y21{bottom:184.350000px;}
.y77{bottom:191.910000px;}
.y3a{bottom:202.170000px;}
.y20{bottom:204.150000px;}
.y76{bottom:211.710000px;}
.y39{bottom:222.150000px;}
.y1f{bottom:223.950000px;}
.y75{bottom:231.510000px;}
.y38{bottom:241.950000px;}
.y1e{bottom:243.930000px;}
.y74{bottom:251.490000px;}
.y37{bottom:261.750000px;}
.y1d{bottom:263.730000px;}
.y73{bottom:271.290000px;}
.y36{bottom:281.550000px;}
.y1c{bottom:283.530000px;}
.y72{bottom:291.090000px;}
.y35{bottom:301.350000px;}
.y1b{bottom:303.330000px;}
.y71{bottom:310.890000px;}
.y34{bottom:321.330000px;}
.y70{bottom:330.690000px;}
.y33{bottom:341.130000px;}
.y6f{bottom:350.670000px;}
.y32{bottom:360.930000px;}
.y6e{bottom:370.470000px;}
.y31{bottom:380.730000px;}
.y6d{bottom:390.270000px;}
.y30{bottom:400.575000px;}
.y68{bottom:410.115000px;}
.y2f{bottom:420.555000px;}
.y67{bottom:429.915000px;}
.y2e{bottom:440.355000px;}
.y66{bottom:449.895000px;}
.y2d{bottom:460.155000px;}
.y65{bottom:469.695000px;}
.y2c{bottom:479.955000px;}
.y64{bottom:489.495000px;}
.y63{bottom:509.295000px;}
.y2b{bottom:514.695000px;}
.y62{bottom:529.095000px;}
.y1a{bottom:535.215000px;}
.y61{bottom:549.075000px;}
.y60{bottom:568.875000px;}
.y5f{bottom:588.675000px;}
.y5e{bottom:608.475000px;}
.y5d{bottom:628.275000px;}
.y5c{bottom:648.255000px;}
.y5b{bottom:668.085000px;}
.y5a{bottom:687.885000px;}
.y59{bottom:707.685000px;}
.y58{bottom:727.485000px;}
.y57{bottom:747.465000px;}
.y56{bottom:767.265000px;}
.y55{bottom:787.065000px;}
.y54{bottom:806.865000px;}
.y53{bottom:826.665000px;}
.y52{bottom:846.645000px;}
.y18{bottom:853.305000px;}
.y51{bottom:866.445000px;}
.y17{bottom:882.825000px;}
.y50{bottom:886.245000px;}
.y4f{bottom:906.090000px;}
.y16{bottom:907.890000px;}
.y4e{bottom:925.890000px;}
.y15{bottom:927.690000px;}
.y14{bottom:942.810000px;}
.y4d{bottom:945.870000px;}
.y13{bottom:964.230000px;}
.y4c{bottom:965.670000px;}
.y4b{bottom:985.470000px;}
.y12{bottom:987.630000px;}
.y4a{bottom:1005.270000px;}
.y11{bottom:1019.310000px;}
.y49{bottom:1025.070000px;}
.y48{bottom:1045.050000px;}
.ye{bottom:1045.410000px;}
.y47{bottom:1064.850000px;}
.y1{bottom:1067.730000px;}
.y46{bottom:1084.650000px;}
.y45{bottom:1104.450000px;}
.y44{bottom:1124.250000px;}
.y43{bottom:1144.230000px;}
.y42{bottom:1164.060000px;}
.y41{bottom:1193.400000px;}
.h3{height:1.999688px;}
.h13{height:19.800000px;}
.ha{height:22.320000px;}
.h11{height:22.860000px;}
.h10{height:34.855313px;}
.h8{height:48.410156px;}
.h4{height:53.077852px;}
.h6{height:53.573906px;}
.h9{height:55.825312px;}
.hf{height:58.833281px;}
.hb{height:59.383125px;}
.hd{height:59.439023px;}
.hc{height:60.850547px;}
.h5{height:63.949219px;}
.h7{height:64.546875px;}
.he{height:85.052461px;}
.h2{height:140.796000px;}
.h12{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.496000px;}
.w4{width:158.970000px;}
.w8{width:170.130000px;}
.w2{width:172.830000px;}
.w3{width:464.865000px;}
.w9{width:607.650000px;}
.w7{width:748.950000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.x12{left:83.879987px;}
.x13{left:88.955987px;}
.xc{left:90.216000px;}
.x15{left:108.035987px;}
.x10{left:115.595987px;}
.x7{left:140.085000px;}
.x2{left:160.050000px;}
.x14{left:200.009987px;}
.x3{left:221.070000px;}
.xe{left:227.730000px;}
.x5{left:248.295000px;}
.x11{left:412.454987px;}
.xf{left:473.504987px;}
.x8{left:685.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-6.021547pt;}
._d{margin-left:-3.107840pt;}
._e{margin-left:-1.871360pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._f{width:2.611840pt;}
._10{width:4.343893pt;}
._12{width:5.642667pt;}
._1a{width:7.224320pt;}
._3{width:8.480000pt;}
._11{width:10.066347pt;}
._1{width:11.040000pt;}
._15{width:12.005120pt;}
._1c{width:14.725120pt;}
._14{width:15.829760pt;}
._13{width:17.317120pt;}
._19{width:19.016960pt;}
._18{width:19.920000pt;}
._1b{width:20.823040pt;}
._1d{width:21.832320pt;}
._2b{width:22.747520pt;}
._22{width:23.850880pt;}
._21{width:24.913280pt;}
._1e{width:26.135040pt;}
._1f{width:27.038080pt;}
._2d{width:28.100480pt;}
._2c{width:30.703360pt;}
._2a{width:31.872000pt;}
._24{width:32.775040pt;}
._16{width:33.837440pt;}
._17{width:34.740480pt;}
._2f{width:35.643520pt;}
._27{width:36.546560pt;}
._26{width:37.449600pt;}
._25{width:43.664640pt;}
._20{width:45.842560pt;}
._2e{width:47.009920pt;}
._23{width:48.870400pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._28{width:136.040320pt;}
._29{width:138.961920pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y2a{bottom:5.120000pt;}
.y10{bottom:6.240000pt;}
.y19{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y29{bottom:22.720000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y28{bottom:40.480000pt;}
.yf{bottom:47.360000pt;}
.y6{bottom:56.160000pt;}
.y27{bottom:58.080000pt;}
.yb{bottom:64.960000pt;}
.y40{bottom:73.920000pt;}
.y5{bottom:75.066667pt;}
.y26{bottom:75.680000pt;}
.y6c{bottom:78.720000pt;}
.ya{bottom:82.106667pt;}
.y3f{bottom:91.520000pt;}
.y25{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.y6b{bottom:96.320000pt;}
.y9{bottom:97.946667pt;}
.y7b{bottom:100.000000pt;}
.y3e{bottom:109.280000pt;}
.y24{bottom:110.906667pt;}
.y3{bottom:112.666667pt;}
.y6a{bottom:113.920000pt;}
.y7a{bottom:117.600000pt;}
.y3d{bottom:126.880000pt;}
.y23{bottom:128.666667pt;}
.y69{bottom:131.520000pt;}
.y79{bottom:135.386667pt;}
.y3c{bottom:144.506667pt;}
.y22{bottom:146.266667pt;}
.y78{bottom:152.986667pt;}
.y3b{bottom:162.106667pt;}
.y21{bottom:163.866667pt;}
.y77{bottom:170.586667pt;}
.y3a{bottom:179.706667pt;}
.y20{bottom:181.466667pt;}
.y76{bottom:188.186667pt;}
.y39{bottom:197.466667pt;}
.y1f{bottom:199.066667pt;}
.y75{bottom:205.786667pt;}
.y38{bottom:215.066667pt;}
.y1e{bottom:216.826667pt;}
.y74{bottom:223.546667pt;}
.y37{bottom:232.666667pt;}
.y1d{bottom:234.426667pt;}
.y73{bottom:241.146667pt;}
.y36{bottom:250.266667pt;}
.y1c{bottom:252.026667pt;}
.y72{bottom:258.746667pt;}
.y35{bottom:267.866667pt;}
.y1b{bottom:269.626667pt;}
.y71{bottom:276.346667pt;}
.y34{bottom:285.626667pt;}
.y70{bottom:293.946667pt;}
.y33{bottom:303.226667pt;}
.y6f{bottom:311.706667pt;}
.y32{bottom:320.826667pt;}
.y6e{bottom:329.306667pt;}
.y31{bottom:338.426667pt;}
.y6d{bottom:346.906667pt;}
.y30{bottom:356.066667pt;}
.y68{bottom:364.546667pt;}
.y2f{bottom:373.826667pt;}
.y67{bottom:382.146667pt;}
.y2e{bottom:391.426667pt;}
.y66{bottom:399.906667pt;}
.y2d{bottom:409.026667pt;}
.y65{bottom:417.506667pt;}
.y2c{bottom:426.626667pt;}
.y64{bottom:435.106667pt;}
.y63{bottom:452.706667pt;}
.y2b{bottom:457.506667pt;}
.y62{bottom:470.306667pt;}
.y1a{bottom:475.746667pt;}
.y61{bottom:488.066667pt;}
.y60{bottom:505.666667pt;}
.y5f{bottom:523.266667pt;}
.y5e{bottom:540.866667pt;}
.y5d{bottom:558.466667pt;}
.y5c{bottom:576.226667pt;}
.y5b{bottom:593.853333pt;}
.y5a{bottom:611.453333pt;}
.y59{bottom:629.053333pt;}
.y58{bottom:646.653333pt;}
.y57{bottom:664.413333pt;}
.y56{bottom:682.013333pt;}
.y55{bottom:699.613333pt;}
.y54{bottom:717.213333pt;}
.y53{bottom:734.813333pt;}
.y52{bottom:752.573333pt;}
.y18{bottom:758.493333pt;}
.y51{bottom:770.173333pt;}
.y17{bottom:784.733333pt;}
.y50{bottom:787.773333pt;}
.y4f{bottom:805.413333pt;}
.y16{bottom:807.013333pt;}
.y4e{bottom:823.013333pt;}
.y15{bottom:824.613333pt;}
.y14{bottom:838.053333pt;}
.y4d{bottom:840.773333pt;}
.y13{bottom:857.093333pt;}
.y4c{bottom:858.373333pt;}
.y4b{bottom:875.973333pt;}
.y12{bottom:877.893333pt;}
.y4a{bottom:893.573333pt;}
.y11{bottom:906.053333pt;}
.y49{bottom:911.173333pt;}
.y48{bottom:928.933333pt;}
.ye{bottom:929.253333pt;}
.y47{bottom:946.533333pt;}
.y1{bottom:949.093333pt;}
.y46{bottom:964.133333pt;}
.y45{bottom:981.733333pt;}
.y44{bottom:999.333333pt;}
.y43{bottom:1017.093333pt;}
.y42{bottom:1034.720000pt;}
.y41{bottom:1060.800000pt;}
.h3{height:1.777500pt;}
.h13{height:17.600000pt;}
.ha{height:19.840000pt;}
.h11{height:20.320000pt;}
.h10{height:30.982500pt;}
.h8{height:43.031250pt;}
.h4{height:47.180312pt;}
.h6{height:47.621250pt;}
.h9{height:49.622500pt;}
.hf{height:52.296250pt;}
.hb{height:52.785000pt;}
.hd{height:52.834688pt;}
.hc{height:54.089375pt;}
.h5{height:56.843750pt;}
.h7{height:57.375000pt;}
.he{height:75.602187pt;}
.h2{height:125.152000pt;}
.h12{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.552000pt;}
.w4{width:141.306667pt;}
.w8{width:151.226667pt;}
.w2{width:153.626667pt;}
.w3{width:413.213333pt;}
.w9{width:540.133333pt;}
.w7{width:665.733333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.x12{left:74.559988pt;}
.x13{left:79.071988pt;}
.xc{left:80.192000pt;}
.x15{left:96.031988pt;}
.x10{left:102.751988pt;}
.x7{left:124.520000pt;}
.x2{left:142.266667pt;}
.x14{left:177.786655pt;}
.x3{left:196.506667pt;}
.xe{left:202.426667pt;}
.x5{left:220.706667pt;}
.x11{left:366.626655pt;}
.xf{left:420.893322pt;}
.x8{left:609.733333pt;}
}




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