
    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_bdab8b15e9a97b9c45a546c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ae3ba31bf0c05fba4fbd6ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3a86e44b9a2f4d84f9c26461.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_9fa697a39f1d6a8b950140ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_3c7a50ed2dd7c33dfe76b6ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_21ac8a606a72268a27a47f4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.717285;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_07a1eed4d39dad3445db6f84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_1e982566e4d30fd2c34faf2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_2f2562094d2c275235e137c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.057600px;}
.lsf{letter-spacing:-0.043200px;}
.ls21{letter-spacing:-0.038400px;}
.ls14{letter-spacing:-0.036000px;}
.ls1b{letter-spacing:-0.033600px;}
.lsc{letter-spacing:-0.028800px;}
.ls1{letter-spacing:-0.021600px;}
.ls1f{letter-spacing:-0.019200px;}
.lse{letter-spacing:-0.014400px;}
.ls1a{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.011718px;}
.ls13{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.019200px;}
.ls2{letter-spacing:0.022860px;}
.ls17{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.026733px;}
.lsb{letter-spacing:0.028800px;}
.ls1c{letter-spacing:0.030513px;}
.ls9{letter-spacing:0.047250px;}
.ls10{letter-spacing:0.059064px;}
.ls7{letter-spacing:0.070872px;}
.ls4{letter-spacing:0.082686px;}
.ls6{letter-spacing:3.813600px;}
.ls1d{letter-spacing:27.444668px;}
.ls5{letter-spacing:31.299834px;}
.lsa{letter-spacing:35.952870px;}
.ls19{letter-spacing:40.754048px;}
.ls8{letter-spacing:41.257128px;}
.ls11{letter-spacing:53.100936px;}
.ls3{letter-spacing:54.063480px;}
.ls16{letter-spacing:103.308402px;}
.ls12{letter-spacing:175.680000px;}
.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;}
}
.ws8{word-spacing:-53.376000px;}
.ws1{word-spacing:-40.348800px;}
.ws2{word-spacing:-39.902400px;}
.ws3{word-spacing:-39.888000px;}
.ws5{word-spacing:-33.264000px;}
.ws4{word-spacing:-33.240000px;}
.ws6{word-spacing:-33.228000px;}
.ws7{word-spacing:-23.268000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-175.710960px;}
._12{margin-left:-32.250000px;}
._d{margin-left:-26.250360px;}
._7{margin-left:-18.713520px;}
._4{margin-left:-16.951200px;}
._3{margin-left:-15.024000px;}
._5{margin-left:-13.177800px;}
._0{margin-left:-12.012000px;}
._10{margin-left:-5.366400px;}
._b{margin-left:-4.224000px;}
._2{margin-left:-3.012000px;}
._1{margin-left:-1.272000px;}
._11{width:4.226400px;}
._f{width:9.336000px;}
._a{width:34.111200px;}
._9{width:35.301600px;}
._e{width:42.678420px;}
._8{width:72.559200px;}
._6{width:82.980000px;}
.fca{color:rgb(141,199,101);}
.fc8{color:rgb(254,184,10);}
.fc6{color:rgb(231,222,201);}
.fc5{color:rgb(56,145,167);}
.fc4{color:transparent;}
.fc3{color:rgb(85,0,85);}
.fc9{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc7{color:rgb(128,0,0);}
.fc1{color:rgb(50,14,4);}
.fc0{color:rgb(87,35,20);}
.fs9{font-size:48.000000px;}
.fse{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:115.200000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:132.000000px;}
.fsb{font-size:134.399940px;}
.fs5{font-size:144.000000px;}
.fsc{font-size:150.000000px;}
.fsf{font-size:153.599940px;}
.fs2{font-size:156.000000px;}
.fs0{font-size:168.000000px;}
.fsd{font-size:174.000000px;}
.fs10{font-size:192.000000px;}
.fs8{font-size:198.000000px;}
.fs7{font-size:234.000000px;}
.fsa{font-size:258.000000px;}
.y5a{bottom:-39.918062px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y59{bottom:2.081890px;}
.y20{bottom:27.449965px;}
.y58{bottom:38.081905px;}
.y8{bottom:54.937405px;}
.y57{bottom:74.081920px;}
.y4e{bottom:102.599950px;}
.y7{bottom:108.937390px;}
.y56{bottom:110.081875px;}
.y33{bottom:118.162465px;}
.y1f{bottom:121.559965px;}
.y63{bottom:152.099965px;}
.y4d{bottom:153.599965px;}
.y6{bottom:153.937465px;}
.y32{bottom:162.412465px;}
.y1e{bottom:169.559965px;}
.y2b{bottom:175.184965px;}
.y62{bottom:177.599965px;}
.y39{bottom:190.492915px;}
.y31{bottom:197.662315px;}
.y5{bottom:198.937315px;}
.y61{bottom:203.099965px;}
.y6c{bottom:204.599965px;}
.y46{bottom:212.099965px;}
.y1d{bottom:217.559965px;}
.y2a{bottom:223.184965px;}
.y60{bottom:227.099965px;}
.y30{bottom:242.662315px;}
.y6b{bottom:261.599965px;}
.y45{bottom:263.099965px;}
.y1c{bottom:264.059965px;}
.y29{bottom:269.684965px;}
.y4c{bottom:272.099965px;}
.y2f{bottom:286.162315px;}
.y40{bottom:300.336265px;}
.y1b{bottom:312.059965px;}
.y44{bottom:312.599965px;}
.y28{bottom:317.684965px;}
.y4b{bottom:321.599965px;}
.y6a{bottom:329.099965px;}
.y3f{bottom:336.336265px;}
.y13{bottom:337.912315px;}
.y1a{bottom:360.059965px;}
.y43{bottom:363.599965px;}
.y27{bottom:365.684965px;}
.y4a{bottom:372.599965px;}
.y2e{bottom:376.912315px;}
.y12{bottom:387.412315px;}
.y69{bottom:395.099965px;}
.y19{bottom:406.559965px;}
.y26{bottom:412.184965px;}
.y2d{bottom:418.912315px;}
.y3e{bottom:423.985465px;}
.y11{bottom:438.412315px;}
.y4{bottom:441.212215px;}
.y55{bottom:441.278665px;}
.y68{bottom:453.599965px;}
.y18{bottom:454.559965px;}
.y3d{bottom:459.985465px;}
.y25{bottom:460.184965px;}
.y38{bottom:461.474965px;}
.y66{bottom:471.599965px;}
.y5e{bottom:474.862315px;}
.y42{bottom:482.099965px;}
.y54{bottom:483.487315px;}
.y10{bottom:487.912315px;}
.y49{bottom:491.099965px;}
.y3{bottom:492.212215px;}
.y36{bottom:502.049965px;}
.y17{bottom:502.559965px;}
.y24{bottom:508.184965px;}
.y5d{bottom:518.362315px;}
.y67{bottom:519.599965px;}
.y3c{bottom:522.985315px;}
.y53{bottom:526.987315px;}
.y65{bottom:528.599965px;}
.y41{bottom:533.099965px;}
.y2{bottom:541.712215px;}
.y48{bottom:542.099965px;}
.y35{bottom:545.549965px;}
.y16{bottom:549.449980px;}
.y23{bottom:555.074980px;}
.yd{bottom:557.806015px;}
.y5c{bottom:561.562330px;}
.y3b{bottom:564.985315px;}
.y52{bottom:570.487315px;}
.y64{bottom:585.599965px;}
.y34{bottom:589.049965px;}
.y47{bottom:591.599965px;}
.y15{bottom:597.299965px;}
.yc{bottom:599.806015px;}
.y22{bottom:602.924965px;}
.yf{bottom:615.262465px;}
.y51{bottom:628.724965px;}
.y3a{bottom:641.512315px;}
.y5f{bottom:645.449965px;}
.y5b{bottom:660.449965px;}
.y50{bottom:673.724965px;}
.y37{bottom:684.262315px;}
.ye{bottom:684.262465px;}
.y2c{bottom:685.349965px;}
.y21{bottom:693.824965px;}
.yb{bottom:696.036565px;}
.y14{bottom:696.449965px;}
.ya{bottom:709.349815px;}
.y4f{bottom:721.724965px;}
.y9{bottom:740.849815px;}
.h13{height:65.542969px;}
.h5{height:88.541016px;}
.h3{height:90.000000px;}
.hc{height:93.632812px;}
.hf{height:98.378906px;}
.h6{height:108.000000px;}
.hd{height:112.359375px;}
.h4{height:117.000000px;}
.ha{height:118.054688px;}
.h11{height:122.973633px;}
.h2{height:126.000000px;}
.h12{height:130.500000px;}
.h8{height:131.085938px;}
.h9{height:137.730469px;}
.h14{height:144.000000px;}
.h16{height:149.812500px;}
.hb{height:154.494141px;}
.h7{height:175.500000px;}
.h10{height:182.583984px;}
.he{height:193.500000px;}
.h15{height:201.310547px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1c{left:10.799999px;}
.x1f{left:46.879125px;}
.x21{left:67.612560px;}
.x17{left:72.674880px;}
.xa{left:91.799985px;}
.xf{left:95.924985px;}
.x1d{left:108.112560px;}
.x20{left:118.799970px;}
.xd{left:123.299985px;}
.x10{left:128.924985px;}
.xb{left:132.299985px;}
.x11{left:133.424970px;}
.x5{left:136.049985px;}
.x8{left:138.299985px;}
.x7{left:144.299985px;}
.x22{left:145.799985px;}
.xc{left:147.299970px;}
.x4{left:150.702000px;}
.x12{left:161.925000px;}
.x18{left:163.800000px;}
.x9{left:166.800000px;}
.x6{left:169.050000px;}
.x2{left:175.800000px;}
.x13{left:177.300150px;}
.x15{left:180.360000px;}
.x1{left:189.000000px;}
.xe{left:199.800000px;}
.x19{left:211.800000px;}
.x1e{left:218.790240px;}
.x1b{left:222.360000px;}
.x1a{left:252.300000px;}
.x14{left:287.977740px;}
.x16{left:550.800000px;}
.x3{left:556.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.051200pt;}
.lsf{letter-spacing:-0.038400pt;}
.ls21{letter-spacing:-0.034133pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls1b{letter-spacing:-0.029867pt;}
.lsc{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:-0.019200pt;}
.ls1f{letter-spacing:-0.017067pt;}
.lse{letter-spacing:-0.012800pt;}
.ls1a{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.010416pt;}
.ls13{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.017067pt;}
.ls2{letter-spacing:0.020320pt;}
.ls17{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.023763pt;}
.lsb{letter-spacing:0.025600pt;}
.ls1c{letter-spacing:0.027123pt;}
.ls9{letter-spacing:0.042000pt;}
.ls10{letter-spacing:0.052501pt;}
.ls7{letter-spacing:0.062997pt;}
.ls4{letter-spacing:0.073499pt;}
.ls6{letter-spacing:3.389867pt;}
.ls1d{letter-spacing:24.395261pt;}
.ls5{letter-spacing:27.822075pt;}
.lsa{letter-spacing:31.958107pt;}
.ls19{letter-spacing:36.225821pt;}
.ls8{letter-spacing:36.673003pt;}
.ls11{letter-spacing:47.200832pt;}
.ls3{letter-spacing:48.056427pt;}
.ls16{letter-spacing:91.829691pt;}
.ls12{letter-spacing:156.160000pt;}
.ws8{word-spacing:-47.445333pt;}
.ws1{word-spacing:-35.865600pt;}
.ws2{word-spacing:-35.468800pt;}
.ws3{word-spacing:-35.456000pt;}
.ws5{word-spacing:-29.568000pt;}
.ws4{word-spacing:-29.546667pt;}
.ws6{word-spacing:-29.536000pt;}
.ws7{word-spacing:-20.682667pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-156.187520pt;}
._12{margin-left:-28.666667pt;}
._d{margin-left:-23.333653pt;}
._7{margin-left:-16.634240pt;}
._4{margin-left:-15.067733pt;}
._3{margin-left:-13.354667pt;}
._5{margin-left:-11.713600pt;}
._0{margin-left:-10.677333pt;}
._10{margin-left:-4.770133pt;}
._b{margin-left:-3.754667pt;}
._2{margin-left:-2.677333pt;}
._1{margin-left:-1.130667pt;}
._11{width:3.756800pt;}
._f{width:8.298667pt;}
._a{width:30.321067pt;}
._9{width:31.379200pt;}
._e{width:37.936373pt;}
._8{width:64.497067pt;}
._6{width:73.760000pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:102.400000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:117.333333pt;}
.fsb{font-size:119.466613pt;}
.fs5{font-size:128.000000pt;}
.fsc{font-size:133.333333pt;}
.fsf{font-size:136.533280pt;}
.fs2{font-size:138.666667pt;}
.fs0{font-size:149.333333pt;}
.fsd{font-size:154.666667pt;}
.fs10{font-size:170.666667pt;}
.fs8{font-size:176.000000pt;}
.fs7{font-size:208.000000pt;}
.fsa{font-size:229.333333pt;}
.y5a{bottom:-35.482722pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y59{bottom:1.850569pt;}
.y20{bottom:24.399969pt;}
.y58{bottom:33.850582pt;}
.y8{bottom:48.833249pt;}
.y57{bottom:65.850596pt;}
.y4e{bottom:91.199956pt;}
.y7{bottom:96.833236pt;}
.y56{bottom:97.850556pt;}
.y33{bottom:105.033302pt;}
.y1f{bottom:108.053302pt;}
.y63{bottom:135.199969pt;}
.y4d{bottom:136.533302pt;}
.y6{bottom:136.833302pt;}
.y32{bottom:144.366636pt;}
.y1e{bottom:150.719969pt;}
.y2b{bottom:155.719969pt;}
.y62{bottom:157.866636pt;}
.y39{bottom:169.327036pt;}
.y31{bottom:175.699836pt;}
.y5{bottom:176.833169pt;}
.y61{bottom:180.533302pt;}
.y6c{bottom:181.866636pt;}
.y46{bottom:188.533302pt;}
.y1d{bottom:193.386636pt;}
.y2a{bottom:198.386636pt;}
.y60{bottom:201.866636pt;}
.y30{bottom:215.699836pt;}
.y6b{bottom:232.533302pt;}
.y45{bottom:233.866636pt;}
.y1c{bottom:234.719969pt;}
.y29{bottom:239.719969pt;}
.y4c{bottom:241.866636pt;}
.y2f{bottom:254.366502pt;}
.y40{bottom:266.965569pt;}
.y1b{bottom:277.386636pt;}
.y44{bottom:277.866636pt;}
.y28{bottom:282.386636pt;}
.y4b{bottom:285.866636pt;}
.y6a{bottom:292.533302pt;}
.y3f{bottom:298.965569pt;}
.y13{bottom:300.366502pt;}
.y1a{bottom:320.053302pt;}
.y43{bottom:323.199969pt;}
.y27{bottom:325.053302pt;}
.y4a{bottom:331.199969pt;}
.y2e{bottom:335.033169pt;}
.y12{bottom:344.366502pt;}
.y69{bottom:351.199969pt;}
.y19{bottom:361.386636pt;}
.y26{bottom:366.386636pt;}
.y2d{bottom:372.366502pt;}
.y3e{bottom:376.875969pt;}
.y11{bottom:389.699836pt;}
.y4{bottom:392.188636pt;}
.y55{bottom:392.247702pt;}
.y68{bottom:403.199969pt;}
.y18{bottom:404.053302pt;}
.y3d{bottom:408.875969pt;}
.y25{bottom:409.053302pt;}
.y38{bottom:410.199969pt;}
.y66{bottom:419.199969pt;}
.y5e{bottom:422.099836pt;}
.y42{bottom:428.533302pt;}
.y54{bottom:429.766502pt;}
.y10{bottom:433.699836pt;}
.y49{bottom:436.533302pt;}
.y3{bottom:437.521969pt;}
.y36{bottom:446.266636pt;}
.y17{bottom:446.719969pt;}
.y24{bottom:451.719969pt;}
.y5d{bottom:460.766502pt;}
.y67{bottom:461.866636pt;}
.y3c{bottom:464.875836pt;}
.y53{bottom:468.433169pt;}
.y65{bottom:469.866636pt;}
.y41{bottom:473.866636pt;}
.y2{bottom:481.521969pt;}
.y48{bottom:481.866636pt;}
.y35{bottom:484.933302pt;}
.y16{bottom:488.399982pt;}
.y23{bottom:493.399982pt;}
.yd{bottom:495.827569pt;}
.y5c{bottom:499.166516pt;}
.y3b{bottom:502.209169pt;}
.y52{bottom:507.099836pt;}
.y64{bottom:520.533302pt;}
.y34{bottom:523.599969pt;}
.y47{bottom:525.866636pt;}
.y15{bottom:530.933302pt;}
.yc{bottom:533.160902pt;}
.y22{bottom:535.933302pt;}
.yf{bottom:546.899969pt;}
.y51{bottom:558.866636pt;}
.y3a{bottom:570.233169pt;}
.y5f{bottom:573.733302pt;}
.y5b{bottom:587.066636pt;}
.y50{bottom:598.866636pt;}
.y37{bottom:608.233169pt;}
.ye{bottom:608.233302pt;}
.y2c{bottom:609.199969pt;}
.y21{bottom:616.733302pt;}
.yb{bottom:618.699169pt;}
.y14{bottom:619.066636pt;}
.ya{bottom:630.533169pt;}
.y4f{bottom:641.533302pt;}
.y9{bottom:658.533169pt;}
.h13{height:58.260417pt;}
.h5{height:78.703125pt;}
.h3{height:80.000000pt;}
.hc{height:83.229167pt;}
.hf{height:87.447917pt;}
.h6{height:96.000000pt;}
.hd{height:99.875000pt;}
.h4{height:104.000000pt;}
.ha{height:104.937500pt;}
.h11{height:109.309896pt;}
.h2{height:112.000000pt;}
.h12{height:116.000000pt;}
.h8{height:116.520833pt;}
.h9{height:122.427083pt;}
.h14{height:128.000000pt;}
.h16{height:133.166667pt;}
.hb{height:137.328125pt;}
.h7{height:156.000000pt;}
.h10{height:162.296875pt;}
.he{height:172.000000pt;}
.h15{height:178.942708pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:9.599999pt;}
.x1f{left:41.670333pt;}
.x21{left:60.100053pt;}
.x17{left:64.599893pt;}
.xa{left:81.599987pt;}
.xf{left:85.266653pt;}
.x1d{left:96.100053pt;}
.x20{left:105.599973pt;}
.xd{left:109.599987pt;}
.x10{left:114.599987pt;}
.xb{left:117.599987pt;}
.x11{left:118.599973pt;}
.x5{left:120.933320pt;}
.x8{left:122.933320pt;}
.x7{left:128.266653pt;}
.x22{left:129.599987pt;}
.xc{left:130.933307pt;}
.x4{left:133.957333pt;}
.x12{left:143.933333pt;}
.x18{left:145.600000pt;}
.x9{left:148.266667pt;}
.x6{left:150.266667pt;}
.x2{left:156.266667pt;}
.x13{left:157.600133pt;}
.x15{left:160.320000pt;}
.x1{left:168.000000pt;}
.xe{left:177.600000pt;}
.x19{left:188.266667pt;}
.x1e{left:194.480213pt;}
.x1b{left:197.653333pt;}
.x1a{left:224.266667pt;}
.x14{left:255.980213pt;}
.x16{left:489.600000pt;}
.x3{left:494.600000pt;}
}




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