
    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_dc0bed6a6269d097cf8db47b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_ea5eb2b8ef1a3db237d7a822.woff')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_a6a3fa12f5f19c0ffd9d3590.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_97991a7f18a5aa0e04067ef0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972168;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_d8310a764b91f89cf51b03bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_4a94af99077fd034321ff067.woff')format("woff");}.ff6{font-family:ff6;line-height:1.021000;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_bf423493fd4224a6a9d99c6e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_a18429cfdece8e978c2d80ad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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;}
.m2{transform:matrix(0.216730,-0.124625,0.124622,0.216724,0,0);-ms-transform:matrix(0.216730,-0.124625,0.124622,0.216724,0,0);-webkit-transform:matrix(0.216730,-0.124625,0.124622,0.216724,0,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(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-34.200000px;}
.v2{vertical-align:-26.022000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017270px;}
.ls4{letter-spacing:0.028981px;}
.ls5{letter-spacing:0.042400px;}
.ls6{letter-spacing:0.042879px;}
.ls1{letter-spacing:0.053307px;}
.ls3{letter-spacing:0.065238px;}
.lse{letter-spacing:0.084000px;}
.lsd{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.126405px;}
.lsc{letter-spacing:19.141217px;}
.lsa{letter-spacing:24.858423px;}
.lsb{letter-spacing:24.864422px;}
.ls8{letter-spacing:63.420252px;}
.ls9{letter-spacing:63.426252px;}
.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:-104.192400px;}
.ws0{word-spacing:-33.261606px;}
.ws5{word-spacing:-28.098720px;}
.ws2{word-spacing:-16.558812px;}
.ws9{word-spacing:-0.074346px;}
.ws3{word-spacing:-0.004722px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:12.739065px;}
.wsc{word-spacing:12.902385px;}
.ws8{word-spacing:12.908384px;}
.wsf{word-spacing:21.708071px;}
.wsa{word-spacing:30.311580px;}
.wsb{word-spacing:31.460104px;}
.ws12{word-spacing:35.103543px;}
.ws10{word-spacing:43.024746px;}
.ws7{word-spacing:47.336814px;}
.wse{word-spacing:66.712340px;}
.wsd{word-spacing:82.574897px;}
.ws4{word-spacing:257.393299px;}
._f{margin-left:-26.635936px;}
._12{margin-left:-20.918730px;}
._0{margin-left:-6.484212px;}
._7{margin-left:-5.288009px;}
._9{margin-left:-3.717300px;}
._2{margin-left:-2.089440px;}
._10{margin-left:-1.072950px;}
._1{width:1.080702px;}
._b{width:2.230380px;}
._5{width:3.370517px;}
._a{width:4.542858px;}
._3{width:12.948255px;}
._4{width:48.844589px;}
._6{width:100.775913px;}
._8{width:157.794172px;}
._c{width:210.498609px;}
._d{width:256.339705px;}
._e{width:307.898006px;}
._11{width:359.199058px;}
.fc6{color:rgb(100,74,155);}
.fc5{color:rgb(0,87,174);}
.fc4{color:transparent;}
.fc3{color:rgb(11,121,131);}
.fc2{color:rgb(44,44,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:4.722000px;}
.fs7{font-size:13.218000px;}
.fs8{font-size:19.830000px;}
.fsb{font-size:23.460000px;}
.fs6{font-size:23.478000px;}
.fs3{font-size:25.236000px;}
.fsd{font-size:30.072000px;}
.fse{font-size:48.642000px;}
.fsa{font-size:51.642000px;}
.fs5{font-size:52.236000px;}
.fs4{font-size:54.042000px;}
.fs12{font-size:74.346000px;}
.fsf{font-size:108.000000px;}
.fsc{font-size:108.072000px;}
.fs11{font-size:110.418000px;}
.fs1{font-size:120.078000px;}
.fs0{font-size:192.018000px;}
.fs2{font-size:263.964000px;}
.fs10{font-size:400.740000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y26{bottom:6.597000px;}
.y3d{bottom:12.810000px;}
.y24{bottom:21.684000px;}
.y2e{bottom:23.470500px;}
.y3c{bottom:35.685000px;}
.y25{bottom:38.253000px;}
.y3b{bottom:58.561500px;}
.y2d{bottom:62.206500px;}
.y2f{bottom:76.407000px;}
.y3a{bottom:81.436500px;}
.y39{bottom:104.311500px;}
.ya{bottom:116.887500px;}
.y10{bottom:126.430500px;}
.y38{bottom:127.188000px;}
.y9{bottom:134.067000px;}
.y8{bottom:144.595500px;}
.yf{bottom:146.125500px;}
.y2c{bottom:146.182500px;}
.y37{bottom:150.063000px;}
.ye{bottom:161.865000px;}
.yb{bottom:172.056000px;}
.y36{bottom:172.938000px;}
.y5{bottom:177.774000px;}
.y41{bottom:186.108000px;}
.y35{bottom:195.814500px;}
.y23{bottom:215.319000px;}
.y1f{bottom:216.331500px;}
.y34{bottom:218.689500px;}
.y2b{bottom:219.358500px;}
.y1e{bottom:224.784000px;}
.y4{bottom:231.774000px;}
.y33{bottom:241.566000px;}
.y32{bottom:264.441000px;}
.y2a{bottom:264.600000px;}
.y40{bottom:280.672500px;}
.y6{bottom:285.774000px;}
.y31{bottom:287.316000px;}
.y22{bottom:309.330000px;}
.y30{bottom:310.192500px;}
.y1d{bottom:330.760500px;}
.y1c{bottom:342.364500px;}
.y16{bottom:350.959500px;}
.y29{bottom:352.870500px;}
.y1b{bottom:354.052500px;}
.y14{bottom:364.902000px;}
.y13{bottom:369.012000px;}
.y1a{bottom:369.439500px;}
.y3f{bottom:375.789000px;}
.y12{bottom:377.275500px;}
.y19{bottom:383.367000px;}
.y15{bottom:389.853000px;}
.y28{bottom:391.606500px;}
.y3{bottom:398.749500px;}
.yd{bottom:399.567000px;}
.y21{bottom:403.341000px;}
.y11{bottom:408.735000px;}
.y18{bottom:409.905000px;}
.yc{bottom:415.306500px;}
.y17{bottom:430.110000px;}
.y27{bottom:430.341000px;}
.y2{bottom:452.578500px;}
.y20{bottom:479.154000px;}
.y7{bottom:491.910000px;}
.y3e{bottom:504.666000px;}
.hc{height:3.842137px;}
.ha{height:10.111770px;}
.hb{height:15.169950px;}
.he{height:17.946900px;}
.h9{height:17.960670px;}
.h6{height:19.173445px;}
.h10{height:23.005080px;}
.hd{height:39.506130px;}
.h8{height:39.687117px;}
.h7{height:41.059254px;}
.h11{height:52.235813px;}
.h19{height:56.200687px;}
.h18{height:56.874690px;}
.h16{height:78.257812px;}
.hf{height:82.675080px;}
.h15{height:83.808000px;}
.h14{height:84.469770px;}
.h4{height:87.009645px;}
.h12{height:114.462000px;}
.h3{height:139.138043px;}
.h5{height:191.270789px;}
.h13{height:306.566100px;}
.h17{height:504.877500px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w3{width:729.000000px;}
.w4{width:935.347500px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x23{left:-42.988500px;}
.x0{left:0.000000px;}
.x26{left:64.630500px;}
.x1f{left:88.866000px;}
.x19{left:95.881500px;}
.x2{left:104.046000px;}
.x22{left:108.765000px;}
.x20{left:142.866000px;}
.x1b{left:162.000000px;}
.x1a{left:172.630500px;}
.x1c{left:199.044000px;}
.x1d{left:206.287500px;}
.x21{left:250.101000px;}
.xd{left:281.703000px;}
.x1e{left:284.925000px;}
.xc{left:288.253500px;}
.x6{left:301.507500px;}
.x1{left:307.204500px;}
.xb{left:308.247000px;}
.xa{left:317.011500px;}
.x5{left:372.472500px;}
.x24{left:426.345000px;}
.x25{left:437.400000px;}
.xe{left:492.022500px;}
.x12{left:501.372000px;}
.x14{left:507.634500px;}
.x10{left:514.297500px;}
.xf{left:516.271500px;}
.x11{left:526.330500px;}
.x18{left:528.940500px;}
.x13{left:532.234500px;}
.x15{left:641.382000px;}
.x17{left:684.982500px;}
.x16{left:698.718000px;}
.x9{left:715.830000px;}
.x8{left:728.419500px;}
.x7{left:739.291500px;}
.x3{left:810.255000px;}
.x4{left:845.292000px;}
@media print{
.v1{vertical-align:-30.400000pt;}
.v2{vertical-align:-23.130667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015351pt;}
.ls4{letter-spacing:0.025761pt;}
.ls5{letter-spacing:0.037689pt;}
.ls6{letter-spacing:0.038115pt;}
.ls1{letter-spacing:0.047384pt;}
.ls3{letter-spacing:0.057990pt;}
.lse{letter-spacing:0.074667pt;}
.lsd{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.112360pt;}
.lsc{letter-spacing:17.014415pt;}
.lsa{letter-spacing:22.096376pt;}
.lsb{letter-spacing:22.101709pt;}
.ls8{letter-spacing:56.373557pt;}
.ls9{letter-spacing:56.378891pt;}
.ws6{word-spacing:-92.615467pt;}
.ws0{word-spacing:-29.565872pt;}
.ws5{word-spacing:-24.976640pt;}
.ws2{word-spacing:-14.718944pt;}
.ws9{word-spacing:-0.066085pt;}
.ws3{word-spacing:-0.004197pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:11.323613pt;}
.wsc{word-spacing:11.468787pt;}
.ws8{word-spacing:11.474119pt;}
.wsf{word-spacing:19.296063pt;}
.wsa{word-spacing:26.943627pt;}
.wsb{word-spacing:27.964537pt;}
.ws12{word-spacing:31.203149pt;}
.ws10{word-spacing:38.244219pt;}
.ws7{word-spacing:42.077168pt;}
.wse{word-spacing:59.299857pt;}
.wsd{word-spacing:73.399908pt;}
.ws4{word-spacing:228.794043pt;}
._f{margin-left:-23.676387pt;}
._12{margin-left:-18.594426pt;}
._0{margin-left:-5.763744pt;}
._7{margin-left:-4.700453pt;}
._9{margin-left:-3.304267pt;}
._2{margin-left:-1.857280pt;}
._10{margin-left:-0.953733pt;}
._1{width:0.960624pt;}
._b{width:1.982560pt;}
._5{width:2.996015pt;}
._a{width:4.038096pt;}
._3{width:11.509560pt;}
._4{width:43.417412pt;}
._6{width:89.578589pt;}
._8{width:140.261486pt;}
._c{width:187.109875pt;}
._d{width:227.857515pt;}
._e{width:273.687117pt;}
._11{width:319.288052pt;}
.fs9{font-size:4.197333pt;}
.fs7{font-size:11.749333pt;}
.fs8{font-size:17.626667pt;}
.fsb{font-size:20.853333pt;}
.fs6{font-size:20.869333pt;}
.fs3{font-size:22.432000pt;}
.fsd{font-size:26.730667pt;}
.fse{font-size:43.237333pt;}
.fsa{font-size:45.904000pt;}
.fs5{font-size:46.432000pt;}
.fs4{font-size:48.037333pt;}
.fs12{font-size:66.085333pt;}
.fsf{font-size:96.000000pt;}
.fsc{font-size:96.064000pt;}
.fs11{font-size:98.149333pt;}
.fs1{font-size:106.736000pt;}
.fs0{font-size:170.682667pt;}
.fs2{font-size:234.634667pt;}
.fs10{font-size:356.213333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y26{bottom:5.864000pt;}
.y3d{bottom:11.386667pt;}
.y24{bottom:19.274667pt;}
.y2e{bottom:20.862667pt;}
.y3c{bottom:31.720000pt;}
.y25{bottom:34.002667pt;}
.y3b{bottom:52.054667pt;}
.y2d{bottom:55.294667pt;}
.y2f{bottom:67.917333pt;}
.y3a{bottom:72.388000pt;}
.y39{bottom:92.721333pt;}
.ya{bottom:103.900000pt;}
.y10{bottom:112.382667pt;}
.y38{bottom:113.056000pt;}
.y9{bottom:119.170667pt;}
.y8{bottom:128.529333pt;}
.yf{bottom:129.889333pt;}
.y2c{bottom:129.940000pt;}
.y37{bottom:133.389333pt;}
.ye{bottom:143.880000pt;}
.yb{bottom:152.938667pt;}
.y36{bottom:153.722667pt;}
.y5{bottom:158.021333pt;}
.y41{bottom:165.429333pt;}
.y35{bottom:174.057333pt;}
.y23{bottom:191.394667pt;}
.y1f{bottom:192.294667pt;}
.y34{bottom:194.390667pt;}
.y2b{bottom:194.985333pt;}
.y1e{bottom:199.808000pt;}
.y4{bottom:206.021333pt;}
.y33{bottom:214.725333pt;}
.y32{bottom:235.058667pt;}
.y2a{bottom:235.200000pt;}
.y40{bottom:249.486667pt;}
.y6{bottom:254.021333pt;}
.y31{bottom:255.392000pt;}
.y22{bottom:274.960000pt;}
.y30{bottom:275.726667pt;}
.y1d{bottom:294.009333pt;}
.y1c{bottom:304.324000pt;}
.y16{bottom:311.964000pt;}
.y29{bottom:313.662667pt;}
.y1b{bottom:314.713333pt;}
.y14{bottom:324.357333pt;}
.y13{bottom:328.010667pt;}
.y1a{bottom:328.390667pt;}
.y3f{bottom:334.034667pt;}
.y12{bottom:335.356000pt;}
.y19{bottom:340.770667pt;}
.y15{bottom:346.536000pt;}
.y28{bottom:348.094667pt;}
.y3{bottom:354.444000pt;}
.yd{bottom:355.170667pt;}
.y21{bottom:358.525333pt;}
.y11{bottom:363.320000pt;}
.y18{bottom:364.360000pt;}
.yc{bottom:369.161333pt;}
.y17{bottom:382.320000pt;}
.y27{bottom:382.525333pt;}
.y2{bottom:402.292000pt;}
.y20{bottom:425.914667pt;}
.y7{bottom:437.253333pt;}
.y3e{bottom:448.592000pt;}
.hc{height:3.415233pt;}
.ha{height:8.988240pt;}
.hb{height:13.484400pt;}
.he{height:15.952800pt;}
.h9{height:15.965040pt;}
.h6{height:17.043063pt;}
.h10{height:20.448960pt;}
.hd{height:35.116560pt;}
.h8{height:35.277437pt;}
.h7{height:36.497115pt;}
.h11{height:46.431833pt;}
.h19{height:49.956167pt;}
.h18{height:50.555280pt;}
.h16{height:69.562500pt;}
.hf{height:73.488960pt;}
.h15{height:74.496000pt;}
.h14{height:75.084240pt;}
.h4{height:77.341906pt;}
.h12{height:101.744000pt;}
.h3{height:123.678260pt;}
.h5{height:170.018479pt;}
.h13{height:272.503200pt;}
.h17{height:448.780000pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w3{width:648.000000pt;}
.w4{width:831.420000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x23{left:-38.212000pt;}
.x0{left:0.000000pt;}
.x26{left:57.449333pt;}
.x1f{left:78.992000pt;}
.x19{left:85.228000pt;}
.x2{left:92.485333pt;}
.x22{left:96.680000pt;}
.x20{left:126.992000pt;}
.x1b{left:144.000000pt;}
.x1a{left:153.449333pt;}
.x1c{left:176.928000pt;}
.x1d{left:183.366667pt;}
.x21{left:222.312000pt;}
.xd{left:250.402667pt;}
.x1e{left:253.266667pt;}
.xc{left:256.225333pt;}
.x6{left:268.006667pt;}
.x1{left:273.070667pt;}
.xb{left:273.997333pt;}
.xa{left:281.788000pt;}
.x5{left:331.086667pt;}
.x24{left:378.973333pt;}
.x25{left:388.800000pt;}
.xe{left:437.353333pt;}
.x12{left:445.664000pt;}
.x14{left:451.230667pt;}
.x10{left:457.153333pt;}
.xf{left:458.908000pt;}
.x11{left:467.849333pt;}
.x18{left:470.169333pt;}
.x13{left:473.097333pt;}
.x15{left:570.117333pt;}
.x17{left:608.873333pt;}
.x16{left:621.082667pt;}
.x9{left:636.293333pt;}
.x8{left:647.484000pt;}
.x7{left:657.148000pt;}
.x3{left:720.226667pt;}
.x4{left:751.370667pt;}
}




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