
    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_1b26043c6d0dd766966ee613.woff')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_a5c3b85330b2983e6bb82b1b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.072754;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_32ff1a242ddef303af2869cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_0649129aafe5fe769eb13c6f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_cf9f6d16430008c58f469fb1.woff')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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.494000px;}
.lsc{letter-spacing:-1.386000px;}
.ls14{letter-spacing:-1.182000px;}
.lsb{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.ls18{letter-spacing:15.066720px;}
.ls16{letter-spacing:43.866720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.758000px;}
.ws7{word-spacing:-13.554000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.446000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-2598.546000px;}
._5{margin-left:-1366.159680px;}
._c{margin-left:-1006.234560px;}
._7{margin-left:-930.389760px;}
._a{margin-left:-871.500000px;}
._e{margin-left:-575.933760px;}
._8{margin-left:-535.046400px;}
._d{margin-left:-183.643200px;}
._9{margin-left:-33.120000px;}
._6{margin-left:-8.213760px;}
._1e{margin-left:-7.072560px;}
._f{margin-left:-5.575200px;}
._17{margin-left:-4.447440px;}
._b{margin-left:-3.312000px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._10{width:4.586160px;}
._11{width:5.620320px;}
._14{width:7.035120px;}
._15{width:8.035920px;}
._16{width:9.357120px;}
._13{width:10.707120px;}
._12{width:12.088800px;}
._1a{width:13.117680px;}
._19{width:16.477920px;}
._18{width:18.244080px;}
._1b{width:20.098080px;}
._28{width:21.198960px;}
._1d{width:22.538160px;}
._1c{width:23.862960px;}
._24{width:102.975120px;}
._27{width:107.321040px;}
._26{width:108.338400px;}
._25{width:109.532160px;}
._23{width:123.148080px;}
._21{width:124.327440px;}
._20{width:128.131920px;}
._1f{width:129.160080px;}
._22{width:130.533120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.400000px;}
.y35{bottom:91.836000px;}
.y6d{bottom:93.636000px;}
.y95{bottom:95.436000px;}
.y9a{bottom:104.436000px;}
.y34{bottom:111.816000px;}
.y6c{bottom:113.436000px;}
.y94{bottom:115.236000px;}
.y99{bottom:124.236000px;}
.y33{bottom:131.616000px;}
.y6b{bottom:133.236000px;}
.y93{bottom:135.216000px;}
.y98{bottom:144.216000px;}
.y32{bottom:151.410000px;}
.y6a{bottom:153.210000px;}
.y92{bottom:155.010000px;}
.y97{bottom:164.010000px;}
.y31{bottom:171.210000px;}
.y69{bottom:173.010000px;}
.y91{bottom:174.810000px;}
.y96{bottom:183.810000px;}
.y30{bottom:191.010000px;}
.y68{bottom:192.810000px;}
.y90{bottom:203.610000px;}
.y2f{bottom:210.990000px;}
.y67{bottom:212.610000px;}
.y8f{bottom:223.410000px;}
.y2e{bottom:230.790000px;}
.y66{bottom:232.410000px;}
.y8e{bottom:243.390000px;}
.y2d{bottom:250.590000px;}
.y65{bottom:252.390000px;}
.y8d{bottom:263.190000px;}
.y2c{bottom:270.390000px;}
.y64{bottom:272.190000px;}
.y8c{bottom:282.990000px;}
.y2b{bottom:290.190000px;}
.y63{bottom:291.990000px;}
.y8b{bottom:302.790000px;}
.y2a{bottom:310.170000px;}
.y62{bottom:311.790000px;}
.y8a{bottom:322.590000px;}
.y29{bottom:330.015000px;}
.y61{bottom:331.635000px;}
.y89{bottom:342.615000px;}
.y28{bottom:349.815000px;}
.y60{bottom:351.615000px;}
.y88{bottom:362.415000px;}
.y27{bottom:369.615000px;}
.y5f{bottom:371.415000px;}
.y87{bottom:382.215000px;}
.y26{bottom:389.415000px;}
.y5e{bottom:391.215000px;}
.y86{bottom:402.015000px;}
.y25{bottom:409.395000px;}
.y5d{bottom:411.015000px;}
.y85{bottom:421.815000px;}
.y24{bottom:429.195000px;}
.y5c{bottom:430.815000px;}
.y84{bottom:441.795000px;}
.y23{bottom:448.995000px;}
.y5b{bottom:450.795000px;}
.y83{bottom:461.595000px;}
.y22{bottom:468.795000px;}
.y5a{bottom:470.595000px;}
.y82{bottom:481.395000px;}
.y21{bottom:488.595000px;}
.y59{bottom:490.395000px;}
.y81{bottom:501.195000px;}
.y20{bottom:508.575000px;}
.y58{bottom:510.195000px;}
.y80{bottom:520.995000px;}
.y1f{bottom:528.375000px;}
.y57{bottom:529.995000px;}
.y7f{bottom:540.975000px;}
.y1e{bottom:548.175000px;}
.y56{bottom:549.975000px;}
.y7e{bottom:560.775000px;}
.y1d{bottom:567.975000px;}
.y55{bottom:569.775000px;}
.y7d{bottom:580.575000px;}
.y1c{bottom:587.775000px;}
.y54{bottom:589.575000px;}
.y7c{bottom:600.405000px;}
.y1b{bottom:607.785000px;}
.y53{bottom:609.405000px;}
.y7b{bottom:620.205000px;}
.y1a{bottom:627.585000px;}
.y52{bottom:629.205000px;}
.y7a{bottom:640.185000px;}
.y51{bottom:649.185000px;}
.y19{bottom:649.725000px;}
.y79{bottom:659.985000px;}
.y50{bottom:668.985000px;}
.y18{bottom:669.525000px;}
.y78{bottom:679.785000px;}
.y4f{bottom:688.785000px;}
.y17{bottom:698.325000px;}
.y77{bottom:699.585000px;}
.y4e{bottom:708.585000px;}
.y16{bottom:718.125000px;}
.y76{bottom:719.385000px;}
.y4d{bottom:728.385000px;}
.y15{bottom:737.925000px;}
.y75{bottom:739.365000px;}
.y4c{bottom:748.365000px;}
.y14{bottom:757.905000px;}
.y74{bottom:759.165000px;}
.y4b{bottom:768.165000px;}
.y13{bottom:777.705000px;}
.y73{bottom:778.965000px;}
.y4a{bottom:787.965000px;}
.y12{bottom:797.505000px;}
.y72{bottom:798.765000px;}
.y49{bottom:807.765000px;}
.y11{bottom:817.305000px;}
.y71{bottom:818.565000px;}
.y48{bottom:827.565000px;}
.y10{bottom:837.105000px;}
.y70{bottom:838.545000px;}
.y47{bottom:847.545000px;}
.yf{bottom:857.085000px;}
.y6f{bottom:858.345000px;}
.y46{bottom:867.390000px;}
.ye{bottom:876.930000px;}
.y6e{bottom:878.190000px;}
.y45{bottom:887.190000px;}
.yd{bottom:896.730000px;}
.y44{bottom:906.990000px;}
.yc{bottom:918.870000px;}
.y43{bottom:926.790000px;}
.yb{bottom:943.890000px;}
.y42{bottom:946.770000px;}
.ya{bottom:963.690000px;}
.y41{bottom:966.570000px;}
.y9{bottom:978.810000px;}
.y40{bottom:986.370000px;}
.y8{bottom:1000.050000px;}
.y3f{bottom:1006.170000px;}
.y7{bottom:1023.630000px;}
.y3e{bottom:1025.970000px;}
.y3d{bottom:1045.950000px;}
.y5{bottom:1061.970000px;}
.y3c{bottom:1065.750000px;}
.y3b{bottom:1085.550000px;}
.y4{bottom:1092.750000px;}
.y3a{bottom:1105.350000px;}
.y3{bottom:1123.710000px;}
.y39{bottom:1125.150000px;}
.y38{bottom:1145.160000px;}
.y2{bottom:1154.520000px;}
.y37{bottom:1164.960000px;}
.y1{bottom:1185.300000px;}
.y36{bottom:1194.300000px;}
.h7{height:34.038984px;}
.h5{height:51.210352px;}
.h8{height:52.319180px;}
.h2{height:56.763281px;}
.h3{height:57.992344px;}
.h6{height:59.545547px;}
.h4{height:82.059961px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:86.399987px;}
.x4{left:113.435987px;}
.x2{left:314.354987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.328000pt;}
.lsc{letter-spacing:-1.232000pt;}
.ls14{letter-spacing:-1.050667pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.ls18{letter-spacing:13.392640pt;}
.ls16{letter-spacing:38.992640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.229333pt;}
.ws7{word-spacing:-12.048000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.952000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-2309.818667pt;}
._5{margin-left:-1214.364160pt;}
._c{margin-left:-894.430720pt;}
._7{margin-left:-827.013120pt;}
._a{margin-left:-774.666667pt;}
._e{margin-left:-511.941120pt;}
._8{margin-left:-475.596800pt;}
._d{margin-left:-163.238400pt;}
._9{margin-left:-29.440000pt;}
._6{margin-left:-7.301120pt;}
._1e{margin-left:-6.286720pt;}
._f{margin-left:-4.955733pt;}
._17{margin-left:-3.953280pt;}
._b{margin-left:-2.944000pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._10{width:4.076587pt;}
._11{width:4.995840pt;}
._14{width:6.253440pt;}
._15{width:7.143040pt;}
._16{width:8.317440pt;}
._13{width:9.517440pt;}
._12{width:10.745600pt;}
._1a{width:11.660160pt;}
._19{width:14.647040pt;}
._18{width:16.216960pt;}
._1b{width:17.864960pt;}
._28{width:18.843520pt;}
._1d{width:20.033920pt;}
._1c{width:21.211520pt;}
._24{width:91.533440pt;}
._27{width:95.396480pt;}
._26{width:96.300800pt;}
._25{width:97.361920pt;}
._23{width:109.464960pt;}
._21{width:110.513280pt;}
._20{width:113.895040pt;}
._1f{width:114.808960pt;}
._22{width:116.029440pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:52.800000pt;}
.y35{bottom:81.632000pt;}
.y6d{bottom:83.232000pt;}
.y95{bottom:84.832000pt;}
.y9a{bottom:92.832000pt;}
.y34{bottom:99.392000pt;}
.y6c{bottom:100.832000pt;}
.y94{bottom:102.432000pt;}
.y99{bottom:110.432000pt;}
.y33{bottom:116.992000pt;}
.y6b{bottom:118.432000pt;}
.y93{bottom:120.192000pt;}
.y98{bottom:128.192000pt;}
.y32{bottom:134.586667pt;}
.y6a{bottom:136.186667pt;}
.y92{bottom:137.786667pt;}
.y97{bottom:145.786667pt;}
.y31{bottom:152.186667pt;}
.y69{bottom:153.786667pt;}
.y91{bottom:155.386667pt;}
.y96{bottom:163.386667pt;}
.y30{bottom:169.786667pt;}
.y68{bottom:171.386667pt;}
.y90{bottom:180.986667pt;}
.y2f{bottom:187.546667pt;}
.y67{bottom:188.986667pt;}
.y8f{bottom:198.586667pt;}
.y2e{bottom:205.146667pt;}
.y66{bottom:206.586667pt;}
.y8e{bottom:216.346667pt;}
.y2d{bottom:222.746667pt;}
.y65{bottom:224.346667pt;}
.y8d{bottom:233.946667pt;}
.y2c{bottom:240.346667pt;}
.y64{bottom:241.946667pt;}
.y8c{bottom:251.546667pt;}
.y2b{bottom:257.946667pt;}
.y63{bottom:259.546667pt;}
.y8b{bottom:269.146667pt;}
.y2a{bottom:275.706667pt;}
.y62{bottom:277.146667pt;}
.y8a{bottom:286.746667pt;}
.y29{bottom:293.346667pt;}
.y61{bottom:294.786667pt;}
.y89{bottom:304.546667pt;}
.y28{bottom:310.946667pt;}
.y60{bottom:312.546667pt;}
.y88{bottom:322.146667pt;}
.y27{bottom:328.546667pt;}
.y5f{bottom:330.146667pt;}
.y87{bottom:339.746667pt;}
.y26{bottom:346.146667pt;}
.y5e{bottom:347.746667pt;}
.y86{bottom:357.346667pt;}
.y25{bottom:363.906667pt;}
.y5d{bottom:365.346667pt;}
.y85{bottom:374.946667pt;}
.y24{bottom:381.506667pt;}
.y5c{bottom:382.946667pt;}
.y84{bottom:392.706667pt;}
.y23{bottom:399.106667pt;}
.y5b{bottom:400.706667pt;}
.y83{bottom:410.306667pt;}
.y22{bottom:416.706667pt;}
.y5a{bottom:418.306667pt;}
.y82{bottom:427.906667pt;}
.y21{bottom:434.306667pt;}
.y59{bottom:435.906667pt;}
.y81{bottom:445.506667pt;}
.y20{bottom:452.066667pt;}
.y58{bottom:453.506667pt;}
.y80{bottom:463.106667pt;}
.y1f{bottom:469.666667pt;}
.y57{bottom:471.106667pt;}
.y7f{bottom:480.866667pt;}
.y1e{bottom:487.266667pt;}
.y56{bottom:488.866667pt;}
.y7e{bottom:498.466667pt;}
.y1d{bottom:504.866667pt;}
.y55{bottom:506.466667pt;}
.y7d{bottom:516.066667pt;}
.y1c{bottom:522.466667pt;}
.y54{bottom:524.066667pt;}
.y7c{bottom:533.693333pt;}
.y1b{bottom:540.253333pt;}
.y53{bottom:541.693333pt;}
.y7b{bottom:551.293333pt;}
.y1a{bottom:557.853333pt;}
.y52{bottom:559.293333pt;}
.y7a{bottom:569.053333pt;}
.y51{bottom:577.053333pt;}
.y19{bottom:577.533333pt;}
.y79{bottom:586.653333pt;}
.y50{bottom:594.653333pt;}
.y18{bottom:595.133333pt;}
.y78{bottom:604.253333pt;}
.y4f{bottom:612.253333pt;}
.y17{bottom:620.733333pt;}
.y77{bottom:621.853333pt;}
.y4e{bottom:629.853333pt;}
.y16{bottom:638.333333pt;}
.y76{bottom:639.453333pt;}
.y4d{bottom:647.453333pt;}
.y15{bottom:655.933333pt;}
.y75{bottom:657.213333pt;}
.y4c{bottom:665.213333pt;}
.y14{bottom:673.693333pt;}
.y74{bottom:674.813333pt;}
.y4b{bottom:682.813333pt;}
.y13{bottom:691.293333pt;}
.y73{bottom:692.413333pt;}
.y4a{bottom:700.413333pt;}
.y12{bottom:708.893333pt;}
.y72{bottom:710.013333pt;}
.y49{bottom:718.013333pt;}
.y11{bottom:726.493333pt;}
.y71{bottom:727.613333pt;}
.y48{bottom:735.613333pt;}
.y10{bottom:744.093333pt;}
.y70{bottom:745.373333pt;}
.y47{bottom:753.373333pt;}
.yf{bottom:761.853333pt;}
.y6f{bottom:762.973333pt;}
.y46{bottom:771.013333pt;}
.ye{bottom:779.493333pt;}
.y6e{bottom:780.613333pt;}
.y45{bottom:788.613333pt;}
.yd{bottom:797.093333pt;}
.y44{bottom:806.213333pt;}
.yc{bottom:816.773333pt;}
.y43{bottom:823.813333pt;}
.yb{bottom:839.013333pt;}
.y42{bottom:841.573333pt;}
.ya{bottom:856.613333pt;}
.y41{bottom:859.173333pt;}
.y9{bottom:870.053333pt;}
.y40{bottom:876.773333pt;}
.y8{bottom:888.933333pt;}
.y3f{bottom:894.373333pt;}
.y7{bottom:909.893333pt;}
.y3e{bottom:911.973333pt;}
.y3d{bottom:929.733333pt;}
.y5{bottom:943.973333pt;}
.y3c{bottom:947.333333pt;}
.y3b{bottom:964.933333pt;}
.y4{bottom:971.333333pt;}
.y3a{bottom:982.533333pt;}
.y3{bottom:998.853333pt;}
.y39{bottom:1000.133333pt;}
.y38{bottom:1017.920000pt;}
.y2{bottom:1026.240000pt;}
.y37{bottom:1035.520000pt;}
.y1{bottom:1053.600000pt;}
.y36{bottom:1061.600000pt;}
.h7{height:30.256875pt;}
.h5{height:45.520312pt;}
.h8{height:46.505938pt;}
.h2{height:50.456250pt;}
.h3{height:51.548750pt;}
.h6{height:52.929375pt;}
.h4{height:72.942188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:76.799988pt;}
.x4{left:100.831988pt;}
.x2{left:279.426655pt;}
}




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