
    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_e685f6620e596bcd68a9d59a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.058105;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_8e7373f0aab742543bd80bcd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979004;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_59806452117628d09bf4daae.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_2c15bd67994e511d3930e148.woff')format("woff");}.ff4{font-family:ff4;line-height:0.876953;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_b5d6625282c7f29b2fb0e52f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.058105;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f2addf7f781f131505adaff8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_7bc461fca200ddcf39d80a8e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:87.240000px;}
.ls6{letter-spacing:-14.280000px;}
.ls9{letter-spacing:-0.324000px;}
.ls1{letter-spacing:-0.043200px;}
.ls5{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.110160px;}
.lsc{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls4{letter-spacing:84.909600px;}
.ls3{letter-spacing:84.960000px;}
.ls8{letter-spacing:97.509600px;}
.ls7{letter-spacing:97.560000px;}
.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;}
}
.ws5{word-spacing:-89.799840px;}
.wsc{word-spacing:-75.816000px;}
.ws10{word-spacing:-73.458720px;}
.ws8{word-spacing:-67.425696px;}
.ws6{word-spacing:-67.392000px;}
.ws4{word-spacing:-61.832160px;}
.ws1{word-spacing:-60.349536px;}
.ws0{word-spacing:-60.315840px;}
.wsf{word-spacing:-56.137536px;}
.wse{word-spacing:-56.103840px;}
.ws7{word-spacing:-47.713536px;}
.wsd{word-spacing:-42.153696px;}
.wsa{word-spacing:-40.072032px;}
.ws9{word-spacing:-40.032000px;}
.wsb{word-spacing:-40.031994px;}
.ws13{word-spacing:-30.024000px;}
.ws11{word-spacing:-29.700000px;}
.ws12{word-spacing:-1.980000px;}
.ws16{word-spacing:-0.888000px;}
.ws15{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.612000px;}
.ws14{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.084000px;}
.ws2{word-spacing:0.339840px;}
.ws1a{word-spacing:0.360000px;}
._f{margin-left:-32.619600px;}
._c{margin-left:-21.882528px;}
._11{margin-left:-19.955520px;}
._e{margin-left:-18.420480px;}
._10{margin-left:-15.350400px;}
._6{margin-left:-13.403520px;}
._8{margin-left:-11.347776px;}
._a{margin-left:-9.653760px;}
._4{margin-left:-8.506080px;}
._7{margin-left:-7.479216px;}
._3{margin-left:-6.186240px;}
._1{margin-left:-4.381920px;}
._0{margin-left:-2.577600px;}
._5{margin-left:-1.288800px;}
._9{width:1.207440px;}
._b{width:2.379456px;}
._13{width:4.177632px;}
._14{width:5.363424px;}
._2{width:6.959520px;}
._12{width:8.197392px;}
._d{width:9.921600px;}
._15{width:39.024000px;}
._16{width:2677.944000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs14{font-size:108.000000px;}
.fs15{font-size:108.144000px;}
.fsc{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs10{font-size:180.000000px;}
.fs11{font-size:180.144000px;}
.fsa{font-size:203.760000px;}
.fsb{font-size:203.904000px;}
.fs12{font-size:239.760000px;}
.fs13{font-size:239.904000px;}
.fs0{font-size:257.760000px;}
.fs1{font-size:257.904000px;}
.fs6{font-size:264.240000px;}
.fs7{font-size:264.384000px;}
.fs4{font-size:288.000000px;}
.fs5{font-size:288.144000px;}
.fsf{font-size:324.000000px;}
.fse{font-size:324.144000px;}
.fs9{font-size:383.760000px;}
.fs8{font-size:383.904000px;}
.y35{bottom:-10.230000px;}
.y0{bottom:0.000000px;}
.y38{bottom:0.750000px;}
.y2f{bottom:1.290000px;}
.y33{bottom:13.890000px;}
.y3a{bottom:15.870000px;}
.y4e{bottom:103.284000px;}
.y26{bottom:221.070000px;}
.ya{bottom:243.435000px;}
.y25{bottom:264.270000px;}
.y6{bottom:268.380000px;}
.y24{bottom:307.470000px;}
.y5{bottom:338.040000px;}
.y23{bottom:350.715000px;}
.y9{bottom:372.210000px;}
.y4d{bottom:391.890000px;}
.y22{bottom:393.915000px;}
.y8{bottom:397.230000px;}
.y4{bottom:407.700000px;}
.y21{bottom:437.115000px;}
.y13{bottom:456.870000px;}
.y4c{bottom:469.650000px;}
.y41{bottom:475.920000px;}
.y3{bottom:477.390000px;}
.y20{bottom:480.315000px;}
.y48{bottom:481.395000px;}
.y40{bottom:508.320000px;}
.y47{bottom:513.795000px;}
.y1a{bottom:523.080000px;}
.y1f{bottom:523.545000px;}
.ye{bottom:527.295000px;}
.y1b{bottom:528.915000px;}
.y7{bottom:537.375000px;}
.y29{bottom:539.820000px;}
.y3f{bottom:540.750000px;}
.y46{bottom:546.225000px;}
.y2{bottom:547.050000px;}
.y4b{bottom:547.455000px;}
.y12{bottom:560.595000px;}
.y1e{bottom:566.745000px;}
.y3e{bottom:573.150000px;}
.y19{bottom:578.160000px;}
.y45{bottom:578.625000px;}
.y2d{bottom:586.410000px;}
.yd{bottom:598.215000px;}
.y10{bottom:598.575000px;}
.y3d{bottom:605.550000px;}
.y44{bottom:611.025000px;}
.yc{bottom:614.055000px;}
.y1{bottom:616.710000px;}
.y31{bottom:621.510000px;}
.y4a{bottom:625.215000px;}
.y28{bottom:627.300000px;}
.y2c{bottom:629.610000px;}
.y18{bottom:633.240000px;}
.y3c{bottom:637.950000px;}
.y43{bottom:643.425000px;}
.y15{bottom:651.885000px;}
.y1d{bottom:656.850000px;}
.y11{bottom:664.305000px;}
.yf{bottom:669.885000px;}
.y2b{bottom:672.810000px;}
.y42{bottom:675.825000px;}
.y16{bottom:676.335000px;}
.y30{bottom:686.310000px;}
.y17{bottom:688.320000px;}
.y3b{bottom:697.650000px;}
.yb{bottom:700.455000px;}
.y49{bottom:702.975000px;}
.y27{bottom:714.810000px;}
.y2a{bottom:716.010000px;}
.y14{bottom:729.645000px;}
.y39{bottom:731.160000px;}
.y32{bottom:733.140000px;}
.y1c{bottom:734.610000px;}
.y2e{bottom:739.980000px;}
.y36{bottom:745.740000px;}
.y37{bottom:746.280000px;}
.y34{bottom:757.260000px;}
.h1a{height:10.080000px;}
.h1d{height:10.260000px;}
.h1f{height:46.620000px;}
.h1c{height:47.160000px;}
.h1e{height:47.700000px;}
.h14{height:51.120000px;}
.h20{height:56.700000px;}
.h1b{height:59.760000px;}
.h18{height:60.300000px;}
.h3{height:61.020000px;}
.h4{height:63.180000px;}
.h22{height:81.000000px;}
.h23{height:81.108000px;}
.he{height:108.000000px;}
.hf{height:108.108000px;}
.h12{height:145.283203px;}
.h13{height:145.399430px;}
.hc{height:164.460586px;}
.hd{height:164.576812px;}
.h21{height:168.240000px;}
.h16{height:193.517227px;}
.h17{height:193.633453px;}
.h19{height:198.180000px;}
.h1{height:208.045547px;}
.h2{height:208.161773px;}
.h8{height:213.275742px;}
.h9{height:213.391969px;}
.h15{height:216.000000px;}
.h7{height:229.661719px;}
.h5{height:232.453125px;}
.h6{height:232.569352px;}
.h11{height:261.509766px;}
.h10{height:261.625992px;}
.hb{height:309.743789px;}
.ha{height:309.860016px;}
.h0{height:810.000000px;}
.w7{width:18.720000px;}
.w5{width:20.700000px;}
.wa{width:34.560000px;}
.w4{width:35.280000px;}
.wc{width:35.820000px;}
.w8{width:53.100000px;}
.w6{width:108.360000px;}
.w3{width:162.900000px;}
.wb{width:226.620000px;}
.wd{width:259.920000px;}
.w9{width:265.320000px;}
.w2{width:378.720000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x12{left:-4.710000px;}
.x1b{left:-3.210000px;}
.x1d{left:-1.545000px;}
.x0{left:0.000000px;}
.x18{left:1.110000px;}
.x16{left:2.880000px;}
.x15{left:20.700000px;}
.xe{left:36.323979px;}
.xa{left:42.983979px;}
.x10{left:58.211979px;}
.x14{left:59.939979px;}
.xb{left:65.087979px;}
.x28{left:68.039979px;}
.xf{left:70.163979px;}
.x13{left:77.939979px;}
.xd{left:80.099979px;}
.x24{left:93.239979px;}
.x29{left:99.539979px;}
.xc{left:172.439979px;}
.x27{left:183.089979px;}
.x26{left:186.689979px;}
.x17{left:202.320000px;}
.x2a{left:204.119979px;}
.x19{left:251.820000px;}
.x7{left:256.169979px;}
.x8{left:264.599979px;}
.x1a{left:278.640000px;}
.x9{left:306.179979px;}
.x1c{left:391.860000px;}
.x1e{left:414.540000px;}
.x1f{left:470.340000px;}
.x11{left:524.880000px;}
.x20{left:761.400000px;}
.x21{left:802.260000px;}
.x25{left:868.754979px;}
.x6{left:959.324979px;}
.x5{left:1003.784979px;}
.x3{left:1010.984979px;}
.x2{left:1040.144979px;}
.x1{left:1043.024979px;}
.x4{left:1045.724979px;}
.x22{left:1052.280000px;}
.x23{left:1092.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:77.546667pt;}
.ls6{letter-spacing:-12.693333pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls1{letter-spacing:-0.038400pt;}
.ls5{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.097920pt;}
.lsc{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls4{letter-spacing:75.475200pt;}
.ls3{letter-spacing:75.520000pt;}
.ls8{letter-spacing:86.675200pt;}
.ls7{letter-spacing:86.720000pt;}
.ws5{word-spacing:-79.822080pt;}
.wsc{word-spacing:-67.392000pt;}
.ws10{word-spacing:-65.296640pt;}
.ws8{word-spacing:-59.933952pt;}
.ws6{word-spacing:-59.904000pt;}
.ws4{word-spacing:-54.961920pt;}
.ws1{word-spacing:-53.644032pt;}
.ws0{word-spacing:-53.614080pt;}
.wsf{word-spacing:-49.900032pt;}
.wse{word-spacing:-49.870080pt;}
.ws7{word-spacing:-42.412032pt;}
.wsd{word-spacing:-37.469952pt;}
.wsa{word-spacing:-35.619584pt;}
.ws9{word-spacing:-35.584000pt;}
.wsb{word-spacing:-35.583995pt;}
.ws13{word-spacing:-26.688000pt;}
.ws11{word-spacing:-26.400000pt;}
.ws12{word-spacing:-1.760000pt;}
.ws16{word-spacing:-0.789333pt;}
.ws15{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.544000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.074667pt;}
.ws2{word-spacing:0.302080pt;}
.ws1a{word-spacing:0.320000pt;}
._f{margin-left:-28.995200pt;}
._c{margin-left:-19.451136pt;}
._11{margin-left:-17.738240pt;}
._e{margin-left:-16.373760pt;}
._10{margin-left:-13.644800pt;}
._6{margin-left:-11.914240pt;}
._8{margin-left:-10.086912pt;}
._a{margin-left:-8.581120pt;}
._4{margin-left:-7.560960pt;}
._7{margin-left:-6.648192pt;}
._3{margin-left:-5.498880pt;}
._1{margin-left:-3.895040pt;}
._0{margin-left:-2.291200pt;}
._5{margin-left:-1.145600pt;}
._9{width:1.073280pt;}
._b{width:2.115072pt;}
._13{width:3.713451pt;}
._14{width:4.767488pt;}
._2{width:6.186240pt;}
._12{width:7.286571pt;}
._d{width:8.819200pt;}
._15{width:34.688000pt;}
._16{width:2380.394667pt;}
.fs2{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs14{font-size:96.000000pt;}
.fs15{font-size:96.128000pt;}
.fsc{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs10{font-size:160.000000pt;}
.fs11{font-size:160.128000pt;}
.fsa{font-size:181.120000pt;}
.fsb{font-size:181.248000pt;}
.fs12{font-size:213.120000pt;}
.fs13{font-size:213.248000pt;}
.fs0{font-size:229.120000pt;}
.fs1{font-size:229.248000pt;}
.fs6{font-size:234.880000pt;}
.fs7{font-size:235.008000pt;}
.fs4{font-size:256.000000pt;}
.fs5{font-size:256.128000pt;}
.fsf{font-size:288.000000pt;}
.fse{font-size:288.128000pt;}
.fs9{font-size:341.120000pt;}
.fs8{font-size:341.248000pt;}
.y35{bottom:-9.093333pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:0.666667pt;}
.y2f{bottom:1.146667pt;}
.y33{bottom:12.346667pt;}
.y3a{bottom:14.106667pt;}
.y4e{bottom:91.808000pt;}
.y26{bottom:196.506667pt;}
.ya{bottom:216.386667pt;}
.y25{bottom:234.906667pt;}
.y6{bottom:238.560000pt;}
.y24{bottom:273.306667pt;}
.y5{bottom:300.480000pt;}
.y23{bottom:311.746667pt;}
.y9{bottom:330.853333pt;}
.y4d{bottom:348.346667pt;}
.y22{bottom:350.146667pt;}
.y8{bottom:353.093333pt;}
.y4{bottom:362.400000pt;}
.y21{bottom:388.546667pt;}
.y13{bottom:406.106667pt;}
.y4c{bottom:417.466667pt;}
.y41{bottom:423.040000pt;}
.y3{bottom:424.346667pt;}
.y20{bottom:426.946667pt;}
.y48{bottom:427.906667pt;}
.y40{bottom:451.840000pt;}
.y47{bottom:456.706667pt;}
.y1a{bottom:464.960000pt;}
.y1f{bottom:465.373333pt;}
.ye{bottom:468.706667pt;}
.y1b{bottom:470.146667pt;}
.y7{bottom:477.666667pt;}
.y29{bottom:479.840000pt;}
.y3f{bottom:480.666667pt;}
.y46{bottom:485.533333pt;}
.y2{bottom:486.266667pt;}
.y4b{bottom:486.626667pt;}
.y12{bottom:498.306667pt;}
.y1e{bottom:503.773333pt;}
.y3e{bottom:509.466667pt;}
.y19{bottom:513.920000pt;}
.y45{bottom:514.333333pt;}
.y2d{bottom:521.253333pt;}
.yd{bottom:531.746667pt;}
.y10{bottom:532.066667pt;}
.y3d{bottom:538.266667pt;}
.y44{bottom:543.133333pt;}
.yc{bottom:545.826667pt;}
.y1{bottom:548.186667pt;}
.y31{bottom:552.453333pt;}
.y4a{bottom:555.746667pt;}
.y28{bottom:557.600000pt;}
.y2c{bottom:559.653333pt;}
.y18{bottom:562.880000pt;}
.y3c{bottom:567.066667pt;}
.y43{bottom:571.933333pt;}
.y15{bottom:579.453333pt;}
.y1d{bottom:583.866667pt;}
.y11{bottom:590.493333pt;}
.yf{bottom:595.453333pt;}
.y2b{bottom:598.053333pt;}
.y42{bottom:600.733333pt;}
.y16{bottom:601.186667pt;}
.y30{bottom:610.053333pt;}
.y17{bottom:611.840000pt;}
.y3b{bottom:620.133333pt;}
.yb{bottom:622.626667pt;}
.y49{bottom:624.866667pt;}
.y27{bottom:635.386667pt;}
.y2a{bottom:636.453333pt;}
.y14{bottom:648.573333pt;}
.y39{bottom:649.920000pt;}
.y32{bottom:651.680000pt;}
.y1c{bottom:652.986667pt;}
.y2e{bottom:657.760000pt;}
.y36{bottom:662.880000pt;}
.y37{bottom:663.360000pt;}
.y34{bottom:673.120000pt;}
.h1a{height:8.960000pt;}
.h1d{height:9.120000pt;}
.h1f{height:41.440000pt;}
.h1c{height:41.920000pt;}
.h1e{height:42.400000pt;}
.h14{height:45.440000pt;}
.h20{height:50.400000pt;}
.h1b{height:53.120000pt;}
.h18{height:53.600000pt;}
.h3{height:54.240000pt;}
.h4{height:56.160000pt;}
.h22{height:72.000000pt;}
.h23{height:72.096000pt;}
.he{height:96.000000pt;}
.hf{height:96.096000pt;}
.h12{height:129.140625pt;}
.h13{height:129.243937pt;}
.hc{height:146.187187pt;}
.hd{height:146.290500pt;}
.h21{height:149.546667pt;}
.h16{height:172.015312pt;}
.h17{height:172.118625pt;}
.h19{height:176.160000pt;}
.h1{height:184.929375pt;}
.h2{height:185.032687pt;}
.h8{height:189.578438pt;}
.h9{height:189.681750pt;}
.h15{height:192.000000pt;}
.h7{height:204.143750pt;}
.h5{height:206.625000pt;}
.h6{height:206.728312pt;}
.h11{height:232.453125pt;}
.h10{height:232.556437pt;}
.hb{height:275.327812pt;}
.ha{height:275.431125pt;}
.h0{height:720.000000pt;}
.w7{width:16.640000pt;}
.w5{width:18.400000pt;}
.wa{width:30.720000pt;}
.w4{width:31.360000pt;}
.wc{width:31.840000pt;}
.w8{width:47.200000pt;}
.w6{width:96.320000pt;}
.w3{width:144.800000pt;}
.wb{width:201.440000pt;}
.wd{width:231.040000pt;}
.w9{width:235.840000pt;}
.w2{width:336.640000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x12{left:-4.186667pt;}
.x1b{left:-2.853333pt;}
.x1d{left:-1.373333pt;}
.x0{left:0.000000pt;}
.x18{left:0.986667pt;}
.x16{left:2.560000pt;}
.x15{left:18.400000pt;}
.xe{left:32.287981pt;}
.xa{left:38.207981pt;}
.x10{left:51.743981pt;}
.x14{left:53.279981pt;}
.xb{left:57.855981pt;}
.x28{left:60.479981pt;}
.xf{left:62.367981pt;}
.x13{left:69.279981pt;}
.xd{left:71.199981pt;}
.x24{left:82.879981pt;}
.x29{left:88.479981pt;}
.xc{left:153.279981pt;}
.x27{left:162.746648pt;}
.x26{left:165.946648pt;}
.x17{left:179.840000pt;}
.x2a{left:181.439981pt;}
.x19{left:223.840000pt;}
.x7{left:227.706648pt;}
.x8{left:235.199981pt;}
.x1a{left:247.680000pt;}
.x9{left:272.159981pt;}
.x1c{left:348.320000pt;}
.x1e{left:368.480000pt;}
.x1f{left:418.080000pt;}
.x11{left:466.560000pt;}
.x20{left:676.800000pt;}
.x21{left:713.120000pt;}
.x25{left:772.226648pt;}
.x6{left:852.733314pt;}
.x5{left:892.253314pt;}
.x3{left:898.653314pt;}
.x2{left:924.573314pt;}
.x1{left:927.133314pt;}
.x4{left:929.533314pt;}
.x22{left:935.360000pt;}
.x23{left:971.360000pt;}
}




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