
    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_2db5e93454445a43d6ae50eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_94bf9f4627e40ca109631f12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_889fb751e93df73a1c7d708c.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6a5896640edb4aae25a082da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_a7cd076ec542902ec7255576.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.355000;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_2fec6972ed46e69cea7e0ea5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_342de1e2ea2885b1d81a42b3.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a01751abf7dbb6c0a0afd1a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.550000;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);}
.v4{vertical-align:-64.776000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.932000px;}
.v3{vertical-align:54.180000px;}
.v2{vertical-align:77.718000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.985816px;}
.ls3{letter-spacing:2.989065px;}
.ls2{letter-spacing:2.991816px;}
.ls1{letter-spacing:11.052420px;}
.ls5{letter-spacing:29.883735px;}
.ls0{letter-spacing:31.026263px;}
.ls6{letter-spacing:103.305600px;}
.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:-53.458479px;}
.ws4{word-spacing:-53.458180px;}
.ws25{word-spacing:-44.622600px;}
.ws1{word-spacing:-25.781783px;}
.ws7{word-spacing:-0.257036px;}
.ws1c{word-spacing:-0.178490px;}
.ws0{word-spacing:-0.103292px;}
.ws2d{word-spacing:-0.071731px;}
.ws3e{word-spacing:0.000000px;}
.ws30{word-spacing:0.428377px;}
.ws2f{word-spacing:5.247618px;}
.ws10{word-spacing:5.309229px;}
.ws3a{word-spacing:5.368659px;}
.ws19{word-spacing:5.783089px;}
.ws3b{word-spacing:8.984867px;}
.ws6{word-spacing:8.995916px;}
.ws3c{word-spacing:9.134079px;}
.ws3d{word-spacing:9.150574px;}
.ws18{word-spacing:9.174407px;}
.wsd{word-spacing:9.352897px;}
.ws2c{word-spacing:9.898906px;}
.ws3{word-spacing:10.794501px;}
.ws2a{word-spacing:11.333530px;}
.ws1a{word-spacing:11.673272px;}
.ws24{word-spacing:14.707609px;}
.ws14{word-spacing:15.064590px;}
.ws17{word-spacing:18.098927px;}
.ws1f{word-spacing:18.277417px;}
.ws27{word-spacing:18.633949px;}
.ws1d{word-spacing:20.419302px;}
.ws1b{word-spacing:21.133263px;}
.ws2b{word-spacing:21.304166px;}
.ws33{word-spacing:21.311754px;}
.ws34{word-spacing:21.490244px;}
.ws36{word-spacing:22.382696px;}
.wsc{word-spacing:22.918167px;}
.ws2e{word-spacing:23.240909px;}
.ws9{word-spacing:23.275148px;}
.ws15{word-spacing:25.060052px;}
.ws37{word-spacing:25.417033px;}
.ws1e{word-spacing:27.380427px;}
.ws32{word-spacing:27.737408px;}
.ws22{word-spacing:29.700803px;}
.wsb{word-spacing:31.057330px;}
.wsa{word-spacing:31.235820px;}
.ws31{word-spacing:31.842687px;}
.ws23{word-spacing:32.913630px;}
.ws38{word-spacing:33.556195px;}
.ws29{word-spacing:35.502363px;}
.wsf{word-spacing:37.911361px;}
.ws8{word-spacing:38.880300px;}
.ws28{word-spacing:43.756032px;}
.ws39{word-spacing:44.444110px;}
.wse{word-spacing:44.480234px;}
.ws21{word-spacing:48.977766px;}
.ws13{word-spacing:53.261535px;}
.ws35{word-spacing:59.080322px;}
.ws20{word-spacing:59.258813px;}
.ws12{word-spacing:63.613979px;}
.ws11{word-spacing:85.093157px;}
.ws16{word-spacing:85.336085px;}
.ws26{word-spacing:89.905705px;}
.ws2{word-spacing:96.645686px;}
._21{margin-left:-29.667934px;}
._2{margin-left:-17.478475px;}
._11{margin-left:-14.183186px;}
._0{margin-left:-12.974497px;}
._a{margin-left:-9.134866px;}
._7{margin-left:-7.197019px;}
._5{margin-left:-5.224244px;}
._c{margin-left:-3.202064px;}
._1b{margin-left:-2.151936px;}
._3{margin-left:-1.028146px;}
._1{width:2.547863px;}
._8{width:3.796321px;}
._4{width:5.354415px;}
._16{width:8.389049px;}
._1e{width:30.485760px;}
._1d{width:31.594702px;}
._d{width:41.213668px;}
._e{width:42.453176px;}
._1c{width:48.562022px;}
._13{width:55.216242px;}
._14{width:61.757678px;}
._15{width:64.757593px;}
._9{width:66.755410px;}
._1f{width:70.242773px;}
._1a{width:71.516006px;}
._10{width:72.741638px;}
._23{width:74.705033px;}
._17{width:79.249738px;}
._18{width:83.190127px;}
._19{width:89.024210px;}
._b{width:90.347998px;}
._6{width:91.522439px;}
._f{width:98.976578px;}
._20{width:102.264236px;}
._12{width:108.343673px;}
._24{width:111.976541px;}
._22{width:127.751104px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs6{font-size:123.975000px;}
.fs4{font-size:148.722600px;}
.fs7{font-size:178.490400px;}
.fs5{font-size:214.175400px;}
.fs3{font-size:214.176600px;}
.fs2{font-size:257.036400px;}
.y0{bottom:0.000000px;}
.y3{bottom:16.737000px;}
.y1{bottom:22.470000px;}
.y2{bottom:27.915000px;}
.y35{bottom:147.751500px;}
.y46{bottom:156.517500px;}
.y34{bottom:203.043000px;}
.y45{bottom:211.810500px;}
.y33{bottom:258.336000px;}
.y44{bottom:300.318000px;}
.y32{bottom:313.629000px;}
.y43{bottom:367.566000px;}
.y31{bottom:380.877000px;}
.y42{bottom:434.814000px;}
.y30{bottom:436.168500px;}
.y2f{bottom:491.461500px;}
.y41{bottom:502.062000px;}
.y40{bottom:557.355000px;}
.y2e{bottom:558.709500px;}
.y3f{bottom:612.646500px;}
.y2d{bottom:636.418500px;}
.y3e{bottom:679.894500px;}
.y2c{bottom:681.250500px;}
.y2b{bottom:726.082500px;}
.y3d{bottom:768.402000px;}
.y2a{bottom:770.914500px;}
.y29{bottom:815.746500px;}
.y3c{bottom:823.695000px;}
.y28{bottom:860.577000px;}
.y3b{bottom:890.943000px;}
.y27{bottom:905.409000px;}
.y26{bottom:950.241000px;}
.y3a{bottom:958.191000px;}
.y39{bottom:1025.439000px;}
.y25{bottom:1039.227000px;}
.y24{bottom:1094.518500px;}
.y38{bottom:1113.946500px;}
.y23{bottom:1149.811500px;}
.y37{bottom:1181.194500px;}
.y22{bottom:1205.104500px;}
.y36{bottom:1248.442500px;}
.y21{bottom:1260.397500px;}
.y20{bottom:1315.689000px;}
.y1f{bottom:1443.984000px;}
.y1e{bottom:1661.041500px;}
.y13{bottom:1694.038500px;}
.y1d{bottom:1728.289500px;}
.y12{bottom:1749.331500px;}
.y1c{bottom:1783.581000px;}
.y11{bottom:1804.624500px;}
.y1b{bottom:1838.874000px;}
.y10{bottom:1859.917500px;}
.y1a{bottom:1894.167000px;}
.yf{bottom:1915.209000px;}
.y19{bottom:1961.415000px;}
.ye{bottom:1994.865000px;}
.y18{bottom:2016.708000px;}
.y17{bottom:2071.999500px;}
.y16{bottom:2127.292500px;}
.yd{bottom:2356.941000px;}
.yc{bottom:2412.234000px;}
.yb{bottom:2467.525500px;}
.y15{bottom:2510.353500px;}
.ya{bottom:2522.818500px;}
.y14{bottom:2565.645000px;}
.y9{bottom:2578.111500px;}
.y8{bottom:2693.872500px;}
.y7{bottom:2941.644000px;}
.y6{bottom:2986.476000px;}
.y5{bottom:3059.670000px;}
.y4{bottom:3161.011500px;}
.h3{height:50.211840px;}
.he{height:53.798400px;}
.h2{height:72.304680px;}
.hc{height:77.366008px;}
.h8{height:92.857275px;}
.h4{height:100.401300px;}
.hd{height:124.943280px;}
.hb{height:133.689310px;}
.ha{height:133.867800px;}
.h9{height:179.925480px;}
.h5{height:181.210662px;}
.h7{height:189.111227px;}
.h6{height:214.597375px;}
.h0{height:3575.905500px;}
.h1{height:3576.000000px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x5{left:84.019500px;}
.xb{left:106.299000px;}
.x12{left:116.028000px;}
.x13{left:143.650500px;}
.x10{left:299.919000px;}
.x6{left:438.207000px;}
.xa{left:514.509000px;}
.x8{left:584.304000px;}
.x9{left:634.905000px;}
.x11{left:875.199000px;}
.xd{left:1354.251000px;}
.xe{left:1363.980000px;}
.xf{left:1391.602500px;}
.xc{left:1631.256000px;}
.x14{left:1751.355000px;}
.x7{left:1922.257500px;}
.x1{left:2314.677000px;}
.x2{left:2320.875000px;}
.x3{left:2330.541000px;}
.x4{left:2344.158000px;}
@media print{
.v4{vertical-align:-57.578667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.384000pt;}
.v3{vertical-align:48.160000pt;}
.v2{vertical-align:69.082667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.654058pt;}
.ls3{letter-spacing:2.656947pt;}
.ls2{letter-spacing:2.659392pt;}
.ls1{letter-spacing:9.824373pt;}
.ls5{letter-spacing:26.563320pt;}
.ls0{letter-spacing:27.578900pt;}
.ls6{letter-spacing:91.827200pt;}
.ws5{word-spacing:-47.518648pt;}
.ws4{word-spacing:-47.518382pt;}
.ws25{word-spacing:-39.664533pt;}
.ws1{word-spacing:-22.917140pt;}
.ws7{word-spacing:-0.228477pt;}
.ws1c{word-spacing:-0.158658pt;}
.ws0{word-spacing:-0.091815pt;}
.ws2d{word-spacing:-0.063761pt;}
.ws3e{word-spacing:0.000000pt;}
.ws30{word-spacing:0.380780pt;}
.ws2f{word-spacing:4.664549pt;}
.ws10{word-spacing:4.719315pt;}
.ws3a{word-spacing:4.772141pt;}
.ws19{word-spacing:5.140524pt;}
.ws3b{word-spacing:7.986548pt;}
.ws6{word-spacing:7.996370pt;}
.ws3c{word-spacing:8.119181pt;}
.ws3d{word-spacing:8.133844pt;}
.ws18{word-spacing:8.155028pt;}
.wsd{word-spacing:8.313686pt;}
.ws2c{word-spacing:8.799027pt;}
.ws3{word-spacing:9.595112pt;}
.ws2a{word-spacing:10.074249pt;}
.ws1a{word-spacing:10.376242pt;}
.ws24{word-spacing:13.073430pt;}
.ws14{word-spacing:13.390746pt;}
.ws17{word-spacing:16.087935pt;}
.ws1f{word-spacing:16.246593pt;}
.ws27{word-spacing:16.563510pt;}
.ws1d{word-spacing:18.150490pt;}
.ws1b{word-spacing:18.785123pt;}
.ws2b{word-spacing:18.937037pt;}
.ws33{word-spacing:18.943781pt;}
.ws34{word-spacing:19.102439pt;}
.ws36{word-spacing:19.895730pt;}
.wsc{word-spacing:20.371704pt;}
.ws2e{word-spacing:20.658586pt;}
.ws9{word-spacing:20.689021pt;}
.ws15{word-spacing:22.275602pt;}
.ws37{word-spacing:22.592918pt;}
.ws1e{word-spacing:24.338158pt;}
.ws32{word-spacing:24.655474pt;}
.ws22{word-spacing:26.400713pt;}
.wsb{word-spacing:27.606515pt;}
.wsa{word-spacing:27.765173pt;}
.ws31{word-spacing:28.304611pt;}
.ws23{word-spacing:29.256560pt;}
.ws38{word-spacing:29.827729pt;}
.ws29{word-spacing:31.557656pt;}
.wsf{word-spacing:33.698988pt;}
.ws8{word-spacing:34.560267pt;}
.ws28{word-spacing:38.894251pt;}
.ws39{word-spacing:39.505875pt;}
.wse{word-spacing:39.537985pt;}
.ws21{word-spacing:43.535792pt;}
.ws13{word-spacing:47.343587pt;}
.ws35{word-spacing:52.515842pt;}
.ws20{word-spacing:52.674500pt;}
.ws12{word-spacing:56.545759pt;}
.ws11{word-spacing:75.638362pt;}
.ws16{word-spacing:75.854298pt;}
.ws26{word-spacing:79.916182pt;}
.ws2{word-spacing:85.907277pt;}
._21{margin-left:-26.371497pt;}
._2{margin-left:-15.536422pt;}
._11{margin-left:-12.607277pt;}
._0{margin-left:-11.532887pt;}
._a{margin-left:-8.119881pt;}
._7{margin-left:-6.397350pt;}
._5{margin-left:-4.643773pt;}
._c{margin-left:-2.846279pt;}
._1b{margin-left:-1.912832pt;}
._3{margin-left:-0.913907pt;}
._1{width:2.264767pt;}
._8{width:3.374508pt;}
._4{width:4.759480pt;}
._16{width:7.456932pt;}
._1e{width:27.098453pt;}
._1d{width:28.084180pt;}
._d{width:36.634371pt;}
._e{width:37.736157pt;}
._1c{width:43.166242pt;}
._13{width:49.081104pt;}
._14{width:54.895714pt;}
._15{width:57.562305pt;}
._9{width:59.338142pt;}
._1f{width:62.438020pt;}
._1a{width:63.569783pt;}
._10{width:64.659234pt;}
._23{width:66.404474pt;}
._17{width:70.444211pt;}
._18{width:73.946780pt;}
._19{width:79.132631pt;}
._b{width:80.309332pt;}
._6{width:81.353279pt;}
._f{width:87.979181pt;}
._20{width:90.901543pt;}
._12{width:96.305487pt;}
._24{width:99.534703pt;}
._22{width:113.556537pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs6{font-size:110.200000pt;}
.fs4{font-size:132.197867pt;}
.fs7{font-size:158.658133pt;}
.fs5{font-size:190.378133pt;}
.fs3{font-size:190.379200pt;}
.fs2{font-size:228.476800pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:14.877333pt;}
.y1{bottom:19.973333pt;}
.y2{bottom:24.813333pt;}
.y35{bottom:131.334667pt;}
.y46{bottom:139.126667pt;}
.y34{bottom:180.482667pt;}
.y45{bottom:188.276000pt;}
.y33{bottom:229.632000pt;}
.y44{bottom:266.949333pt;}
.y32{bottom:278.781333pt;}
.y43{bottom:326.725333pt;}
.y31{bottom:338.557333pt;}
.y42{bottom:386.501333pt;}
.y30{bottom:387.705333pt;}
.y2f{bottom:436.854667pt;}
.y41{bottom:446.277333pt;}
.y40{bottom:495.426667pt;}
.y2e{bottom:496.630667pt;}
.y3f{bottom:544.574667pt;}
.y2d{bottom:565.705333pt;}
.y3e{bottom:604.350667pt;}
.y2c{bottom:605.556000pt;}
.y2b{bottom:645.406667pt;}
.y3d{bottom:683.024000pt;}
.y2a{bottom:685.257333pt;}
.y29{bottom:725.108000pt;}
.y3c{bottom:732.173333pt;}
.y28{bottom:764.957333pt;}
.y3b{bottom:791.949333pt;}
.y27{bottom:804.808000pt;}
.y26{bottom:844.658667pt;}
.y3a{bottom:851.725333pt;}
.y39{bottom:911.501333pt;}
.y25{bottom:923.757333pt;}
.y24{bottom:972.905333pt;}
.y38{bottom:990.174667pt;}
.y23{bottom:1022.054667pt;}
.y37{bottom:1049.950667pt;}
.y22{bottom:1071.204000pt;}
.y36{bottom:1109.726667pt;}
.y21{bottom:1120.353333pt;}
.y20{bottom:1169.501333pt;}
.y1f{bottom:1283.541333pt;}
.y1e{bottom:1476.481333pt;}
.y13{bottom:1505.812000pt;}
.y1d{bottom:1536.257333pt;}
.y12{bottom:1554.961333pt;}
.y1c{bottom:1585.405333pt;}
.y11{bottom:1604.110667pt;}
.y1b{bottom:1634.554667pt;}
.y10{bottom:1653.260000pt;}
.y1a{bottom:1683.704000pt;}
.yf{bottom:1702.408000pt;}
.y19{bottom:1743.480000pt;}
.ye{bottom:1773.213333pt;}
.y18{bottom:1792.629333pt;}
.y17{bottom:1841.777333pt;}
.y16{bottom:1890.926667pt;}
.yd{bottom:2095.058667pt;}
.yc{bottom:2144.208000pt;}
.yb{bottom:2193.356000pt;}
.y15{bottom:2231.425333pt;}
.ya{bottom:2242.505333pt;}
.y14{bottom:2280.573333pt;}
.y9{bottom:2291.654667pt;}
.y8{bottom:2394.553333pt;}
.y7{bottom:2614.794667pt;}
.y6{bottom:2654.645333pt;}
.y5{bottom:2719.706667pt;}
.y4{bottom:2809.788000pt;}
.h3{height:44.632747pt;}
.he{height:47.820800pt;}
.h2{height:64.270827pt;}
.hc{height:68.769785pt;}
.h8{height:82.539800pt;}
.h4{height:89.245600pt;}
.hd{height:111.060693pt;}
.hb{height:118.834942pt;}
.ha{height:118.993600pt;}
.h9{height:159.933760pt;}
.h5{height:161.076144pt;}
.h7{height:168.098869pt;}
.h6{height:190.753222pt;}
.h0{height:3178.582667pt;}
.h1{height:3178.666667pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x5{left:74.684000pt;}
.xb{left:94.488000pt;}
.x12{left:103.136000pt;}
.x13{left:127.689333pt;}
.x10{left:266.594667pt;}
.x6{left:389.517333pt;}
.xa{left:457.341333pt;}
.x8{left:519.381333pt;}
.x9{left:564.360000pt;}
.x11{left:777.954667pt;}
.xd{left:1203.778667pt;}
.xe{left:1212.426667pt;}
.xf{left:1236.980000pt;}
.xc{left:1450.005333pt;}
.x14{left:1556.760000pt;}
.x7{left:1708.673333pt;}
.x1{left:2057.490667pt;}
.x2{left:2063.000000pt;}
.x3{left:2071.592000pt;}
.x4{left:2083.696000pt;}
}




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