
    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_5e07fe3791e3364ab90432bf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_334a6037d689abacfc37ec18.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_256399512ae9426dd2719cde.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_01c2263cdfac92b863199f19.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a5d7e555703757a90de606d6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_b79a56046dfa3256bc390d42.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_89f9909e66e2fbaf9688ea11.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_d01868c80551c300a1f55138.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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;}
.ls7{letter-spacing:-2.322000px;}
.lsf{letter-spacing:-1.230000px;}
.ls8{letter-spacing:-1.128000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.027800px;}
.lsd{letter-spacing:1.230000px;}
.lse{letter-spacing:1.524000px;}
.ls9{letter-spacing:1.525500px;}
.lsb{letter-spacing:1.645500px;}
.lsa{letter-spacing:1.705500px;}
.ls13{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.178000px;}
.ls11{letter-spacing:2.220000px;}
.ls5{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.370000px;}
.ls15{letter-spacing:2.430000px;}
.ls10{letter-spacing:3.378000px;}
.ls4{letter-spacing:7.875000px;}
.lsc{letter-spacing:12.375000px;}
.ls17{letter-spacing:25.875000px;}
.ls3{letter-spacing:25.995000px;}
.ls14{letter-spacing:34.995000px;}
.ls16{letter-spacing:46.383000px;}
.ls2{letter-spacing:1384.417500px;}
.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;}
}
.ws0{word-spacing:-23.590500px;}
.ws1{word-spacing:-21.412500px;}
.ws5{word-spacing:-21.375000px;}
.ws7{word-spacing:-20.649000px;}
.ws6{word-spacing:-20.355000px;}
.ws3{word-spacing:-19.125000px;}
.ws2{word-spacing:-19.090500px;}
.ws8{word-spacing:-17.895000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-8.736300px;}
._5{margin-left:-7.280250px;}
._20{margin-left:-6.170700px;}
._6{margin-left:-4.957800px;}
._4{margin-left:-3.083400px;}
._3{margin-left:-1.798650px;}
._0{width:1.199100px;}
._2{width:2.312550px;}
._d{width:3.614550px;}
._7{width:4.628850px;}
._11{width:5.704950px;}
._12{width:7.103100px;}
._e{width:8.435100px;}
._17{width:9.724500px;}
._c{width:11.437650px;}
._a{width:12.596100px;}
._22{width:13.733250px;}
._1f{width:15.873900px;}
._b{width:17.176950px;}
._18{width:20.567850px;}
._f{width:21.619050px;}
._21{width:22.697700px;}
._10{width:24.204000px;}
._14{width:26.056200px;}
._19{width:27.852150px;}
._13{width:29.820150px;}
._1d{width:31.195200px;}
._29{width:34.282050px;}
._28{width:35.328450px;}
._25{width:40.035750px;}
._23{width:43.942500px;}
._24{width:45.679650px;}
._1c{width:47.427150px;}
._1b{width:49.038900px;}
._1a{width:53.033250px;}
._27{width:61.853250px;}
._26{width:66.274050px;}
._1e{width:67.302900px;}
._15{width:70.619550px;}
._16{width:71.892450px;}
._2b{width:197.200650px;}
._8{width:307.501500px;}
._2a{width:845.925000px;}
._9{width:1956.457500px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(54,95,145);}
.fs1{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:6.750000px;}
.y33{bottom:7.875000px;}
.y54{bottom:7.890000px;}
.y38{bottom:7.920000px;}
.y3a{bottom:20.250000px;}
.y37{bottom:20.295000px;}
.y31{bottom:21.405000px;}
.y58{bottom:21.420000px;}
.y56{bottom:32.670000px;}
.y3c{bottom:33.750000px;}
.y32{bottom:33.780000px;}
.y35{bottom:33.795000px;}
.y9{bottom:57.412500px;}
.y8{bottom:82.200000px;}
.y7{bottom:105.825000px;}
.y6{bottom:130.612500px;}
.y71{bottom:163.275000px;}
.y2d{bottom:167.775000px;}
.y52{bottom:182.400000px;}
.y70{bottom:189.150000px;}
.y2c{bottom:193.650000px;}
.y51{bottom:208.320000px;}
.y6f{bottom:215.070000px;}
.y2b{bottom:219.570000px;}
.y50{bottom:234.195000px;}
.y6e{bottom:240.975000px;}
.y2a{bottom:245.475000px;}
.y4f{bottom:260.100000px;}
.y6d{bottom:265.725000px;}
.y29{bottom:271.350000px;}
.y4e{bottom:286.005000px;}
.y6c{bottom:291.645000px;}
.y28{bottom:297.255000px;}
.y4d{bottom:311.895000px;}
.y6b{bottom:317.505000px;}
.y27{bottom:323.130000px;}
.y4c{bottom:337.800000px;}
.y6a{bottom:343.425000px;}
.y26{bottom:349.050000px;}
.y4b{bottom:363.675000px;}
.y69{bottom:369.345000px;}
.y25{bottom:374.955000px;}
.y4a{bottom:389.595000px;}
.y68{bottom:395.205000px;}
.y24{bottom:399.720000px;}
.y49{bottom:415.500000px;}
.y67{bottom:421.125000px;}
.y23{bottom:425.625000px;}
.y48{bottom:441.375000px;}
.y66{bottom:447.000000px;}
.y22{bottom:451.530000px;}
.y47{bottom:466.170000px;}
.y65{bottom:472.920000px;}
.y21{bottom:477.420000px;}
.y46{bottom:492.075000px;}
.y64{bottom:498.825000px;}
.y20{bottom:503.325000px;}
.y45{bottom:517.950000px;}
.y63{bottom:524.700000px;}
.y1f{bottom:529.200000px;}
.y44{bottom:543.870000px;}
.y62{bottom:550.620000px;}
.y1e{bottom:555.105000px;}
.y43{bottom:569.745000px;}
.y61{bottom:575.400000px;}
.y1d{bottom:581.025000px;}
.y42{bottom:595.650000px;}
.y60{bottom:601.275000px;}
.y1c{bottom:606.900000px;}
.y41{bottom:621.570000px;}
.y5f{bottom:627.195000px;}
.y72{bottom:631.695000px;}
.y1b{bottom:632.820000px;}
.y40{bottom:647.445000px;}
.y5e{bottom:653.070000px;}
.y1a{bottom:658.725000px;}
.y3f{bottom:673.350000px;}
.y5d{bottom:678.975000px;}
.y19{bottom:684.600000px;}
.y3e{bottom:699.225000px;}
.y5c{bottom:704.880000px;}
.y18{bottom:710.505000px;}
.y3d{bottom:725.130000px;}
.y5b{bottom:730.755000px;}
.y17{bottom:735.255000px;}
.y3b{bottom:746.550000px;}
.y5a{bottom:752.175000px;}
.y16{bottom:761.175000px;}
.y15{bottom:787.080000px;}
.y39{bottom:803.955000px;}
.y59{bottom:809.580000px;}
.y14{bottom:812.955000px;}
.y13{bottom:838.875000px;}
.y36{bottom:861.375000px;}
.y12{bottom:864.750000px;}
.y57{bottom:867.000000px;}
.y11{bottom:890.670000px;}
.y10{bottom:916.575000px;}
.y34{bottom:918.825000px;}
.y55{bottom:925.575000px;}
.yf{bottom:942.450000px;}
.ye{bottom:968.370000px;}
.y30{bottom:976.245000px;}
.y53{bottom:982.980000px;}
.yd{bottom:994.275000px;}
.yc{bottom:1020.150000px;}
.y2e{bottom:1034.820000px;}
.yb{bottom:1044.945000px;}
.ya{bottom:1070.820000px;}
.y5{bottom:1094.475000px;}
.y4{bottom:1118.100000px;}
.y3{bottom:1142.880000px;}
.y2{bottom:1166.550000px;}
.y1{bottom:1191.300000px;}
.h9{height:24.750000px;}
.hd{height:25.912500px;}
.he{height:50.662500px;}
.ha{height:51.772500px;}
.hb{height:51.787500px;}
.hc{height:51.825000px;}
.h8{height:53.415527px;}
.h6{height:55.918213px;}
.h5{height:75.043213px;}
.h7{height:75.080566px;}
.h4{height:77.097656px;}
.hf{height:78.629945px;}
.h3{height:84.060791px;}
.h2{height:86.319141px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w5{width:96.862500px;}
.w2{width:145.312500px;}
.w3{width:192.600000px;}
.w6{width:236.550000px;}
.w4{width:379.575000px;}
.w7{width:384.105000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.125000px;}
.x2e{left:4.500000px;}
.x14{left:14.625000px;}
.x1c{left:22.530000px;}
.x11{left:25.905000px;}
.x15{left:27.037500px;}
.x16{left:28.162500px;}
.x20{left:29.287500px;}
.x2a{left:31.545000px;}
.x10{left:32.662500px;}
.xd{left:34.920000px;}
.x12{left:37.170000px;}
.x1a{left:38.295000px;}
.x1b{left:40.545000px;}
.xb{left:41.662500px;}
.x1f{left:47.287500px;}
.x13{left:48.405000px;}
.x18{left:49.530000px;}
.x2f{left:50.700000px;}
.x1d{left:52.950000px;}
.x30{left:54.075000px;}
.x24{left:55.200000px;}
.x17{left:63.075000px;}
.x2d{left:70.980000px;}
.x29{left:72.120000px;}
.x21{left:77.685000px;}
.xa{left:84.487500px;}
.x2{left:85.612487px;}
.x27{left:92.370000px;}
.xf{left:105.855000px;}
.x9{left:107.024987px;}
.x2b{left:108.150000px;}
.x28{left:109.275000px;}
.x4{left:111.524987px;}
.x2c{left:112.650000px;}
.x3{left:138.562487px;}
.x19{left:145.275000px;}
.x1e{left:153.180000px;}
.x1{left:162.224987px;}
.x26{left:175.725000px;}
.x23{left:185.850000px;}
.xc{left:234.300000px;}
.x8{left:284.999987px;}
.x7{left:287.249987px;}
.x31{left:346.949987px;}
.x5{left:355.949987px;}
.x25{left:425.775000px;}
.xe{left:430.320000px;}
.x6{left:458.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.064000pt;}
.lsf{letter-spacing:-1.093333pt;}
.ls8{letter-spacing:-1.002667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.913600pt;}
.lsd{letter-spacing:1.093333pt;}
.lse{letter-spacing:1.354667pt;}
.ls9{letter-spacing:1.356000pt;}
.lsb{letter-spacing:1.462667pt;}
.lsa{letter-spacing:1.516000pt;}
.ls13{letter-spacing:1.904000pt;}
.ls1{letter-spacing:1.936000pt;}
.ls11{letter-spacing:1.973333pt;}
.ls5{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.106667pt;}
.ls15{letter-spacing:2.160000pt;}
.ls10{letter-spacing:3.002667pt;}
.ls4{letter-spacing:7.000000pt;}
.lsc{letter-spacing:11.000000pt;}
.ls17{letter-spacing:23.000000pt;}
.ls3{letter-spacing:23.106667pt;}
.ls14{letter-spacing:31.106667pt;}
.ls16{letter-spacing:41.229333pt;}
.ls2{letter-spacing:1230.593333pt;}
.ws0{word-spacing:-20.969333pt;}
.ws1{word-spacing:-19.033333pt;}
.ws5{word-spacing:-19.000000pt;}
.ws7{word-spacing:-18.354667pt;}
.ws6{word-spacing:-18.093333pt;}
.ws3{word-spacing:-17.000000pt;}
.ws2{word-spacing:-16.969333pt;}
.ws8{word-spacing:-15.906667pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-7.765600pt;}
._5{margin-left:-6.471333pt;}
._20{margin-left:-5.485067pt;}
._6{margin-left:-4.406933pt;}
._4{margin-left:-2.740800pt;}
._3{margin-left:-1.598800pt;}
._0{width:1.065867pt;}
._2{width:2.055600pt;}
._d{width:3.212933pt;}
._7{width:4.114533pt;}
._11{width:5.071067pt;}
._12{width:6.313867pt;}
._e{width:7.497867pt;}
._17{width:8.644000pt;}
._c{width:10.166800pt;}
._a{width:11.196533pt;}
._22{width:12.207333pt;}
._1f{width:14.110133pt;}
._b{width:15.268400pt;}
._18{width:18.282533pt;}
._f{width:19.216933pt;}
._21{width:20.175733pt;}
._10{width:21.514667pt;}
._14{width:23.161067pt;}
._19{width:24.757467pt;}
._13{width:26.506800pt;}
._1d{width:27.729067pt;}
._29{width:30.472933pt;}
._28{width:31.403067pt;}
._25{width:35.587333pt;}
._23{width:39.060000pt;}
._24{width:40.604133pt;}
._1c{width:42.157467pt;}
._1b{width:43.590133pt;}
._1a{width:47.140667pt;}
._27{width:54.980667pt;}
._26{width:58.910267pt;}
._1e{width:59.824800pt;}
._15{width:62.772933pt;}
._16{width:63.904400pt;}
._2b{width:175.289467pt;}
._8{width:273.334667pt;}
._2a{width:751.933333pt;}
._9{width:1739.073333pt;}
.fs1{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:6.000000pt;}
.y33{bottom:7.000000pt;}
.y54{bottom:7.013333pt;}
.y38{bottom:7.040000pt;}
.y3a{bottom:18.000000pt;}
.y37{bottom:18.040000pt;}
.y31{bottom:19.026667pt;}
.y58{bottom:19.040000pt;}
.y56{bottom:29.040000pt;}
.y3c{bottom:30.000000pt;}
.y32{bottom:30.026667pt;}
.y35{bottom:30.040000pt;}
.y9{bottom:51.033333pt;}
.y8{bottom:73.066667pt;}
.y7{bottom:94.066667pt;}
.y6{bottom:116.100000pt;}
.y71{bottom:145.133333pt;}
.y2d{bottom:149.133333pt;}
.y52{bottom:162.133333pt;}
.y70{bottom:168.133333pt;}
.y2c{bottom:172.133333pt;}
.y51{bottom:185.173333pt;}
.y6f{bottom:191.173333pt;}
.y2b{bottom:195.173333pt;}
.y50{bottom:208.173333pt;}
.y6e{bottom:214.200000pt;}
.y2a{bottom:218.200000pt;}
.y4f{bottom:231.200000pt;}
.y6d{bottom:236.200000pt;}
.y29{bottom:241.200000pt;}
.y4e{bottom:254.226667pt;}
.y6c{bottom:259.240000pt;}
.y28{bottom:264.226667pt;}
.y4d{bottom:277.240000pt;}
.y6b{bottom:282.226667pt;}
.y27{bottom:287.226667pt;}
.y4c{bottom:300.266667pt;}
.y6a{bottom:305.266667pt;}
.y26{bottom:310.266667pt;}
.y4b{bottom:323.266667pt;}
.y69{bottom:328.306667pt;}
.y25{bottom:333.293333pt;}
.y4a{bottom:346.306667pt;}
.y68{bottom:351.293333pt;}
.y24{bottom:355.306667pt;}
.y49{bottom:369.333333pt;}
.y67{bottom:374.333333pt;}
.y23{bottom:378.333333pt;}
.y48{bottom:392.333333pt;}
.y66{bottom:397.333333pt;}
.y22{bottom:401.360000pt;}
.y47{bottom:414.373333pt;}
.y65{bottom:420.373333pt;}
.y21{bottom:424.373333pt;}
.y46{bottom:437.400000pt;}
.y64{bottom:443.400000pt;}
.y20{bottom:447.400000pt;}
.y45{bottom:460.400000pt;}
.y63{bottom:466.400000pt;}
.y1f{bottom:470.400000pt;}
.y44{bottom:483.440000pt;}
.y62{bottom:489.440000pt;}
.y1e{bottom:493.426667pt;}
.y43{bottom:506.440000pt;}
.y61{bottom:511.466667pt;}
.y1d{bottom:516.466667pt;}
.y42{bottom:529.466667pt;}
.y60{bottom:534.466667pt;}
.y1c{bottom:539.466667pt;}
.y41{bottom:552.506667pt;}
.y5f{bottom:557.506667pt;}
.y72{bottom:561.506667pt;}
.y1b{bottom:562.506667pt;}
.y40{bottom:575.506667pt;}
.y5e{bottom:580.506667pt;}
.y1a{bottom:585.533333pt;}
.y3f{bottom:598.533333pt;}
.y5d{bottom:603.533333pt;}
.y19{bottom:608.533333pt;}
.y3e{bottom:621.533333pt;}
.y5c{bottom:626.560000pt;}
.y18{bottom:631.560000pt;}
.y3d{bottom:644.560000pt;}
.y5b{bottom:649.560000pt;}
.y17{bottom:653.560000pt;}
.y3b{bottom:663.600000pt;}
.y5a{bottom:668.600000pt;}
.y16{bottom:676.600000pt;}
.y15{bottom:699.626667pt;}
.y39{bottom:714.626667pt;}
.y59{bottom:719.626667pt;}
.y14{bottom:722.626667pt;}
.y13{bottom:745.666667pt;}
.y36{bottom:765.666667pt;}
.y12{bottom:768.666667pt;}
.y57{bottom:770.666667pt;}
.y11{bottom:791.706667pt;}
.y10{bottom:814.733333pt;}
.y34{bottom:816.733333pt;}
.y55{bottom:822.733333pt;}
.yf{bottom:837.733333pt;}
.ye{bottom:860.773333pt;}
.y30{bottom:867.773333pt;}
.y53{bottom:873.760000pt;}
.yd{bottom:883.800000pt;}
.yc{bottom:906.800000pt;}
.y2e{bottom:919.840000pt;}
.yb{bottom:928.840000pt;}
.ya{bottom:951.840000pt;}
.y5{bottom:972.866667pt;}
.y4{bottom:993.866667pt;}
.y3{bottom:1015.893333pt;}
.y2{bottom:1036.933333pt;}
.y1{bottom:1058.933333pt;}
.h9{height:22.000000pt;}
.hd{height:23.033333pt;}
.he{height:45.033333pt;}
.ha{height:46.020000pt;}
.hb{height:46.033333pt;}
.hc{height:46.066667pt;}
.h8{height:47.480469pt;}
.h6{height:49.705078pt;}
.h5{height:66.705078pt;}
.h7{height:66.738281pt;}
.h4{height:68.531250pt;}
.hf{height:69.893285pt;}
.h3{height:74.720703pt;}
.h2{height:76.728125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w5{width:86.100000pt;}
.w2{width:129.166667pt;}
.w3{width:171.200000pt;}
.w6{width:210.266667pt;}
.w4{width:337.400000pt;}
.w7{width:341.426667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.000000pt;}
.x2e{left:4.000000pt;}
.x14{left:13.000000pt;}
.x1c{left:20.026667pt;}
.x11{left:23.026667pt;}
.x15{left:24.033333pt;}
.x16{left:25.033333pt;}
.x20{left:26.033333pt;}
.x2a{left:28.040000pt;}
.x10{left:29.033333pt;}
.xd{left:31.040000pt;}
.x12{left:33.040000pt;}
.x1a{left:34.040000pt;}
.x1b{left:36.040000pt;}
.xb{left:37.033333pt;}
.x1f{left:42.033333pt;}
.x13{left:43.026667pt;}
.x18{left:44.026667pt;}
.x2f{left:45.066667pt;}
.x1d{left:47.066667pt;}
.x30{left:48.066667pt;}
.x24{left:49.066667pt;}
.x17{left:56.066667pt;}
.x2d{left:63.093333pt;}
.x29{left:64.106667pt;}
.x21{left:69.053333pt;}
.xa{left:75.100000pt;}
.x2{left:76.099988pt;}
.x27{left:82.106667pt;}
.xf{left:94.093333pt;}
.x9{left:95.133322pt;}
.x2b{left:96.133333pt;}
.x28{left:97.133333pt;}
.x4{left:99.133322pt;}
.x2c{left:100.133333pt;}
.x3{left:123.166655pt;}
.x19{left:129.133333pt;}
.x1e{left:136.160000pt;}
.x1{left:144.199988pt;}
.x26{left:156.200000pt;}
.x23{left:165.200000pt;}
.xc{left:208.266667pt;}
.x8{left:253.333322pt;}
.x7{left:255.333322pt;}
.x31{left:308.399988pt;}
.x5{left:316.399988pt;}
.x25{left:378.466667pt;}
.xe{left:382.506667pt;}
.x6{left:407.533322pt;}
}




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