
    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_bf21fb6a461f2fe9169e66d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_00da88c80e023a36d76260aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_02cc0f8b1cff9c7181884a24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862305;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_3a83d5b5cf3a03037158b634.woff2')format("woff");}.ff4{font-family:ff4;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:55.295978px;}
.ls4{letter-spacing:68.506533px;}
.ls2{letter-spacing:75.311970px;}
.ls3{letter-spacing:82.117407px;}
.ls5{letter-spacing:111.599955px;}
.ls1{letter-spacing:119.915952px;}
.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;}
}
.wsc{word-spacing:-59.718216px;}
.ws19{word-spacing:-37.913745px;}
.ws1a{word-spacing:-32.687987px;}
.ws6{word-spacing:-27.174229px;}
.ws18{word-spacing:-21.641751px;}
.ws0{word-spacing:-16.271993px;}
.ws17{word-spacing:-1.794221px;}
.ws11{word-spacing:-0.709175px;}
.wsb{word-spacing:-0.534948px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.691981px;}
.wsa{word-spacing:0.905046px;}
.ws2{word-spacing:3.571968px;}
.ws9{word-spacing:3.666236px;}
.ws14{word-spacing:5.050799px;}
.ws8{word-spacing:5.826227px;}
.ws4{word-spacing:8.611946px;}
.ws10{word-spacing:9.550299px;}
.wsf{word-spacing:9.730298px;}
.wse{word-spacing:10.445726px;}
.ws16{word-spacing:11.970128px;}
.ws12{word-spacing:12.211930px;}
.ws15{word-spacing:12.931927px;}
.ws13{word-spacing:14.466189px;}
.ws7{word-spacing:18.419799px;}
.wsd{word-spacing:20.851892px;}
.ws5{word-spacing:91.085731px;}
._5{margin-left:-13.419220px;}
._9{margin-left:-11.195577px;}
._13{margin-left:-9.540135px;}
._1{margin-left:-7.127997px;}
._4{margin-left:-4.963882px;}
._3{margin-left:-3.662413px;}
._0{margin-left:-2.015999px;}
._d{margin-left:-1.010742px;}
._2{width:1.008000px;}
._14{width:2.936224px;}
._17{width:4.119142px;}
._15{width:19.952611px;}
._16{width:23.802263px;}
._7{width:26.396678px;}
._6{width:28.939632px;}
._c{width:31.569841px;}
._8{width:36.863228px;}
._f{width:38.023079px;}
._e{width:39.132540px;}
._10{width:40.473829px;}
._11{width:42.799713px;}
._b{width:46.867671px;}
._12{width:64.026230px;}
._a{width:119.817838px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(6,6,10);}
.fs0{font-size:71.999971px;}
.fs6{font-size:95.759962px;}
.fs4{font-size:107.999957px;}
.fs3{font-size:120.239952px;}
.fs9{font-size:143.999942px;}
.fs2{font-size:161.999935px;}
.fs8{font-size:167.759933px;}
.fs5{font-size:192.239923px;}
.fs7{font-size:215.999914px;}
.fs1{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y60{bottom:11.340032px;}
.y9{bottom:17.820037px;}
.y2{bottom:76.200327px;}
.y1{bottom:97.800318px;}
.y7c{bottom:134.880303px;}
.y24{bottom:152.340296px;}
.y4f{bottom:156.660294px;}
.y7{bottom:162.780292px;}
.y3f{bottom:171.780288px;}
.y89{bottom:173.940287px;}
.y7b{bottom:178.080286px;}
.y4e{bottom:185.460283px;}
.y23{bottom:187.620282px;}
.y5e{bottom:200.580277px;}
.y6d{bottom:205.260275px;}
.y6{bottom:210.120273px;}
.y3e{bottom:214.980271px;}
.y88{bottom:217.140270px;}
.y22{bottom:220.020269px;}
.y7a{bottom:221.280268px;}
.y5d{bottom:229.380265px;}
.y6c{bottom:241.260260px;}
.y30{bottom:244.500259px;}
.y4d{bottom:248.820257px;}
.y3d{bottom:250.980257px;}
.y5c{bottom:258.180254px;}
.y21{bottom:258.900253px;}
.y87{bottom:260.340253px;}
.y79{bottom:264.480251px;}
.y93{bottom:265.380251px;}
.y2f{bottom:280.500245px;}
.y4c{bottom:283.380244px;}
.y6b{bottom:284.460243px;}
.y96{bottom:285.720243px;}
.y5b{bottom:286.980242px;}
.y20{bottom:291.300240px;}
.y3c{bottom:294.180239px;}
.y14{bottom:302.640236px;}
.y86{bottom:303.540236px;}
.y5a{bottom:315.780231px;}
.y78{bottom:316.320230px;}
.y2e{bottom:316.500230px;}
.y92{bottom:317.220230px;}
.y5{bottom:319.560229px;}
.y6a{bottom:320.460229px;}
.y3b{bottom:330.180225px;}
.y1f{bottom:330.900225px;}
.y13{bottom:338.640222px;}
.y59{bottom:344.580219px;}
.y85{bottom:346.740218px;}
.y2d{bottom:352.500216px;}
.y69{bottom:356.460214px;}
.y77{bottom:359.520213px;}
.y91{bottom:360.420213px;}
.y95{bottom:363.480212px;}
.y3a{bottom:366.180211px;}
.y1e{bottom:366.900210px;}
.y58{bottom:373.380208px;}
.y12{bottom:374.640207px;}
.y2c{bottom:388.500202px;}
.y68{bottom:392.460200px;}
.y4b{bottom:395.700199px;}
.y84{bottom:398.580198px;}
.y4{bottom:398.760197px;}
.y57{bottom:402.180196px;}
.y76{bottom:402.720196px;}
.y90{bottom:403.620196px;}
.y39{bottom:409.380193px;}
.y1d{bottom:410.100193px;}
.y11{bottom:410.640193px;}
.y2b{bottom:424.500187px;}
.y67{bottom:428.460186px;}
.y56{bottom:438.360182px;}
.y94{bottom:441.240181px;}
.y83{bottom:441.780180px;}
.y38{bottom:445.380179px;}
.y75{bottom:445.920179px;}
.y1c{bottom:446.100179px;}
.y10{bottom:446.640178px;}
.y8f{bottom:446.820178px;}
.y4a{bottom:453.300176px;}
.y2a{bottom:467.700170px;}
.y66{bottom:471.660168px;}
.y3{bottom:477.960166px;}
.y1b{bottom:482.100164px;}
.y49{bottom:487.860162px;}
.y37{bottom:488.580162px;}
.yf{bottom:489.840161px;}
.y8e{bottom:490.020161px;}
.y82{bottom:493.620160px;}
.y74{bottom:497.760158px;}
.y29{bottom:510.900153px;}
.y55{bottom:514.500151px;}
.y65{bottom:514.860151px;}
.y48{bottom:516.660150px;}
.y1a{bottom:518.100150px;}
.y36{bottom:524.580147px;}
.ye{bottom:525.840147px;}
.y8d{bottom:533.220144px;}
.y81{bottom:536.820142px;}
.y73{bottom:540.960141px;}
.y54{bottom:543.300140px;}
.y47{bottom:545.460139px;}
.y28{bottom:554.100135px;}
.y19{bottom:561.300132px;}
.yd{bottom:561.840132px;}
.y35{bottom:567.780130px;}
.y53{bottom:572.100128px;}
.y46{bottom:574.260127px;}
.y80{bottom:580.020125px;}
.y72{bottom:584.160123px;}
.y8c{bottom:585.060123px;}
.y27{bottom:590.100121px;}
.y18{bottom:597.300118px;}
.yc{bottom:597.840118px;}
.y45{bottom:603.060116px;}
.y34{bottom:603.780115px;}
.y52{bottom:608.280114px;}
.y64{bottom:611.520112px;}
.y7f{bottom:623.220108px;}
.y8b{bottom:628.260106px;}
.y44{bottom:631.860104px;}
.y17{bottom:633.300104px;}
.yb{bottom:633.840103px;}
.y71{bottom:636.000103px;}
.y33{bottom:639.780101px;}
.y63{bottom:661.920092px;}
.y43{bottom:668.040090px;}
.y32{bottom:675.780087px;}
.y26{bottom:676.500086px;}
.y70{bottom:687.840082px;}
.y16{bottom:689.640081px;}
.y62{bottom:712.320072px;}
.y31{bottom:718.980069px;}
.ya{bottom:722.040068px;}
.y7e{bottom:730.860065px;}
.y51{bottom:732.300064px;}
.y42{bottom:737.880062px;}
.y6f{bottom:741.300060px;}
.y8a{bottom:747.960058px;}
.y25{bottom:761.640052px;}
.y61{bottom:762.720052px;}
.y15{bottom:768.840049px;}
.y40{bottom:773.520048px;}
.y7d{bottom:781.260044px;}
.y8{bottom:783.420000px;}
.y6e{bottom:791.700040px;}
.y41{bottom:795.480039px;}
.y50{bottom:797.100038px;}
.y5f{bottom:801.780000px;}
.h10{height:49.500000px;}
.h1{height:49.886699px;}
.hd{height:66.349309px;}
.h5{height:67.860000px;}
.ha{height:74.830048px;}
.h4{height:75.093720px;}
.hf{height:78.973914px;}
.h7{height:83.310787px;}
.h8{height:99.162734px;}
.h13{height:99.773398px;}
.hc{height:99.874648px;}
.h3{height:110.900346px;}
.h9{height:112.640580px;}
.h14{height:118.757765px;}
.h6{height:125.406512px;}
.h11{height:138.352796px;}
.he{height:149.660096px;}
.h12{height:150.187440px;}
.hb{height:158.541616px;}
.h15{height:178.136647px;}
.h2{height:217.920499px;}
.h0{height:892.500000px;}
.w2{width:125.280000px;}
.w1{width:637.020000px;}
.w3{width:935.460000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:100.246460px;}
.xb{left:102.225859px;}
.x1f{left:115.005854px;}
.x14{left:119.145852px;}
.x22{left:123.466451px;}
.x12{left:132.645847px;}
.x13{left:134.625846px;}
.xc{left:142.725843px;}
.xe{left:148.846440px;}
.x21{left:153.346439px;}
.x16{left:156.226438px;}
.x20{left:158.206437px;}
.x25{left:163.966434px;}
.x1b{left:169.365960px;}
.x2a{left:172.425831px;}
.x26{left:176.386429px;}
.x23{left:177.466429px;}
.x1d{left:184.846426px;}
.xf{left:189.346424px;}
.x1{left:194.566422px;}
.x28{left:196.726421px;}
.x19{left:199.426420px;}
.x10{left:202.846419px;}
.x17{left:210.226416px;}
.x24{left:211.306415px;}
.x5{left:214.726414px;}
.x2b{left:227.146409px;}
.x3{left:233.266407px;}
.x11{left:236.686405px;}
.x18{left:244.066402px;}
.x2c{left:247.846401px;}
.x8{left:258.825600px;}
.x15{left:268.365793px;}
.x2{left:279.706388px;}
.x4{left:331.006368px;}
.x1c{left:334.606366px;}
.x6{left:379.426348px;}
.x29{left:401.026340px;}
.xa{left:442.606323px;}
.xd{left:489.766304px;}
.x27{left:530.446288px;}
.x1e{left:614.146254px;}
.x7{left:693.166223px;}
.x9{left:895.845600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:49.151980pt;}
.ls4{letter-spacing:60.894696pt;}
.ls2{letter-spacing:66.943973pt;}
.ls3{letter-spacing:72.993251pt;}
.ls5{letter-spacing:99.199960pt;}
.ls1{letter-spacing:106.591957pt;}
.wsc{word-spacing:-53.082859pt;}
.ws19{word-spacing:-33.701107pt;}
.ws1a{word-spacing:-29.055988pt;}
.ws6{word-spacing:-24.154870pt;}
.ws18{word-spacing:-19.237112pt;}
.ws0{word-spacing:-14.463994pt;}
.ws17{word-spacing:-1.594863pt;}
.ws11{word-spacing:-0.630378pt;}
.wsb{word-spacing:-0.475509pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.615094pt;}
.wsa{word-spacing:0.804485pt;}
.ws2{word-spacing:3.175083pt;}
.ws9{word-spacing:3.258877pt;}
.ws14{word-spacing:4.489599pt;}
.ws8{word-spacing:5.178868pt;}
.ws4{word-spacing:7.655063pt;}
.ws10{word-spacing:8.489154pt;}
.wsf{word-spacing:8.649154pt;}
.wse{word-spacing:9.285089pt;}
.ws16{word-spacing:10.640114pt;}
.ws12{word-spacing:10.855049pt;}
.ws15{word-spacing:11.495046pt;}
.ws13{word-spacing:12.858835pt;}
.ws7{word-spacing:16.373154pt;}
.wsd{word-spacing:18.535015pt;}
.ws5{word-spacing:80.965095pt;}
._5{margin-left:-11.928195pt;}
._9{margin-left:-9.951624pt;}
._13{margin-left:-8.480120pt;}
._1{margin-left:-6.335997pt;}
._4{margin-left:-4.412340pt;}
._3{margin-left:-3.255478pt;}
._0{margin-left:-1.791999pt;}
._d{margin-left:-0.898437pt;}
._2{width:0.896000pt;}
._14{width:2.609977pt;}
._17{width:3.661460pt;}
._15{width:17.735654pt;}
._16{width:21.157567pt;}
._7{width:23.463714pt;}
._6{width:25.724118pt;}
._c{width:28.062080pt;}
._8{width:32.767314pt;}
._f{width:33.798292pt;}
._e{width:34.784480pt;}
._10{width:35.976737pt;}
._11{width:38.044189pt;}
._b{width:41.660152pt;}
._12{width:56.912204pt;}
._a{width:106.504745pt;}
.fs0{font-size:63.999974pt;}
.fs6{font-size:85.119966pt;}
.fs4{font-size:95.999962pt;}
.fs3{font-size:106.879957pt;}
.fs9{font-size:127.999949pt;}
.fs2{font-size:143.999942pt;}
.fs8{font-size:149.119940pt;}
.fs5{font-size:170.879932pt;}
.fs7{font-size:191.999923pt;}
.fs1{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:10.080028pt;}
.y9{bottom:15.840032pt;}
.y2{bottom:67.733624pt;}
.y1{bottom:86.933616pt;}
.y7c{bottom:119.893603pt;}
.y24{bottom:135.413597pt;}
.y4f{bottom:139.253595pt;}
.y7{bottom:144.693593pt;}
.y3f{bottom:152.693590pt;}
.y89{bottom:154.613589pt;}
.y7b{bottom:158.293587pt;}
.y4e{bottom:164.853585pt;}
.y23{bottom:166.773584pt;}
.y5e{bottom:178.293579pt;}
.y6d{bottom:182.453578pt;}
.y6{bottom:186.773576pt;}
.y3e{bottom:191.093574pt;}
.y88{bottom:193.013573pt;}
.y22{bottom:195.573572pt;}
.y7a{bottom:196.693572pt;}
.y5d{bottom:203.893569pt;}
.y6c{bottom:214.453565pt;}
.y30{bottom:217.333564pt;}
.y4d{bottom:221.173562pt;}
.y3d{bottom:223.093561pt;}
.y5c{bottom:229.493559pt;}
.y21{bottom:230.133559pt;}
.y87{bottom:231.413558pt;}
.y79{bottom:235.093557pt;}
.y93{bottom:235.893556pt;}
.y2f{bottom:249.333551pt;}
.y4c{bottom:251.893550pt;}
.y6b{bottom:252.853550pt;}
.y96{bottom:253.973549pt;}
.y5b{bottom:255.093549pt;}
.y20{bottom:258.933547pt;}
.y3c{bottom:261.493546pt;}
.y14{bottom:269.013543pt;}
.y86{bottom:269.813543pt;}
.y5a{bottom:280.693538pt;}
.y78{bottom:281.173538pt;}
.y2e{bottom:281.333538pt;}
.y92{bottom:281.973538pt;}
.y5{bottom:284.053537pt;}
.y6a{bottom:284.853537pt;}
.y3b{bottom:293.493533pt;}
.y1f{bottom:294.133533pt;}
.y13{bottom:301.013530pt;}
.y59{bottom:306.293528pt;}
.y85{bottom:308.213527pt;}
.y2d{bottom:313.333525pt;}
.y69{bottom:316.853524pt;}
.y77{bottom:319.573523pt;}
.y91{bottom:320.373523pt;}
.y95{bottom:323.093521pt;}
.y3a{bottom:325.493520pt;}
.y1e{bottom:326.133520pt;}
.y58{bottom:331.893518pt;}
.y12{bottom:333.013517pt;}
.y2c{bottom:345.333513pt;}
.y68{bottom:348.853511pt;}
.y4b{bottom:351.733510pt;}
.y84{bottom:354.293509pt;}
.y4{bottom:354.453509pt;}
.y57{bottom:357.493508pt;}
.y76{bottom:357.973507pt;}
.y90{bottom:358.773507pt;}
.y39{bottom:363.893505pt;}
.y1d{bottom:364.533505pt;}
.y11{bottom:365.013505pt;}
.y2b{bottom:377.333500pt;}
.y67{bottom:380.853498pt;}
.y56{bottom:389.653495pt;}
.y94{bottom:392.213494pt;}
.y83{bottom:392.693494pt;}
.y38{bottom:395.893492pt;}
.y75{bottom:396.373492pt;}
.y1c{bottom:396.533492pt;}
.y10{bottom:397.013492pt;}
.y8f{bottom:397.173492pt;}
.y4a{bottom:402.933489pt;}
.y2a{bottom:415.733484pt;}
.y66{bottom:419.253483pt;}
.y3{bottom:424.853481pt;}
.y1b{bottom:428.533479pt;}
.y49{bottom:433.653477pt;}
.y37{bottom:434.293477pt;}
.yf{bottom:435.413477pt;}
.y8e{bottom:435.573476pt;}
.y82{bottom:438.773475pt;}
.y74{bottom:442.453474pt;}
.y29{bottom:454.133469pt;}
.y55{bottom:457.333468pt;}
.y65{bottom:457.653468pt;}
.y48{bottom:459.253467pt;}
.y1a{bottom:460.533466pt;}
.y36{bottom:466.293464pt;}
.ye{bottom:467.413464pt;}
.y8d{bottom:473.973461pt;}
.y81{bottom:477.173460pt;}
.y73{bottom:480.853458pt;}
.y54{bottom:482.933457pt;}
.y47{bottom:484.853457pt;}
.y28{bottom:492.533454pt;}
.y19{bottom:498.933451pt;}
.yd{bottom:499.413451pt;}
.y35{bottom:504.693449pt;}
.y53{bottom:508.533447pt;}
.y46{bottom:510.453446pt;}
.y80{bottom:515.573444pt;}
.y72{bottom:519.253443pt;}
.y8c{bottom:520.053443pt;}
.y27{bottom:524.533441pt;}
.y18{bottom:530.933438pt;}
.yc{bottom:531.413438pt;}
.y45{bottom:536.053436pt;}
.y34{bottom:536.693436pt;}
.y52{bottom:540.693434pt;}
.y64{bottom:543.573433pt;}
.y7f{bottom:553.973429pt;}
.y8b{bottom:558.453427pt;}
.y44{bottom:561.653426pt;}
.y17{bottom:562.933425pt;}
.yb{bottom:563.413425pt;}
.y71{bottom:565.333425pt;}
.y33{bottom:568.693423pt;}
.y63{bottom:588.373415pt;}
.y43{bottom:593.813413pt;}
.y32{bottom:600.693410pt;}
.y26{bottom:601.333410pt;}
.y70{bottom:611.413406pt;}
.y16{bottom:613.013405pt;}
.y62{bottom:633.173397pt;}
.y31{bottom:639.093395pt;}
.ya{bottom:641.813394pt;}
.y7e{bottom:649.653391pt;}
.y51{bottom:650.933390pt;}
.y42{bottom:655.893388pt;}
.y6f{bottom:658.933387pt;}
.y8a{bottom:664.853385pt;}
.y25{bottom:677.013380pt;}
.y61{bottom:677.973379pt;}
.y15{bottom:683.413377pt;}
.y40{bottom:687.573376pt;}
.y7d{bottom:694.453373pt;}
.y8{bottom:696.373333pt;}
.y6e{bottom:703.733369pt;}
.y41{bottom:707.093368pt;}
.y50{bottom:708.533367pt;}
.y5f{bottom:712.693333pt;}
.h10{height:44.000000pt;}
.h1{height:44.343732pt;}
.hd{height:58.977164pt;}
.h5{height:60.320000pt;}
.ha{height:66.515598pt;}
.h4{height:66.749973pt;}
.hf{height:70.199034pt;}
.h7{height:74.054033pt;}
.h8{height:88.144652pt;}
.h13{height:88.687465pt;}
.hc{height:88.777464pt;}
.h3{height:98.578086pt;}
.h9{height:100.124960pt;}
.h14{height:105.562458pt;}
.h6{height:111.472455pt;}
.h11{height:122.980263pt;}
.he{height:133.031197pt;}
.h12{height:133.499947pt;}
.hb{height:140.925881pt;}
.h15{height:158.343687pt;}
.h2{height:193.707110pt;}
.h0{height:793.333333pt;}
.w2{width:111.360000pt;}
.w1{width:566.240000pt;}
.w3{width:831.520000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:89.107964pt;}
.xb{left:90.867430pt;}
.x1f{left:102.227426pt;}
.x14{left:105.907424pt;}
.x22{left:109.747956pt;}
.x12{left:117.907420pt;}
.x13{left:119.667419pt;}
.xc{left:126.867416pt;}
.xe{left:132.307947pt;}
.x21{left:136.307945pt;}
.x16{left:138.867944pt;}
.x20{left:140.627944pt;}
.x25{left:145.747942pt;}
.x1b{left:150.547520pt;}
.x2a{left:153.267405pt;}
.x26{left:156.787937pt;}
.x23{left:157.747937pt;}
.x1d{left:164.307934pt;}
.xf{left:168.307933pt;}
.x1{left:172.947931pt;}
.x28{left:174.867930pt;}
.x19{left:177.267929pt;}
.x10{left:180.307928pt;}
.x17{left:186.867925pt;}
.x24{left:187.827925pt;}
.x5{left:190.867924pt;}
.x2b{left:201.907919pt;}
.x3{left:207.347917pt;}
.x11{left:210.387916pt;}
.x18{left:216.947913pt;}
.x2c{left:220.307912pt;}
.x8{left:230.067200pt;}
.x15{left:238.547371pt;}
.x2{left:248.627901pt;}
.x4{left:294.227882pt;}
.x1c{left:297.427881pt;}
.x6{left:337.267865pt;}
.x29{left:356.467857pt;}
.xa{left:393.427843pt;}
.xd{left:435.347826pt;}
.x27{left:471.507811pt;}
.x1e{left:545.907782pt;}
.x7{left:616.147754pt;}
.x9{left:796.307200pt;}
}




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