
    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_977c852149f01afc43983739.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d1700503a70d5eb6af8015fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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);}
.v1{vertical-align:-48.959980px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.115312px;}
.ls3{letter-spacing:0.380039px;}
.ls2{letter-spacing:69.839972px;}
.ls4{letter-spacing:85.679966px;}
.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;}
}
.ws4{word-spacing:-128.702829px;}
.ws7{word-spacing:-93.674843px;}
.ws8{word-spacing:-85.868606px;}
.ws3{word-spacing:-78.062369px;}
.ws2{word-spacing:-70.256132px;}
.ws5{word-spacing:-62.449895px;}
.ws6{word-spacing:-1.249082px;}
.ws1{word-spacing:-0.776318px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.153947px;}
._5{margin-left:-24.935030px;}
._b{margin-left:-16.624862px;}
._8{margin-left:-11.934746px;}
._2{margin-left:-7.078186px;}
._6{margin-left:-3.961675px;}
._4{margin-left:-2.707084px;}
._1{margin-left:-1.050954px;}
._0{width:1.692201px;}
._9{width:2.925955px;}
._7{width:69.014607px;}
._a{width:922.698150px;}
._3{width:2967.740788px;}
.fc7{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(93,127,19);}
.fcb{color:rgb(53,66,130);}
.fc9{color:rgb(231,109,2);}
.fc5{color:rgb(255,224,26);}
.fc4{color:rgb(229,45,45);}
.fcc{color:rgb(89,89,89);}
.fca{color:rgb(191,191,191);}
.fc3{color:rgb(183,27,27);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:97.919961px;}
.fs9{font-size:168.479933px;}
.fs7{font-size:196.559921px;}
.fs8{font-size:224.639910px;}
.fs2{font-size:252.719899px;}
.fs0{font-size:266.399893px;}
.fs4{font-size:280.799888px;}
.fsa{font-size:308.879876px;}
.fs3{font-size:336.959865px;}
.fs6{font-size:462.959815px;}
.fs5{font-size:561.599775px;}
.y10{bottom:-85.679787px;}
.y6a{bottom:-57.059799px;}
.y60{bottom:-55.259799px;}
.y47{bottom:-39.779806px;}
.y7{bottom:-32.039809px;}
.y59{bottom:-27.899810px;}
.y71{bottom:-22.679813px;}
.y37{bottom:-21.599813px;}
.y68{bottom:-9.539660px;}
.y23{bottom:-6.659819px;}
.y2c{bottom:-4.499820px;}
.y0{bottom:0.000000px;}
.y40{bottom:0.900178px;}
.y39{bottom:10.440187px;}
.y6f{bottom:11.880297px;}
.y42{bottom:13.320178px;}
.y25{bottom:13.320181px;}
.y5b{bottom:13.320190px;}
.y51{bottom:13.320194px;}
.y62{bottom:13.320201px;}
.y4a{bottom:13.320236px;}
.y4e{bottom:13.320297px;}
.y55{bottom:13.320327px;}
.y73{bottom:14.940187px;}
.ya{bottom:14.940191px;}
.y79{bottom:16.380191px;}
.y66{bottom:17.820300px;}
.y15{bottom:29.700213px;}
.y67{bottom:51.720000px;}
.y54{bottom:61.980000px;}
.y4f{bottom:75.300327px;}
.ye{bottom:77.460326px;}
.y34{bottom:80.160325px;}
.y70{bottom:82.140324px;}
.y2{bottom:82.500324px;}
.y3e{bottom:96.360318px;}
.y65{bottom:125.340000px;}
.y1f{bottom:135.600303px;}
.y29{bottom:136.500302px;}
.y4d{bottom:137.760000px;}
.y64{bottom:143.160300px;}
.y7c{bottom:146.040299px;}
.y4c{bottom:151.080297px;}
.y3d{bottom:155.220295px;}
.yd{bottom:161.700292px;}
.y6e{bottom:161.880292px;}
.y1e{bottom:186.000283px;}
.y5e{bottom:191.040281px;}
.y21{bottom:195.180279px;}
.y28{bottom:212.280272px;}
.y58{bottom:213.540272px;}
.y33{bottom:214.980271px;}
.y4b{bottom:227.040266px;}
.y7b{bottom:229.200265px;}
.y3c{bottom:231.000265px;}
.y20{bottom:233.880263px;}
.y6d{bottom:237.660262px;}
.y13{bottom:239.280261px;}
.yc{bottom:245.940259px;}
.y75{bottom:255.300255px;}
.y5d{bottom:266.820250px;}
.y17{bottom:279.420245px;}
.y27{bottom:288.060242px;}
.y49{bottom:289.500000px;}
.y3b{bottom:290.040241px;}
.y2f{bottom:290.220241px;}
.y44{bottom:295.620239px;}
.y57{bottom:297.780238px;}
.y48{bottom:302.820236px;}
.y6c{bottom:313.440232px;}
.y63{bottom:315.240231px;}
.y7a{bottom:321.720228px;}
.yb{bottom:330.180225px;}
.y52{bottom:330.900225px;}
.y14{bottom:331.080000px;}
.y1c{bottom:331.620224px;}
.y74{bottom:339.540221px;}
.y5c{bottom:342.780220px;}
.y32{bottom:349.800217px;}
.y26{bottom:363.840211px;}
.y3a{bottom:365.820211px;}
.y2e{bottom:366.000211px;}
.y1d{bottom:370.500209px;}
.y43{bottom:371.400208px;}
.y6b{bottom:376.080000px;}
.y61{bottom:377.880000px;}
.y56{bottom:382.020204px;}
.y50{bottom:393.360000px;}
.y78{bottom:398.040000px;}
.y9{bottom:399.480000px;}
.y5a{bottom:405.240000px;}
.y72{bottom:408.840000px;}
.y38{bottom:414.420000px;}
.y24{bottom:426.480000px;}
.y2d{bottom:428.640000px;}
.y41{bottom:434.040000px;}
.y6{bottom:446.460000px;}
.y1a{bottom:456.540174px;}
.y69{bottom:465.180171px;}
.y53{bottom:466.260170px;}
.y5f{bottom:466.980170px;}
.y11{bottom:480.840165px;}
.y46{bottom:482.640164px;}
.y31{bottom:484.620163px;}
.y16{bottom:486.960162px;}
.y8{bottom:499.200157px;}
.y36{bottom:500.640157px;}
.y19{bottom:506.940154px;}
.y77{bottom:507.120154px;}
.y22{bottom:515.580151px;}
.y2b{bottom:517.740150px;}
.y3f{bottom:523.140148px;}
.y1b{bottom:545.820139px;}
.y45{bottom:558.420134px;}
.y35{bottom:559.680133px;}
.y76{bottom:599.820117px;}
.y30{bottom:619.260109px;}
.yf{bottom:621.600108px;}
.y5{bottom:625.200107px;}
.y4{bottom:696.480078px;}
.y18{bottom:710.880073px;}
.y2a{bottom:740.220061px;}
.y12{bottom:744.000059px;}
.y1{bottom:758.580054px;}
.y3{bottom:772.260048px;}
.h20{height:0.180000px;}
.h1c{height:1.980000px;}
.h16{height:12.420000px;}
.h17{height:17.460000px;}
.h12{height:17.820000px;}
.h10{height:19.980000px;}
.h13{height:22.860000px;}
.h1a{height:29.340000px;}
.h5{height:31.500000px;}
.h14{height:32.040000px;}
.h24{height:37.620000px;}
.h26{height:37.800000px;}
.h23{height:40.860000px;}
.h1b{height:41.220000px;}
.ha{height:41.400000px;}
.h8{height:46.980000px;}
.h27{height:48.420000px;}
.hf{height:50.580000px;}
.h11{height:52.740000px;}
.h19{height:53.100000px;}
.h15{height:58.140000px;}
.h22{height:62.640000px;}
.h1f{height:66.780000px;}
.h1d{height:68.580000px;}
.h21{height:70.380000px;}
.h18{height:70.560000px;}
.h1e{height:94.140000px;}
.h2{height:102.127459px;}
.hc{height:115.380000px;}
.he{height:175.719305px;}
.hb{height:205.005855px;}
.hd{height:234.292406px;}
.h3{height:263.578957px;}
.h1{height:277.846764px;}
.h6{height:292.865508px;}
.h25{height:322.152059px;}
.h4{height:351.438609px;}
.h9{height:482.852619px;}
.h7{height:585.731016px;}
.h0{height:892.500000px;}
.w25{width:27.494400px;}
.w18{width:43.694400px;}
.w11{width:66.420000px;}
.wa{width:84.060000px;}
.w7{width:87.480000px;}
.w4{width:93.600000px;}
.w14{width:119.160000px;}
.wf{width:120.060000px;}
.we{width:122.760000px;}
.w9{width:122.940000px;}
.w3{width:136.620000px;}
.w17{width:138.374400px;}
.w16{width:143.820000px;}
.w24{width:186.120000px;}
.w5{width:191.340000px;}
.w28{width:195.300000px;}
.w22{width:229.320000px;}
.w2a{width:270.540000px;}
.w1{width:284.760000px;}
.wd{width:309.240000px;}
.w15{width:323.100000px;}
.w26{width:339.480000px;}
.wc{width:364.860000px;}
.w1d{width:392.940000px;}
.w21{width:412.740000px;}
.w13{width:417.780000px;}
.w2{width:448.920000px;}
.w12{width:480.960000px;}
.w19{width:484.380000px;}
.w29{width:485.100000px;}
.w1e{width:502.020000px;}
.w8{width:551.160000px;}
.w23{width:561.420000px;}
.w27{width:570.060000px;}
.w1c{width:573.974400px;}
.w1a{width:643.634400px;}
.wb{width:730.080000px;}
.w10{width:804.060000px;}
.w6{width:951.660000px;}
.w1f{width:1021.500000px;}
.w1b{width:1131.614040px;}
.w20{width:1155.914040px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:12.765925px;}
.x4f{left:18.165893px;}
.x10{left:20.865892px;}
.x12{left:32.565887px;}
.x15{left:34.545886px;}
.x17{left:50.925880px;}
.x31{left:54.706478px;}
.x6{left:64.065960px;}
.x1{left:74.685870px;}
.x3c{left:80.985868px;}
.x4c{left:86.205960px;}
.x55{left:89.445960px;}
.x3{left:95.025862px;}
.x13{left:100.785860px;}
.x50{left:107.085960px;}
.x11{left:112.485855px;}
.x34{left:115.366454px;}
.x35{left:123.465851px;}
.x3e{left:131.925960px;}
.x2f{left:138.046445px;}
.xb{left:154.246438px;}
.x39{left:158.205960px;}
.x1a{left:164.146434px;}
.x4b{left:166.846433px;}
.x4d{left:173.685960px;}
.xe{left:177.286429px;}
.x5e{left:178.906428px;}
.x4a{left:182.686427px;}
.x5f{left:185.746426px;}
.x47{left:193.305600px;}
.x2d{left:197.626421px;}
.x19{left:199.606420px;}
.x18{left:205.006418px;}
.x2a{left:220.485600px;}
.x3a{left:224.625600px;}
.x16{left:228.946408px;}
.x14{left:231.466407px;}
.x5a{left:233.626407px;}
.x59{left:242.266403px;}
.x29{left:246.946401px;}
.x33{left:257.386397px;}
.x5b{left:266.025600px;}
.x38{left:286.366385px;}
.x45{left:292.846383px;}
.x21{left:296.626381px;}
.x1c{left:299.686380px;}
.x44{left:302.746379px;}
.xd{left:304.006378px;}
.x51{left:311.025600px;}
.x1b{left:321.826371px;}
.x5{left:323.266371px;}
.x30{left:325.066370px;}
.x36{left:327.406369px;}
.x49{left:338.926364px;}
.x24{left:345.406362px;}
.x7{left:348.825600px;}
.x22{left:366.646353px;}
.x37{left:379.246348px;}
.x42{left:383.926346px;}
.x5d{left:405.526338px;}
.x56{left:428.925600px;}
.xc{left:436.846325px;}
.x25{left:440.265600px;}
.x20{left:447.286321px;}
.x48{left:449.266320px;}
.x23{left:451.066320px;}
.x46{left:452.866319px;}
.x3d{left:458.265717px;}
.xf{left:471.946311px;}
.x2e{left:473.026311px;}
.x32{left:474.466310px;}
.x4{left:487.966305px;}
.x1d{left:493.185600px;}
.x28{left:510.646296px;}
.x26{left:524.325600px;}
.x4e{left:544.306282px;}
.x58{left:546.106282px;}
.x53{left:574.185600px;}
.x1e{left:580.665600px;}
.x2b{left:585.345600px;}
.x3f{left:619.366252px;}
.x27{left:643.846242px;}
.x43{left:689.025600px;}
.x3b{left:705.585600px;}
.x52{left:723.765600px;}
.x5c{left:751.125600px;}
.x8{left:797.745600px;}
.x2c{left:911.865600px;}
.x9{left:934.365600px;}
.x57{left:998.985600px;}
.xa{left:1027.965600px;}
.x40{left:1124.625600px;}
.x1f{left:1131.825600px;}
.x41{left:1219.305600px;}
.x54{left:1235.505600px;}
@media print{
.v1{vertical-align:-43.519983pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.102500pt;}
.ls3{letter-spacing:0.337812pt;}
.ls2{letter-spacing:62.079975pt;}
.ls4{letter-spacing:76.159970pt;}
.ws4{word-spacing:-114.402514pt;}
.ws7{word-spacing:-83.266527pt;}
.ws8{word-spacing:-76.327649pt;}
.ws3{word-spacing:-69.388772pt;}
.ws2{word-spacing:-62.449895pt;}
.ws5{word-spacing:-55.511018pt;}
.ws6{word-spacing:-1.110295pt;}
.ws1{word-spacing:-0.690060pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.136842pt;}
._5{margin-left:-22.164471pt;}
._b{margin-left:-14.777655pt;}
._8{margin-left:-10.608663pt;}
._2{margin-left:-6.291721pt;}
._6{margin-left:-3.521489pt;}
._4{margin-left:-2.406297pt;}
._1{margin-left:-0.934181pt;}
._0{width:1.504178pt;}
._9{width:2.600849pt;}
._7{width:61.346317pt;}
._a{width:820.176133pt;}
._3{width:2637.991812pt;}
.fs1{font-size:87.039965pt;}
.fs9{font-size:149.759940pt;}
.fs7{font-size:174.719930pt;}
.fs8{font-size:199.679920pt;}
.fs2{font-size:224.639910pt;}
.fs0{font-size:236.799905pt;}
.fs4{font-size:249.599900pt;}
.fsa{font-size:274.559890pt;}
.fs3{font-size:299.519880pt;}
.fs6{font-size:411.519835pt;}
.fs5{font-size:499.199800pt;}
.y10{bottom:-76.159811pt;}
.y6a{bottom:-50.719821pt;}
.y60{bottom:-49.119822pt;}
.y47{bottom:-35.359827pt;}
.y7{bottom:-28.479830pt;}
.y59{bottom:-24.799831pt;}
.y71{bottom:-20.159833pt;}
.y37{bottom:-19.199834pt;}
.y68{bottom:-8.479698pt;}
.y23{bottom:-5.919839pt;}
.y2c{bottom:-3.999840pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:0.800158pt;}
.y39{bottom:9.280166pt;}
.y6f{bottom:10.560264pt;}
.y42{bottom:11.840158pt;}
.y25{bottom:11.840161pt;}
.y5b{bottom:11.840169pt;}
.y51{bottom:11.840173pt;}
.y62{bottom:11.840178pt;}
.y4a{bottom:11.840210pt;}
.y4e{bottom:11.840264pt;}
.y55{bottom:11.840291pt;}
.y73{bottom:13.280167pt;}
.ya{bottom:13.280170pt;}
.y79{bottom:14.560170pt;}
.y66{bottom:15.840266pt;}
.y15{bottom:26.400189pt;}
.y67{bottom:45.973333pt;}
.y54{bottom:55.093333pt;}
.y4f{bottom:66.933624pt;}
.ye{bottom:68.853623pt;}
.y34{bottom:71.253622pt;}
.y70{bottom:73.013621pt;}
.y2{bottom:73.333621pt;}
.y3e{bottom:85.653616pt;}
.y65{bottom:111.413333pt;}
.y1f{bottom:120.533602pt;}
.y29{bottom:121.333602pt;}
.y4d{bottom:122.453333pt;}
.y64{bottom:127.253600pt;}
.y7c{bottom:129.813599pt;}
.y4c{bottom:134.293597pt;}
.y3d{bottom:137.973595pt;}
.yd{bottom:143.733593pt;}
.y6e{bottom:143.893593pt;}
.y1e{bottom:165.333585pt;}
.y5e{bottom:169.813583pt;}
.y21{bottom:173.493581pt;}
.y28{bottom:188.693575pt;}
.y58{bottom:189.813575pt;}
.y33{bottom:191.093574pt;}
.y4b{bottom:201.813570pt;}
.y7b{bottom:203.733569pt;}
.y3c{bottom:205.333569pt;}
.y20{bottom:207.893568pt;}
.y6d{bottom:211.253566pt;}
.y13{bottom:212.693566pt;}
.yc{bottom:218.613563pt;}
.y75{bottom:226.933560pt;}
.y5d{bottom:237.173556pt;}
.y17{bottom:248.373551pt;}
.y27{bottom:256.053548pt;}
.y49{bottom:257.333333pt;}
.y3b{bottom:257.813548pt;}
.y2f{bottom:257.973547pt;}
.y44{bottom:262.773546pt;}
.y57{bottom:264.693545pt;}
.y48{bottom:269.173543pt;}
.y6c{bottom:278.613539pt;}
.y63{bottom:280.213539pt;}
.y7a{bottom:285.973536pt;}
.yb{bottom:293.493533pt;}
.y52{bottom:294.133533pt;}
.y14{bottom:294.293333pt;}
.y1c{bottom:294.773533pt;}
.y74{bottom:301.813530pt;}
.y5c{bottom:304.693529pt;}
.y32{bottom:310.933526pt;}
.y26{bottom:323.413521pt;}
.y3a{bottom:325.173521pt;}
.y2e{bottom:325.333521pt;}
.y1d{bottom:329.333519pt;}
.y43{bottom:330.133519pt;}
.y6b{bottom:334.293333pt;}
.y61{bottom:335.893333pt;}
.y56{bottom:339.573515pt;}
.y50{bottom:349.653333pt;}
.y78{bottom:353.813333pt;}
.y9{bottom:355.093333pt;}
.y5a{bottom:360.213333pt;}
.y72{bottom:363.413333pt;}
.y38{bottom:368.373333pt;}
.y24{bottom:379.093333pt;}
.y2d{bottom:381.013333pt;}
.y41{bottom:385.813333pt;}
.y6{bottom:396.853333pt;}
.y1a{bottom:405.813488pt;}
.y69{bottom:413.493485pt;}
.y53{bottom:414.453485pt;}
.y5f{bottom:415.093485pt;}
.y11{bottom:427.413480pt;}
.y46{bottom:429.013479pt;}
.y31{bottom:430.773478pt;}
.y16{bottom:432.853478pt;}
.y8{bottom:443.733473pt;}
.y36{bottom:445.013473pt;}
.y19{bottom:450.613470pt;}
.y77{bottom:450.773470pt;}
.y22{bottom:458.293467pt;}
.y2b{bottom:460.213467pt;}
.y3f{bottom:465.013465pt;}
.y1b{bottom:485.173457pt;}
.y45{bottom:496.373452pt;}
.y35{bottom:497.493452pt;}
.y76{bottom:533.173437pt;}
.y30{bottom:550.453430pt;}
.yf{bottom:552.533430pt;}
.y5{bottom:555.733428pt;}
.y4{bottom:619.093403pt;}
.y18{bottom:631.893398pt;}
.y2a{bottom:657.973387pt;}
.y12{bottom:661.333386pt;}
.y1{bottom:674.293381pt;}
.y3{bottom:686.453376pt;}
.h20{height:0.160000pt;}
.h1c{height:1.760000pt;}
.h16{height:11.040000pt;}
.h17{height:15.520000pt;}
.h12{height:15.840000pt;}
.h10{height:17.760000pt;}
.h13{height:20.320000pt;}
.h1a{height:26.080000pt;}
.h5{height:28.000000pt;}
.h14{height:28.480000pt;}
.h24{height:33.440000pt;}
.h26{height:33.600000pt;}
.h23{height:36.320000pt;}
.h1b{height:36.640000pt;}
.ha{height:36.800000pt;}
.h8{height:41.760000pt;}
.h27{height:43.040000pt;}
.hf{height:44.960000pt;}
.h11{height:46.880000pt;}
.h19{height:47.200000pt;}
.h15{height:51.680000pt;}
.h22{height:55.680000pt;}
.h1f{height:59.360000pt;}
.h1d{height:60.960000pt;}
.h21{height:62.560000pt;}
.h18{height:62.720000pt;}
.h1e{height:83.680000pt;}
.h2{height:90.779964pt;}
.hc{height:102.560000pt;}
.he{height:156.194938pt;}
.hb{height:182.227427pt;}
.hd{height:208.259917pt;}
.h3{height:234.292406pt;}
.h1{height:246.974901pt;}
.h6{height:260.324896pt;}
.h25{height:286.357385pt;}
.h4{height:312.389875pt;}
.h9{height:429.202328pt;}
.h7{height:520.649792pt;}
.h0{height:793.333333pt;}
.w25{width:24.439467pt;}
.w18{width:38.839467pt;}
.w11{width:59.040000pt;}
.wa{width:74.720000pt;}
.w7{width:77.760000pt;}
.w4{width:83.200000pt;}
.w14{width:105.920000pt;}
.wf{width:106.720000pt;}
.we{width:109.120000pt;}
.w9{width:109.280000pt;}
.w3{width:121.440000pt;}
.w17{width:122.999467pt;}
.w16{width:127.840000pt;}
.w24{width:165.440000pt;}
.w5{width:170.080000pt;}
.w28{width:173.600000pt;}
.w22{width:203.840000pt;}
.w2a{width:240.480000pt;}
.w1{width:253.120000pt;}
.wd{width:274.880000pt;}
.w15{width:287.200000pt;}
.w26{width:301.760000pt;}
.wc{width:324.320000pt;}
.w1d{width:349.280000pt;}
.w21{width:366.880000pt;}
.w13{width:371.360000pt;}
.w2{width:399.040000pt;}
.w12{width:427.520000pt;}
.w19{width:430.560000pt;}
.w29{width:431.200000pt;}
.w1e{width:446.240000pt;}
.w8{width:489.920000pt;}
.w23{width:499.040000pt;}
.w27{width:506.720000pt;}
.w1c{width:510.199467pt;}
.w1a{width:572.119467pt;}
.wb{width:648.960000pt;}
.w10{width:714.720000pt;}
.w6{width:845.920000pt;}
.w1f{width:908.000000pt;}
.w1b{width:1005.879147pt;}
.w20{width:1027.479147pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:11.347489pt;}
.x4f{left:16.147460pt;}
.x10{left:18.547459pt;}
.x12{left:28.947455pt;}
.x15{left:30.707454pt;}
.x17{left:45.267449pt;}
.x31{left:48.627981pt;}
.x6{left:56.947520pt;}
.x1{left:66.387440pt;}
.x3c{left:71.987438pt;}
.x4c{left:76.627520pt;}
.x55{left:79.507520pt;}
.x3{left:84.467433pt;}
.x13{left:89.587431pt;}
.x50{left:95.187520pt;}
.x11{left:99.987427pt;}
.x34{left:102.547959pt;}
.x35{left:109.747423pt;}
.x3e{left:117.267520pt;}
.x2f{left:122.707951pt;}
.xb{left:137.107945pt;}
.x39{left:140.627520pt;}
.x1a{left:145.907942pt;}
.x4b{left:148.307941pt;}
.x4d{left:154.387520pt;}
.xe{left:157.587937pt;}
.x5e{left:159.027936pt;}
.x4a{left:162.387935pt;}
.x5f{left:165.107934pt;}
.x47{left:171.827200pt;}
.x2d{left:175.667930pt;}
.x19{left:177.427929pt;}
.x18{left:182.227927pt;}
.x2a{left:195.987200pt;}
.x3a{left:199.667200pt;}
.x16{left:203.507919pt;}
.x14{left:205.747918pt;}
.x5a{left:207.667917pt;}
.x59{left:215.347914pt;}
.x29{left:219.507912pt;}
.x33{left:228.787908pt;}
.x5b{left:236.467200pt;}
.x38{left:254.547898pt;}
.x45{left:260.307896pt;}
.x21{left:263.667895pt;}
.x1c{left:266.387893pt;}
.x44{left:269.107892pt;}
.xd{left:270.227892pt;}
.x51{left:276.467200pt;}
.x1b{left:286.067886pt;}
.x5{left:287.347885pt;}
.x30{left:288.947884pt;}
.x36{left:291.027884pt;}
.x49{left:301.267879pt;}
.x24{left:307.027877pt;}
.x7{left:310.067200pt;}
.x22{left:325.907870pt;}
.x37{left:337.107865pt;}
.x42{left:341.267863pt;}
.x5d{left:360.467856pt;}
.x56{left:381.267200pt;}
.xc{left:388.307845pt;}
.x25{left:391.347200pt;}
.x20{left:397.587841pt;}
.x48{left:399.347840pt;}
.x23{left:400.947840pt;}
.x46{left:402.547839pt;}
.x3d{left:407.347304pt;}
.xf{left:419.507832pt;}
.x2e{left:420.467832pt;}
.x32{left:421.747831pt;}
.x4{left:433.747827pt;}
.x1d{left:438.387200pt;}
.x28{left:453.907818pt;}
.x26{left:466.067200pt;}
.x4e{left:483.827806pt;}
.x58{left:485.427806pt;}
.x53{left:510.387200pt;}
.x1e{left:516.147200pt;}
.x2b{left:520.307200pt;}
.x3f{left:550.547780pt;}
.x27{left:572.307771pt;}
.x43{left:612.467200pt;}
.x3b{left:627.187200pt;}
.x52{left:643.347200pt;}
.x5c{left:667.667200pt;}
.x8{left:709.107200pt;}
.x2c{left:810.547200pt;}
.x9{left:830.547200pt;}
.x57{left:887.987200pt;}
.xa{left:913.747200pt;}
.x40{left:999.667200pt;}
.x1f{left:1006.067200pt;}
.x41{left:1083.827200pt;}
.x54{left:1098.227200pt;}
}




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