
    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_71524b71a28ebd2358e160b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_d1c33f40ab9e4b97892261e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_dce3cd377a73e7c0c6c7a0a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_e4db02b42b7296e8e0662b06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_78cfa716c393c0888a0c4a27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_82e5ccdb63199d6f983c0d95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_fcd333218f8f9d6db88bbd9e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_6998638381fe515d805798d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_42597d94a714d675d081408c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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:ffb;src:url('chunks/assets/font_cd496e2a185d1e6f2d169425.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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;}
.v1{vertical-align:27.000000px;}
.ls19{letter-spacing:-2.694000px;}
.ls1b{letter-spacing:-2.574000px;}
.ls18{letter-spacing:-0.858000px;}
.ls1a{letter-spacing:-0.708000px;}
.ls3{letter-spacing:-0.139800px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010200px;}
.ls13{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.208200px;}
.ls0{letter-spacing:0.242700px;}
.ls17{letter-spacing:0.471000px;}
.ls11{letter-spacing:0.648000px;}
.ls12{letter-spacing:1.146000px;}
.ls16{letter-spacing:1.698000px;}
.ls9{letter-spacing:37.365000px;}
.lsf{letter-spacing:37.425000px;}
.lsb{letter-spacing:37.530000px;}
.ls6{letter-spacing:44.175000px;}
.lse{letter-spacing:44.355000px;}
.ls5{letter-spacing:57.645000px;}
.ls10{letter-spacing:57.675000px;}
.ls7{letter-spacing:57.697500px;}
.lsa{letter-spacing:57.727500px;}
.ls8{letter-spacing:62.422500px;}
.ls15{letter-spacing:65.520000px;}
.lsc{letter-spacing:65.550000px;}
.ls14{letter-spacing:65.572500px;}
.lsd{letter-spacing:65.602500px;}
.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;}
}
.wsa{word-spacing:-43.329000px;}
.ws8{word-spacing:-38.625000px;}
.ws7{word-spacing:-37.518000px;}
.ws6{word-spacing:-37.479000px;}
.ws4{word-spacing:-34.008000px;}
.wsc{word-spacing:-32.100000px;}
.wsb{word-spacing:-31.629000px;}
.wsd{word-spacing:-29.055000px;}
.ws5{word-spacing:-28.119000px;}
.ws0{word-spacing:-24.619200px;}
.ws1{word-spacing:-24.469200px;}
.wse{word-spacing:-0.764250px;}
.ws9{word-spacing:-0.004200px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:8.170350px;}
._8{margin-left:-11.746200px;}
._f{margin-left:-9.956850px;}
._9{margin-left:-8.946600px;}
._a{margin-left:-6.680100px;}
._c{margin-left:-5.671950px;}
._4{margin-left:-4.292850px;}
._2{margin-left:-2.833050px;}
._1{margin-left:-1.166550px;}
._5{width:1.203300px;}
._0{width:2.333100px;}
._3{width:3.844500px;}
._6{width:5.092350px;}
._10{width:6.597000px;}
._b{width:7.905750px;}
._7{width:11.041650px;}
._d{width:40.219800px;}
._e{width:44.466150px;}
.fc2{color:rgb(239,242,252);}
.fc1{color:rgb(180,134,94);}
.fc0{color:rgb(3,9,40);}
.fs6{font-size:63.150000px;}
.fs4{font-size:94.500000px;}
.fs5{font-size:94.650000px;}
.fsa{font-size:108.150000px;}
.fsc{font-size:121.650000px;}
.fsb{font-size:121.800000px;}
.fs8{font-size:130.650000px;}
.fs9{font-size:130.800000px;}
.fs3{font-size:144.150000px;}
.fs7{font-size:144.300000px;}
.fs0{font-size:166.650000px;}
.fs1{font-size:166.800000px;}
.fs2{font-size:180.300000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:129.037500px;}
.y24{bottom:137.662500px;}
.y3e{bottom:162.255000px;}
.y4e{bottom:163.905000px;}
.y3b{bottom:163.950000px;}
.y6{bottom:169.650000px;}
.y23{bottom:172.575000px;}
.y52{bottom:181.770000px;}
.y2d{bottom:181.995000px;}
.y31{bottom:202.275000px;}
.y4d{bottom:207.825000px;}
.y22{bottom:208.620000px;}
.y13{bottom:209.025000px;}
.y2c{bottom:213.525000px;}
.y5{bottom:213.570000px;}
.y26{bottom:225.570000px;}
.y51{bottom:233.820000px;}
.y4c{bottom:235.995000px;}
.y30{bottom:241.695000px;}
.y21{bottom:244.695000px;}
.y12{bottom:247.320000px;}
.y3a{bottom:248.445000px;}
.y2b{bottom:254.100000px;}
.y32{bottom:256.350000px;}
.y25{bottom:257.100000px;}
.y4{bottom:262.005000px;}
.y4b{bottom:265.320000px;}
.y3d{bottom:270.975000px;}
.y20{bottom:279.600000px;}
.y11{bottom:286.755000px;}
.y2a{bottom:295.755000px;}
.y39{bottom:298.020000px;}
.y4a{bottom:309.225000px;}
.y17{bottom:310.425000px;}
.y1f{bottom:315.630000px;}
.y10{bottom:325.050000px;}
.y38{bottom:332.925000px;}
.y2f{bottom:334.050000px;}
.y49{bottom:337.380000px;}
.y29{bottom:341.970000px;}
.y16{bottom:349.830000px;}
.y1e{bottom:351.675000px;}
.yf{bottom:364.500000px;}
.y37{bottom:366.750000px;}
.y3{bottom:374.175000px;}
.y28{bottom:380.250000px;}
.y48{bottom:381.345000px;}
.y1d{bottom:386.625000px;}
.y15{bottom:388.125000px;}
.y3f{bottom:391.350000px;}
.ye{bottom:402.780000px;}
.y47{bottom:410.625000px;}
.y36{bottom:416.280000px;}
.y1c{bottom:422.655000px;}
.y14{bottom:427.575000px;}
.yd{bottom:442.200000px;}
.ya{bottom:451.245000px;}
.y46{bottom:454.545000px;}
.y1b{bottom:458.700000px;}
.y2e{bottom:465.870000px;}
.y2{bottom:470.775000px;}
.y50{bottom:478.125000px;}
.yc{bottom:481.650000px;}
.y35{bottom:494.025000px;}
.y1a{bottom:494.775000px;}
.y45{bottom:498.495000px;}
.y9{bottom:505.320000px;}
.y1{bottom:515.820000px;}
.yb{bottom:519.945000px;}
.y4f{bottom:523.200000px;}
.y44{bottom:526.650000px;}
.y34{bottom:527.850000px;}
.y19{bottom:529.695000px;}
.y43{bottom:555.945000px;}
.y8{bottom:559.380000px;}
.y33{bottom:562.755000px;}
.y18{bottom:565.725000px;}
.y42{bottom:599.880000px;}
.y40{bottom:635.280000px;}
.y7{bottom:676.200000px;}
.y27{bottom:678.600000px;}
.y41{bottom:715.050000px;}
.h5{height:72.397705px;}
.h6{height:75.380054px;}
.h11{height:82.749536px;}
.he{height:82.855151px;}
.h10{height:93.197681px;}
.hf{height:93.312598px;}
.hc{height:99.965112px;}
.hb{height:100.092700px;}
.hd{height:100.207617px;}
.ha{height:110.294458px;}
.h9{height:110.409229px;}
.h4{height:110.435229px;}
.h8{height:110.550146px;}
.h1{height:126.614941px;}
.h2{height:126.728906px;}
.h7{height:127.510034px;}
.h3{height:138.130225px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:109.874979px;}
.xd{left:117.862479px;}
.xe{left:125.812479px;}
.x1{left:126.937479px;}
.x3{left:136.912479px;}
.x5{left:163.904979px;}
.x6{left:190.949979px;}
.x7{left:217.949979px;}
.xb{left:233.069979px;}
.x8{left:244.994979px;}
.x4{left:543.719979px;}
.xa{left:548.774979px;}
.x9{left:561.194979px;}
.xc{left:1021.199979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls19{letter-spacing:-2.394667pt;}
.ls1b{letter-spacing:-2.288000pt;}
.ls18{letter-spacing:-0.762667pt;}
.ls1a{letter-spacing:-0.629333pt;}
.ls3{letter-spacing:-0.124267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009067pt;}
.ls13{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.185067pt;}
.ls0{letter-spacing:0.215733pt;}
.ls17{letter-spacing:0.418667pt;}
.ls11{letter-spacing:0.576000pt;}
.ls12{letter-spacing:1.018667pt;}
.ls16{letter-spacing:1.509333pt;}
.ls9{letter-spacing:33.213333pt;}
.lsf{letter-spacing:33.266667pt;}
.lsb{letter-spacing:33.360000pt;}
.ls6{letter-spacing:39.266667pt;}
.lse{letter-spacing:39.426667pt;}
.ls5{letter-spacing:51.240000pt;}
.ls10{letter-spacing:51.266667pt;}
.ls7{letter-spacing:51.286667pt;}
.lsa{letter-spacing:51.313333pt;}
.ls8{letter-spacing:55.486667pt;}
.ls15{letter-spacing:58.240000pt;}
.lsc{letter-spacing:58.266667pt;}
.ls14{letter-spacing:58.286667pt;}
.lsd{letter-spacing:58.313333pt;}
.wsa{word-spacing:-38.514667pt;}
.ws8{word-spacing:-34.333333pt;}
.ws7{word-spacing:-33.349333pt;}
.ws6{word-spacing:-33.314667pt;}
.ws4{word-spacing:-30.229333pt;}
.wsc{word-spacing:-28.533333pt;}
.wsb{word-spacing:-28.114667pt;}
.wsd{word-spacing:-25.826667pt;}
.ws5{word-spacing:-24.994667pt;}
.ws0{word-spacing:-21.883733pt;}
.ws1{word-spacing:-21.750400pt;}
.wse{word-spacing:-0.679333pt;}
.ws9{word-spacing:-0.003733pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:7.262533pt;}
._8{margin-left:-10.441067pt;}
._f{margin-left:-8.850533pt;}
._9{margin-left:-7.952533pt;}
._a{margin-left:-5.937867pt;}
._c{margin-left:-5.041733pt;}
._4{margin-left:-3.815867pt;}
._2{margin-left:-2.518267pt;}
._1{margin-left:-1.036933pt;}
._5{width:1.069600pt;}
._0{width:2.073867pt;}
._3{width:3.417333pt;}
._6{width:4.526533pt;}
._10{width:5.864000pt;}
._b{width:7.027333pt;}
._7{width:9.814800pt;}
._d{width:35.750933pt;}
._e{width:39.525467pt;}
.fs6{font-size:56.133333pt;}
.fs4{font-size:84.000000pt;}
.fs5{font-size:84.133333pt;}
.fsa{font-size:96.133333pt;}
.fsc{font-size:108.133333pt;}
.fsb{font-size:108.266667pt;}
.fs8{font-size:116.133333pt;}
.fs9{font-size:116.266667pt;}
.fs3{font-size:128.133333pt;}
.fs7{font-size:128.266667pt;}
.fs0{font-size:148.133333pt;}
.fs1{font-size:148.266667pt;}
.fs2{font-size:160.266667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:114.700000pt;}
.y24{bottom:122.366667pt;}
.y3e{bottom:144.226667pt;}
.y4e{bottom:145.693333pt;}
.y3b{bottom:145.733333pt;}
.y6{bottom:150.800000pt;}
.y23{bottom:153.400000pt;}
.y52{bottom:161.573333pt;}
.y2d{bottom:161.773333pt;}
.y31{bottom:179.800000pt;}
.y4d{bottom:184.733333pt;}
.y22{bottom:185.440000pt;}
.y13{bottom:185.800000pt;}
.y2c{bottom:189.800000pt;}
.y5{bottom:189.840000pt;}
.y26{bottom:200.506667pt;}
.y51{bottom:207.840000pt;}
.y4c{bottom:209.773333pt;}
.y30{bottom:214.840000pt;}
.y21{bottom:217.506667pt;}
.y12{bottom:219.840000pt;}
.y3a{bottom:220.840000pt;}
.y2b{bottom:225.866667pt;}
.y32{bottom:227.866667pt;}
.y25{bottom:228.533333pt;}
.y4{bottom:232.893333pt;}
.y4b{bottom:235.840000pt;}
.y3d{bottom:240.866667pt;}
.y20{bottom:248.533333pt;}
.y11{bottom:254.893333pt;}
.y2a{bottom:262.893333pt;}
.y39{bottom:264.906667pt;}
.y4a{bottom:274.866667pt;}
.y17{bottom:275.933333pt;}
.y1f{bottom:280.560000pt;}
.y10{bottom:288.933333pt;}
.y38{bottom:295.933333pt;}
.y2f{bottom:296.933333pt;}
.y49{bottom:299.893333pt;}
.y29{bottom:303.973333pt;}
.y16{bottom:310.960000pt;}
.y1e{bottom:312.600000pt;}
.yf{bottom:324.000000pt;}
.y37{bottom:326.000000pt;}
.y3{bottom:332.600000pt;}
.y28{bottom:338.000000pt;}
.y48{bottom:338.973333pt;}
.y1d{bottom:343.666667pt;}
.y15{bottom:345.000000pt;}
.y3f{bottom:347.866667pt;}
.ye{bottom:358.026667pt;}
.y47{bottom:365.000000pt;}
.y36{bottom:370.026667pt;}
.y1c{bottom:375.693333pt;}
.y14{bottom:380.066667pt;}
.yd{bottom:393.066667pt;}
.ya{bottom:401.106667pt;}
.y46{bottom:404.040000pt;}
.y1b{bottom:407.733333pt;}
.y2e{bottom:414.106667pt;}
.y2{bottom:418.466667pt;}
.y50{bottom:425.000000pt;}
.yc{bottom:428.133333pt;}
.y35{bottom:439.133333pt;}
.y1a{bottom:439.800000pt;}
.y45{bottom:443.106667pt;}
.y9{bottom:449.173333pt;}
.y1{bottom:458.506667pt;}
.yb{bottom:462.173333pt;}
.y4f{bottom:465.066667pt;}
.y44{bottom:468.133333pt;}
.y34{bottom:469.200000pt;}
.y19{bottom:470.840000pt;}
.y43{bottom:494.173333pt;}
.y8{bottom:497.226667pt;}
.y33{bottom:500.226667pt;}
.y18{bottom:502.866667pt;}
.y42{bottom:533.226667pt;}
.y40{bottom:564.693333pt;}
.y7{bottom:601.066667pt;}
.y27{bottom:603.200000pt;}
.y41{bottom:635.600000pt;}
.h5{height:64.353516pt;}
.h6{height:67.004492pt;}
.h11{height:73.555143pt;}
.he{height:73.649023pt;}
.h10{height:82.842383pt;}
.hf{height:82.944531pt;}
.hc{height:88.857878pt;}
.hb{height:88.971289pt;}
.hd{height:89.073437pt;}
.ha{height:98.039518pt;}
.h9{height:98.141536pt;}
.h4{height:98.164648pt;}
.h8{height:98.266797pt;}
.h1{height:112.546615pt;}
.h2{height:112.647917pt;}
.h7{height:113.342253pt;}
.h3{height:122.782422pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:97.666648pt;}
.xd{left:104.766648pt;}
.xe{left:111.833314pt;}
.x1{left:112.833314pt;}
.x3{left:121.699981pt;}
.x5{left:145.693314pt;}
.x6{left:169.733314pt;}
.x7{left:193.733314pt;}
.xb{left:207.173314pt;}
.x8{left:217.773314pt;}
.x4{left:483.306648pt;}
.xa{left:487.799981pt;}
.x9{left:498.839981pt;}
.xc{left:907.733314pt;}
}




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