
    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_28b9bc68ff2f68c25b56ac8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_bbdc38a43b9eb530667e6bfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_d646149c5c79649826a88b4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_69dbe8daf8b4058c558d1729.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.033756px;}
.ls8{letter-spacing:7.228924px;}
.lsa{letter-spacing:16.822346px;}
.ls9{letter-spacing:16.823647px;}
.ls3{letter-spacing:16.824110px;}
.ls4{letter-spacing:21.606123px;}
.ls5{letter-spacing:21.606150px;}
.ls7{letter-spacing:108.019040px;}
.ls2{letter-spacing:108.024110px;}
.ls6{letter-spacing:108.051753px;}
.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;}
}
.ws3{word-spacing:-29.664001px;}
.wse{word-spacing:-28.800001px;}
.ws2{word-spacing:-24.720000px;}
.ws1{word-spacing:-24.000000px;}
.ws4{word-spacing:-22.248001px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:86.085971px;}
.wsb{word-spacing:86.088203px;}
.wsd{word-spacing:86.090439px;}
.wsc{word-spacing:86.110013px;}
.ws9{word-spacing:88.300087px;}
.ws5{word-spacing:88.818739px;}
.ws6{word-spacing:88.820472px;}
.ws7{word-spacing:88.829563px;}
.ws8{word-spacing:88.840017px;}
._0{margin-left:-19.080001px;}
._a{margin-left:-16.020001px;}
._10{margin-left:-14.714159px;}
._d{margin-left:-13.680000px;}
._11{margin-left:-12.600000px;}
._c{margin-left:-11.232000px;}
._2{margin-left:-9.360000px;}
._b{margin-left:-8.181842px;}
._1{margin-left:-6.840000px;}
._9{margin-left:-5.496000px;}
._5{margin-left:-4.320000px;}
._3{margin-left:-2.280000px;}
._6{margin-left:-1.200000px;}
._7{width:1.424156px;}
._8{width:2.592000px;}
._f{width:4.279500px;}
._e{width:21.622352px;}
._4{width:108.022346px;}
.fc1{color:rgb(245,158,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.000003px;}
.fsd{font-size:72.000002px;}
.fs6{font-size:86.399998px;}
.fs5{font-size:96.000006px;}
.fs7{font-size:108.000003px;}
.fse{font-size:109.649996px;}
.fs10{font-size:115.200004px;}
.fs4{font-size:120.000001px;}
.fsf{font-size:121.650002px;}
.fsb{font-size:122.399999px;}
.fs2{font-size:134.399997px;}
.fsa{font-size:144.000005px;}
.fs3{font-size:167.999999px;}
.fsc{font-size:180.000006px;}
.fs8{font-size:216.000007px;}
.fs1{font-size:240.000002px;}
.fs0{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y34{bottom:11.082124px;}
.y33{bottom:39.882125px;}
.y32{bottom:54.282126px;}
.y48{bottom:107.734141px;}
.y30{bottom:134.436376px;}
.y23{bottom:137.813626px;}
.y57{bottom:138.220966px;}
.y65{bottom:140.512794px;}
.y3d{bottom:143.412380px;}
.y7f{bottom:145.413372px;}
.y19{bottom:145.970281px;}
.ya{bottom:148.692039px;}
.y22{bottom:163.013627px;}
.y64{bottom:163.539283px;}
.y6f{bottom:169.045764px;}
.y18{bottom:171.170271px;}
.y55{bottom:174.609880px;}
.y2f{bottom:176.004385px;}
.y7e{bottom:185.613370px;}
.y21{bottom:188.213616px;}
.y6e{bottom:192.072243px;}
.y9{bottom:194.052040px;}
.y17{bottom:196.370274px;}
.y63{bottom:201.565781px;}
.y2e{bottom:205.164419px;}
.y7d{bottom:210.813405px;}
.y20{bottom:213.413619px;}
.y6d{bottom:230.098751px;}
.y16{bottom:236.570271px;}
.y3c{bottom:238.212375px;}
.y46{bottom:240.702619px;}
.y90{bottom:240.775711px;}
.y99{bottom:241.330392px;}
.y2d{bottom:249.972383px;}
.y7c{bottom:251.013413px;}
.y87{bottom:252.862283px;}
.y1f{bottom:253.613617px;}
.y54{bottom:269.409898px;}
.y3b{bottom:270.612365px;}
.y9e{bottom:276.996020px;}
.y62{bottom:277.618775px;}
.y8f{bottom:279.655712px;}
.y2c{bottom:282.372384px;}
.y45{bottom:290.382621px;}
.y7b{bottom:291.213456px;}
.y98{bottom:294.526401px;}
.y86{bottom:300.262281px;}
.y61{bottom:300.645265px;}
.y3a{bottom:303.012355px;}
.y6c{bottom:306.151746px;}
.y8{bottom:314.772037px;}
.y9d{bottom:315.876010px;}
.y7a{bottom:316.413445px;}
.y6b{bottom:329.178247px;}
.ya5{bottom:330.722715px;}
.y15{bottom:331.992457px;}
.y97{bottom:333.406391px;}
.y60{bottom:338.671762px;}
.y44{bottom:340.062634px;}
.yc{bottom:348.648758px;}
.y85{bottom:348.958313px;}
.y14{bottom:357.192447px;}
.y79{bottom:357.621432px;}
.y7{bottom:360.132027px;}
.y53{bottom:364.209916px;}
.y6a{bottom:367.204745px;}
.ya4{bottom:369.602705px;}
.y96{bottom:372.286392px;}
.yab{bottom:374.579986px;}
.y2b{bottom:376.524425px;}
.y8e{bottom:380.935741px;}
.y13{bottom:382.392450px;}
.y1{bottom:383.042349px;}
.y43{bottom:389.742635px;}
.y52{bottom:396.609917px;}
.y39{bottom:397.812384px;}
.y49{bottom:401.240801px;}
.yaa{bottom:406.979998px;}
.y70{bottom:411.666670px;}
.y5f{bottom:414.724757px;}
.yac{bottom:417.672955px;}
.y8d{bottom:419.815743px;}
.y2a{bottom:420.684411px;}
.y12{bottom:422.592447px;}
.ya3{bottom:423.482691px;}
.y9c{bottom:423.635995px;}
.y38{bottom:430.212408px;}
.y5e{bottom:437.751258px;}
.ya9{bottom:439.379999px;}
.y42{bottom:439.422648px;}
.yb{bottom:440.448761px;}
.y78{bottom:442.053416px;}
.y69{bottom:443.257751px;}
.y84{bottom:448.942308px;}
.y5d{bottom:460.777759px;}
.y95{bottom:465.280391px;}
.y29{bottom:465.492409px;}
.y68{bottom:466.284258px;}
.y1e{bottom:468.293963px;}
.ya8{bottom:471.780007px;}
.y8c{bottom:473.695729px;}
.ya2{bottom:477.362689px;}
.y6{bottom:480.852001px;}
.y77{bottom:482.253425px;}
.y5c{bottom:483.804271px;}
.y41{bottom:489.102638px;}
.y11{bottom:490.688439px;}
.y51{bottom:491.409917px;}
.y83{bottom:496.342311px;}
.y1d{bottom:500.693964px;}
.ya7{bottom:504.179998px;}
.y67{bottom:504.310756px;}
.y94{bottom:504.430399px;}
.y5b{bottom:506.830760px;}
.y4e{bottom:512.242196px;}
.y8b{bottom:512.575719px;}
.y10{bottom:519.488439px;}
.y76{bottom:522.453425px;}
.y37{bottom:524.364403px;}
.y5{bottom:526.211994px;}
.ya1{bottom:531.242687px;}
.y9b{bottom:531.395992px;}
.y1c{bottom:533.093965px;}
.y73{bottom:536.207931px;}
.ya6{bottom:536.579995px;}
.y40{bottom:538.782629px;}
.y93{bottom:543.580400px;}
.y82{bottom:543.742315px;}
.y4d{bottom:544.642203px;}
.y5a{bottom:544.857260px;}
.yf{bottom:548.288440px;}
.y28{bottom:560.292405px;}
.y75{bottom:563.661420px;}
.y1b{bottom:565.493972px;}
.y8a{bottom:566.455718px;}
.y36{bottom:568.524401px;}
.y72{bottom:575.087922px;}
.y4c{bottom:577.042197px;}
.y92{bottom:579.526396px;}
.y66{bottom:580.867756px;}
.y59{bottom:582.883755px;}
.ya0{bottom:585.122686px;}
.y50{bottom:586.209911px;}
.y3f{bottom:588.462630px;}
.ye{bottom:592.088440px;}
.y81{bottom:592.438314px;}
.y27{bottom:592.692412px;}
.y4a{bottom:600.441249px;}
.y3{bottom:606.063537px;}
.y4b{bottom:609.442195px;}
.y35{bottom:612.684410px;}
.y1a{bottom:612.893967px;}
.y26{bottom:625.092403px;}
.y4{bottom:638.459999px;}
.y58{bottom:638.463538px;}
.y89{bottom:642.193993px;}
.y25{bottom:657.492400px;}
.y9a{bottom:667.515233px;}
.y2{bottom:670.863539px;}
.y71{bottom:671.965511px;}
.y4f{bottom:677.286374px;}
.y91{bottom:678.255648px;}
.y74{bottom:680.016495px;}
.y80{bottom:682.189665px;}
.y3e{bottom:688.179090px;}
.y9f{bottom:703.067975px;}
.y56{bottom:705.343461px;}
.y88{bottom:706.993991px;}
.y24{bottom:726.894448px;}
.yd{bottom:727.878898px;}
.y31{bottom:757.431167px;}
.y47{bottom:759.130628px;}
.h8{height:34.945315px;}
.hb{height:51.785158px;}
.h6{height:69.046879px;}
.h5{height:77.677737px;}
.hc{height:78.864475px;}
.h4{height:86.308594px;}
.hd{height:87.495339px;}
.h9{height:103.570316px;}
.h3{height:120.832031px;}
.ha{height:122.431645px;}
.h7{height:155.355474px;}
.h2{height:172.617189px;}
.h1{height:258.925790px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:13.857284px;}
.x1f{left:28.313976px;}
.xf{left:31.866142px;}
.x7{left:41.043308px;}
.x10{left:48.228116px;}
.x23{left:49.612209px;}
.x12{left:50.820594px;}
.x1a{left:54.383858px;}
.x13{left:56.231802px;}
.x8{left:57.405281px;}
.x33{left:68.096455px;}
.x14{left:71.069830px;}
.x34{left:73.781775px;}
.x15{left:76.349500px;}
.x11{left:85.866144px;}
.x35{left:88.347406px;}
.x16{left:91.319830px;}
.x17{left:100.649501px;}
.x1b{left:103.619771px;}
.x2{left:111.375004px;}
.x24{left:112.845592px;}
.x29{left:113.851313px;}
.x2a{left:115.002080px;}
.x3{left:116.731889px;}
.x25{left:118.264908px;}
.x26{left:119.272475px;}
.x30{left:125.339220px;}
.x2b{left:126.349189px;}
.x36{left:127.737101px;}
.x4{left:131.625128px;}
.x32{left:132.944854px;}
.x2d{left:137.250525px;}
.x1c{left:146.580710px;}
.x1d{left:157.619773px;}
.x1{left:159.428318px;}
.x31{left:162.977248px;}
.x37{left:165.375129px;}
.x27{left:166.845594px;}
.x1e{left:200.580711px;}
.x2e{left:212.528847px;}
.x5{left:225.382856px;}
.x2f{left:265.713387px;}
.x2c{left:282.109998px;}
.x20{left:349.278896px;}
.x9{left:355.764274px;}
.xa{left:372.126247px;}
.x21{left:384.193587px;}
.x6{left:401.230025px;}
.x28{left:411.705722px;}
.x19{left:467.152552px;}
.x22{left:495.025103px;}
.xb{left:758.462604px;}
.xd{left:772.167019px;}
.xc{left:774.824578px;}
.xe{left:812.462606px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030006pt;}
.ls8{letter-spacing:6.425710pt;}
.lsa{letter-spacing:14.953196pt;}
.ls9{letter-spacing:14.954353pt;}
.ls3{letter-spacing:14.954765pt;}
.ls4{letter-spacing:19.205442pt;}
.ls5{letter-spacing:19.205466pt;}
.ls7{letter-spacing:96.016925pt;}
.ls2{letter-spacing:96.021431pt;}
.ls6{letter-spacing:96.046003pt;}
.ws3{word-spacing:-26.368001pt;}
.wse{word-spacing:-25.600001pt;}
.ws2{word-spacing:-21.973333pt;}
.ws1{word-spacing:-21.333333pt;}
.ws4{word-spacing:-19.776001pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:76.520863pt;}
.wsb{word-spacing:76.522847pt;}
.wsd{word-spacing:76.524835pt;}
.wsc{word-spacing:76.542234pt;}
.ws9{word-spacing:78.488966pt;}
.ws5{word-spacing:78.949990pt;}
.ws6{word-spacing:78.951530pt;}
.ws7{word-spacing:78.959612pt;}
.ws8{word-spacing:78.968904pt;}
._0{margin-left:-16.960001pt;}
._a{margin-left:-14.240001pt;}
._10{margin-left:-13.079252pt;}
._d{margin-left:-12.160000pt;}
._11{margin-left:-11.200000pt;}
._c{margin-left:-9.984000pt;}
._2{margin-left:-8.320000pt;}
._b{margin-left:-7.272749pt;}
._1{margin-left:-6.080000pt;}
._9{margin-left:-4.885334pt;}
._5{margin-left:-3.840000pt;}
._3{margin-left:-2.026667pt;}
._6{margin-left:-1.066667pt;}
._7{width:1.265916pt;}
._8{width:2.304000pt;}
._f{width:3.804000pt;}
._e{width:19.219868pt;}
._4{width:96.019863pt;}
.fs9{font-size:42.666669pt;}
.fsd{font-size:64.000002pt;}
.fs6{font-size:76.799998pt;}
.fs5{font-size:85.333339pt;}
.fs7{font-size:96.000003pt;}
.fse{font-size:97.466663pt;}
.fs10{font-size:102.400003pt;}
.fs4{font-size:106.666667pt;}
.fsf{font-size:108.133335pt;}
.fsb{font-size:108.799999pt;}
.fs2{font-size:119.466664pt;}
.fsa{font-size:128.000004pt;}
.fs3{font-size:149.333333pt;}
.fsc{font-size:160.000005pt;}
.fs8{font-size:192.000006pt;}
.fs1{font-size:213.333335pt;}
.fs0{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:9.850777pt;}
.y33{bottom:35.450778pt;}
.y32{bottom:48.250779pt;}
.y48{bottom:95.763681pt;}
.y30{bottom:119.499001pt;}
.y23{bottom:122.501001pt;}
.y57{bottom:122.863081pt;}
.y65{bottom:124.900261pt;}
.y3d{bottom:127.477671pt;}
.y7f{bottom:129.256331pt;}
.y19{bottom:129.751361pt;}
.ya{bottom:132.170701pt;}
.y22{bottom:144.901002pt;}
.y64{bottom:145.368252pt;}
.y6f{bottom:150.262902pt;}
.y18{bottom:152.151352pt;}
.y55{bottom:155.208782pt;}
.y2f{bottom:156.448342pt;}
.y7e{bottom:164.989662pt;}
.y21{bottom:167.300992pt;}
.y6e{bottom:170.730882pt;}
.y9{bottom:172.490702pt;}
.y17{bottom:174.551355pt;}
.y63{bottom:179.169583pt;}
.y2e{bottom:182.368373pt;}
.y7d{bottom:187.389693pt;}
.y20{bottom:189.700995pt;}
.y6d{bottom:204.532224pt;}
.y16{bottom:210.284686pt;}
.y3c{bottom:211.744334pt;}
.y46{bottom:213.957884pt;}
.y90{bottom:214.022854pt;}
.y99{bottom:214.515904pt;}
.y2d{bottom:222.197674pt;}
.y7c{bottom:223.123034pt;}
.y87{bottom:224.766474pt;}
.y1f{bottom:225.434326pt;}
.y54{bottom:239.475465pt;}
.y3b{bottom:240.544325pt;}
.y9e{bottom:246.218685pt;}
.y62{bottom:246.772245pt;}
.y8f{bottom:248.582855pt;}
.y2c{bottom:250.997675pt;}
.y45{bottom:258.117885pt;}
.y7b{bottom:258.856405pt;}
.y98{bottom:261.801245pt;}
.y86{bottom:266.899806pt;}
.y61{bottom:267.240236pt;}
.y3a{bottom:269.344316pt;}
.y6c{bottom:272.134886pt;}
.y8{bottom:279.797366pt;}
.y9d{bottom:280.778676pt;}
.y7a{bottom:281.256396pt;}
.y6b{bottom:292.602886pt;}
.ya5{bottom:293.975746pt;}
.y15{bottom:295.104406pt;}
.y97{bottom:296.361236pt;}
.y60{bottom:301.041567pt;}
.y44{bottom:302.277897pt;}
.yc{bottom:309.910007pt;}
.y85{bottom:310.185167pt;}
.y14{bottom:317.504397pt;}
.y79{bottom:317.885717pt;}
.y7{bottom:320.117357pt;}
.y53{bottom:323.742147pt;}
.y6a{bottom:326.404217pt;}
.ya4{bottom:328.535737pt;}
.y96{bottom:330.921238pt;}
.yab{bottom:332.959988pt;}
.y2b{bottom:334.688378pt;}
.y8e{bottom:338.609548pt;}
.y13{bottom:339.904400pt;}
.y1{bottom:340.482088pt;}
.y43{bottom:346.437898pt;}
.y52{bottom:352.542148pt;}
.y39{bottom:353.611008pt;}
.y49{bottom:356.658489pt;}
.yaa{bottom:361.759999pt;}
.y70{bottom:365.925929pt;}
.y5f{bottom:368.644229pt;}
.yac{bottom:371.264849pt;}
.y8d{bottom:373.169549pt;}
.y2a{bottom:373.941699pt;}
.y12{bottom:375.637731pt;}
.ya3{bottom:376.429059pt;}
.y9c{bottom:376.565329pt;}
.y38{bottom:382.411029pt;}
.y5e{bottom:389.112229pt;}
.ya9{bottom:390.559999pt;}
.y42{bottom:390.597909pt;}
.yb{bottom:391.510009pt;}
.y78{bottom:392.936370pt;}
.y69{bottom:394.006890pt;}
.y84{bottom:399.059830pt;}
.y5d{bottom:409.580230pt;}
.y95{bottom:413.582570pt;}
.y29{bottom:413.771030pt;}
.y68{bottom:414.474896pt;}
.y1e{bottom:416.261300pt;}
.ya8{bottom:419.360006pt;}
.y8c{bottom:421.062870pt;}
.ya2{bottom:424.322391pt;}
.y6{bottom:427.424001pt;}
.y77{bottom:428.669711pt;}
.y5c{bottom:430.048241pt;}
.y41{bottom:434.757901pt;}
.y11{bottom:436.167501pt;}
.y51{bottom:436.808815pt;}
.y83{bottom:441.193165pt;}
.y1d{bottom:445.061301pt;}
.ya7{bottom:448.159998pt;}
.y67{bottom:448.276227pt;}
.y94{bottom:448.382577pt;}
.y5b{bottom:450.516231pt;}
.y4e{bottom:455.326397pt;}
.y8b{bottom:455.622862pt;}
.y10{bottom:461.767502pt;}
.y76{bottom:464.403045pt;}
.y37{bottom:466.101692pt;}
.y5{bottom:467.743995pt;}
.ya1{bottom:472.215722pt;}
.y9b{bottom:472.351993pt;}
.y1c{bottom:473.861302pt;}
.y73{bottom:476.629272pt;}
.ya6{bottom:476.959995pt;}
.y40{bottom:478.917892pt;}
.y93{bottom:483.182577pt;}
.y82{bottom:483.326502pt;}
.y4d{bottom:484.126402pt;}
.y5a{bottom:484.317564pt;}
.yf{bottom:487.367503pt;}
.y28{bottom:498.037693pt;}
.y75{bottom:501.032373pt;}
.y1b{bottom:502.661308pt;}
.y8a{bottom:503.516194pt;}
.y36{bottom:505.355023pt;}
.y72{bottom:511.189264pt;}
.y4c{bottom:512.926397pt;}
.y92{bottom:515.134574pt;}
.y66{bottom:516.326894pt;}
.y59{bottom:518.118894pt;}
.ya0{bottom:520.109055pt;}
.y50{bottom:521.075477pt;}
.y3f{bottom:523.077894pt;}
.ye{bottom:526.300836pt;}
.y81{bottom:526.611835pt;}
.y27{bottom:526.837700pt;}
.y4a{bottom:533.725555pt;}
.y3{bottom:538.723144pt;}
.y4b{bottom:541.726395pt;}
.y35{bottom:544.608364pt;}
.y1a{bottom:544.794637pt;}
.y26{bottom:555.637692pt;}
.y4{bottom:567.519999pt;}
.y58{bottom:567.523145pt;}
.y89{bottom:570.839105pt;}
.y25{bottom:584.437689pt;}
.y9a{bottom:593.346874pt;}
.y2{bottom:596.323146pt;}
.y71{bottom:597.302676pt;}
.y4f{bottom:602.032332pt;}
.y91{bottom:602.893909pt;}
.y74{bottom:604.459106pt;}
.y80{bottom:606.390813pt;}
.y3e{bottom:611.714747pt;}
.y9f{bottom:624.949311pt;}
.y56{bottom:626.971966pt;}
.y88{bottom:628.439103pt;}
.y24{bottom:646.128399pt;}
.yd{bottom:647.003465pt;}
.y31{bottom:673.272148pt;}
.y47{bottom:674.782780pt;}
.h8{height:31.062502pt;}
.hb{height:46.031251pt;}
.h6{height:61.375004pt;}
.h5{height:69.046877pt;}
.hc{height:70.101755pt;}
.h4{height:76.718751pt;}
.hd{height:77.773634pt;}
.h9{height:92.062503pt;}
.h3{height:107.406250pt;}
.ha{height:108.828128pt;}
.h7{height:138.093754pt;}
.h2{height:153.437501pt;}
.h1{height:230.156257pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:12.317586pt;}
.x1f{left:25.167979pt;}
.xf{left:28.325460pt;}
.x7{left:36.482940pt;}
.x10{left:42.869436pt;}
.x23{left:44.099741pt;}
.x12{left:45.173861pt;}
.x1a{left:48.341208pt;}
.x13{left:49.983824pt;}
.x8{left:51.026917pt;}
.x33{left:60.530182pt;}
.x14{left:63.173182pt;}
.x34{left:65.583800pt;}
.x15{left:67.866222pt;}
.x11{left:76.325461pt;}
.x35{left:78.531028pt;}
.x16{left:81.173183pt;}
.x17{left:89.466223pt;}
.x1b{left:92.106463pt;}
.x2{left:99.000003pt;}
.x24{left:100.307193pt;}
.x29{left:101.201167pt;}
.x2a{left:102.224071pt;}
.x3{left:103.761679pt;}
.x25{left:105.124362pt;}
.x26{left:106.019977pt;}
.x30{left:111.412640pt;}
.x2b{left:112.310391pt;}
.x36{left:113.544090pt;}
.x4{left:117.000114pt;}
.x32{left:118.173204pt;}
.x2d{left:122.000467pt;}
.x1c{left:130.293964pt;}
.x1d{left:140.106464pt;}
.x1{left:141.714061pt;}
.x31{left:144.868665pt;}
.x37{left:147.000115pt;}
.x27{left:148.307195pt;}
.x1e{left:178.293966pt;}
.x2e{left:188.914531pt;}
.x5{left:200.340316pt;}
.x2f{left:236.189678pt;}
.x2c{left:250.764443pt;}
.x20{left:310.470130pt;}
.x9{left:316.234910pt;}
.xa{left:330.778887pt;}
.x21{left:341.505411pt;}
.x6{left:356.648911pt;}
.x28{left:365.960642pt;}
.x19{left:415.246713pt;}
.x22{left:440.022314pt;}
.xb{left:674.188982pt;}
.xd{left:686.370684pt;}
.xc{left:688.732958pt;}
.xe{left:722.188983pt;}
}




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