
    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_a8a9a184130eb38fafe2663b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_7b109630b1d116915de5b9a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_6fa1f2936ef7547c4f38b79a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.194000;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_c1081bc3d9134c883b453fd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.363000;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_f4a8ff417f6adda90ee9811e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_8ac514ad3e511809d0655e36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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;}
.v1{vertical-align:30.959988px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.206035px;}
.ls2{letter-spacing:0.399513px;}
.ls0{letter-spacing:0.505843px;}
.ls3{letter-spacing:0.539078px;}
.ls7{letter-spacing:0.547200px;}
.ls9{letter-spacing:19.663509px;}
.ls6{letter-spacing:31.584947px;}
.ls8{letter-spacing:51.024940px;}
.ls5{letter-spacing:51.744939px;}
.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;}
}
.ws0{word-spacing:-18.273593px;}
.ws2{word-spacing:-16.919993px;}
.ws1{word-spacing:-14.889414px;}
.ws5{word-spacing:-14.043594px;}
.ws4{word-spacing:-11.335855px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-2.393651px;}
._0{margin-left:-1.005453px;}
._1{width:1.095624px;}
._7{width:2.275199px;}
._8{width:4.150078px;}
._9{width:5.997598px;}
._6{width:7.777437px;}
._5{width:8.850236px;}
._e{width:10.317596px;}
._4{width:12.068827px;}
._3{width:13.217150px;}
._d{width:14.686476px;}
._10{width:15.728753px;}
._f{width:18.957592px;}
._17{width:20.228320px;}
._c{width:22.446413px;}
._b{width:23.495031px;}
._a{width:24.812964px;}
._1a{width:26.935189px;}
._21{width:29.879988px;}
._1d{width:39.864944px;}
._2{width:49.910560px;}
._12{width:52.457739px;}
._11{width:53.665008px;}
._20{width:75.497730px;}
._1f{width:93.719699px;}
._16{width:167.045693px;}
._1c{width:216.482313px;}
._1e{width:234.479976px;}
._1b{width:246.589821px;}
._15{width:458.250126px;}
._19{width:493.294843px;}
._18{width:520.994672px;}
._14{width:578.382078px;}
._13{width:849.259820px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.343422px;}
.fs6{font-size:50.759980px;}
.fs2{font-size:56.174378px;}
.fs4{font-size:59.557656px;}
.fs5{font-size:62.263175px;}
.fs1{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs0{font-size:79.183168px;}
.y0{bottom:0.000000px;}
.y5d{bottom:75.779970px;}
.y9d{bottom:93.599963px;}
.y5c{bottom:95.219962px;}
.y9c{bottom:113.039955px;}
.y5b{bottom:114.839954px;}
.y34{bottom:122.219951px;}
.y9b{bottom:131.939947px;}
.y5a{bottom:133.739947px;}
.y33{bottom:141.659943px;}
.y9a{bottom:151.559939px;}
.y59{bottom:153.719939px;}
.y32{bottom:161.099936px;}
.y99{bottom:171.359931px;}
.y58{bottom:173.159931px;}
.y31{bottom:180.539928px;}
.y98{bottom:190.799924px;}
.y57{bottom:192.599923px;}
.y30{bottom:199.979920px;}
.y97{bottom:210.239916px;}
.y56{bottom:211.859915px;}
.y2f{bottom:219.419912px;}
.y96{bottom:229.679908px;}
.y55{bottom:232.739907px;}
.y2e{bottom:239.039904px;}
.y95{bottom:249.119900px;}
.y54{bottom:251.999899px;}
.y2d{bottom:258.479897px;}
.y94{bottom:268.559893px;}
.y53{bottom:272.879891px;}
.y2c{bottom:277.919889px;}
.y93{bottom:287.999885px;}
.y52{bottom:292.139883px;}
.y2b{bottom:296.819881px;}
.y92{bottom:307.439877px;}
.y51{bottom:312.839875px;}
.y2a{bottom:316.799873px;}
.y91{bottom:326.339869px;}
.y50{bottom:332.099867px;}
.y29{bottom:336.239866px;}
.y90{bottom:346.319861px;}
.y4f{bottom:352.979859px;}
.y28{bottom:355.679858px;}
.y88{bottom:366.659853px;}
.y4e{bottom:372.419851px;}
.y27{bottom:375.119850px;}
.y87{bottom:386.099846px;}
.y4d{bottom:391.859843px;}
.y26{bottom:394.559842px;}
.y86{bottom:405.539838px;}
.y4c{bottom:411.299835px;}
.y25{bottom:413.999834px;}
.y8f{bottom:424.979830px;}
.y85{bottom:425.159830px;}
.y4b{bottom:430.739828px;}
.y24{bottom:433.619827px;}
.y84{bottom:444.599822px;}
.y8e{bottom:445.679822px;}
.y4a{bottom:450.359820px;}
.y23{bottom:453.059819px;}
.y83{bottom:463.859814px;}
.y8d{bottom:464.939814px;}
.y49{bottom:469.799812px;}
.y22{bottom:472.499811px;}
.y82{bottom:484.559806px;}
.y8c{bottom:485.819806px;}
.y48{bottom:489.239804px;}
.y21{bottom:491.939803px;}
.y81{bottom:503.999798px;}
.y8b{bottom:505.079798px;}
.y47{bottom:508.679797px;}
.y20{bottom:511.379795px;}
.y80{bottom:524.699790px;}
.y8a{bottom:525.959790px;}
.y46{bottom:528.119789px;}
.y1f{bottom:530.819788px;}
.y7f{bottom:543.959782px;}
.y89{bottom:545.399782px;}
.y45{bottom:547.559781px;}
.y1e{bottom:550.259780px;}
.y7e{bottom:564.839774px;}
.y44{bottom:566.999773px;}
.y1d{bottom:569.699772px;}
.y7d{bottom:584.099766px;}
.y43{bottom:585.899766px;}
.y1c{bottom:589.139764px;}
.y42{bottom:605.159758px;}
.y7c{bottom:605.699758px;}
.y1b{bottom:608.579757px;}
.y41{bottom:625.319750px;}
.y7b{bottom:625.859750px;}
.y1a{bottom:628.199749px;}
.y40{bottom:645.299742px;}
.y7a{bottom:646.019742px;}
.y19{bottom:647.639741px;}
.y79{bottom:664.919734px;}
.y3f{bottom:665.459734px;}
.y18{bottom:667.079733px;}
.y78{bottom:684.899726px;}
.y3e{bottom:685.619726px;}
.y17{bottom:686.519725px;}
.y77{bottom:704.339718px;}
.y3d{bottom:705.059718px;}
.y16{bottom:705.419718px;}
.y76{bottom:723.959710px;}
.y3c{bottom:724.499710px;}
.y15{bottom:725.399710px;}
.y75{bottom:743.399703px;}
.y3b{bottom:743.939702px;}
.y14{bottom:744.839702px;}
.y74{bottom:762.839695px;}
.y3a{bottom:763.559695px;}
.y13{bottom:764.279694px;}
.y73{bottom:782.279687px;}
.y39{bottom:782.999687px;}
.y12{bottom:783.719687px;}
.y38{bottom:801.719679px;}
.y11{bottom:803.159679px;}
.y72{bottom:821.159672px;}
.y10{bottom:822.779671px;}
.y65{bottom:824.039670px;}
.y64{bottom:838.979664px;}
.y71{bottom:840.599664px;}
.yf{bottom:842.219663px;}
.y70{bottom:860.039656px;}
.ye{bottom:861.659655px;}
.y5f{bottom:875.159650px;}
.y6f{bottom:879.479648px;}
.yd{bottom:881.099648px;}
.y6e{bottom:898.919640px;}
.yc{bottom:899.999640px;}
.y6d{bottom:918.539633px;}
.yb{bottom:919.979632px;}
.y63{bottom:920.699632px;}
.y62{bottom:935.279626px;}
.y6c{bottom:937.979625px;}
.ya{bottom:939.419624px;}
.y61{bottom:949.679620px;}
.y6b{bottom:957.239617px;}
.y9{bottom:959.039616px;}
.y60{bottom:964.259614px;}
.y6a{bottom:976.679609px;}
.y8{bottom:980.099608px;}
.ya6{bottom:982.619607px;}
.y69{bottom:996.119602px;}
.ya5{bottom:998.639601px;}
.y7{bottom:1001.159600px;}
.ya4{bottom:1014.839594px;}
.y68{bottom:1015.559594px;}
.y6{bottom:1022.219591px;}
.y5e{bottom:1028.159589px;}
.ya3{bottom:1031.219588px;}
.y67{bottom:1034.999586px;}
.y5{bottom:1040.939584px;}
.ya2{bottom:1047.419581px;}
.y66{bottom:1054.439578px;}
.y4{bottom:1056.959577px;}
.ya1{bottom:1063.619575px;}
.y3{bottom:1073.339571px;}
.y37{bottom:1073.879570px;}
.ya0{bottom:1079.819568px;}
.y2{bottom:1090.259564px;}
.y36{bottom:1093.499563px;}
.y9f{bottom:1096.019562px;}
.y1{bottom:1109.699556px;}
.y9e{bottom:1112.399555px;}
.y35{bottom:1112.939555px;}
.ha{height:34.922866px;}
.h9{height:35.125906px;}
.h7{height:38.647972px;}
.h8{height:42.837064px;}
.h2{height:46.563821px;}
.h5{height:46.834541px;}
.h4{height:50.288927px;}
.h3{height:51.905125px;}
.h1{height:54.794752px;}
.hb{height:62.156262px;}
.h6{height:62.536295px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:165.779934px;}
.x14{left:170.459932px;}
.x2{left:185.759926px;}
.x5{left:191.159564px;}
.x15{left:195.839877px;}
.x6{left:216.539508px;}
.x10{left:224.639910px;}
.x3{left:255.959718px;}
.xf{left:317.159738px;}
.xd{left:324.899870px;}
.xe{left:353.339859px;}
.x4{left:374.579850px;}
.x8{left:380.519848px;}
.x7{left:384.839846px;}
.x9{left:390.059844px;}
.xb{left:404.099838px;}
.x11{left:410.399836px;}
.xc{left:424.439830px;}
.xa{left:443.159823px;}
.x12{left:604.439758px;}
.x13{left:629.819703px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.519989pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.183142pt;}
.ls2{letter-spacing:0.355123pt;}
.ls0{letter-spacing:0.449638pt;}
.ls3{letter-spacing:0.479181pt;}
.ls7{letter-spacing:0.486400pt;}
.ls9{letter-spacing:17.478675pt;}
.ls6{letter-spacing:28.075509pt;}
.ls8{letter-spacing:45.355502pt;}
.ls5{letter-spacing:45.995502pt;}
.ws0{word-spacing:-16.243194pt;}
.ws2{word-spacing:-15.039994pt;}
.ws1{word-spacing:-13.235035pt;}
.ws5{word-spacing:-12.483195pt;}
.ws4{word-spacing:-10.076316pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-2.127690pt;}
._0{margin-left:-0.893736pt;}
._1{width:0.973888pt;}
._7{width:2.022399pt;}
._8{width:3.688959pt;}
._9{width:5.331198pt;}
._6{width:6.913277pt;}
._5{width:7.866877pt;}
._e{width:9.171196pt;}
._4{width:10.727847pt;}
._3{width:11.748577pt;}
._d{width:13.054645pt;}
._10{width:13.981114pt;}
._f{width:16.851193pt;}
._17{width:17.980729pt;}
._c{width:19.952367pt;}
._b{width:20.884472pt;}
._a{width:22.055968pt;}
._1a{width:23.942390pt;}
._21{width:26.559989pt;}
._1d{width:35.435506pt;}
._2{width:44.364942pt;}
._12{width:46.629101pt;}
._11{width:47.702229pt;}
._20{width:67.109093pt;}
._1f{width:83.306399pt;}
._16{width:148.485061pt;}
._1c{width:192.428723pt;}
._1e{width:208.426645pt;}
._1b{width:219.190952pt;}
._15{width:407.333446pt;}
._19{width:438.484305pt;}
._18{width:463.106375pt;}
._14{width:514.117403pt;}
._13{width:754.897618pt;}
.fs7{font-size:40.305264pt;}
.fs6{font-size:45.119982pt;}
.fs2{font-size:49.932780pt;}
.fs4{font-size:52.940139pt;}
.fs5{font-size:55.345045pt;}
.fs1{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs0{font-size:70.385039pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:67.359973pt;}
.y9d{bottom:83.199967pt;}
.y5c{bottom:84.639966pt;}
.y9c{bottom:100.479960pt;}
.y5b{bottom:102.079959pt;}
.y34{bottom:108.639957pt;}
.y9b{bottom:117.279953pt;}
.y5a{bottom:118.879952pt;}
.y33{bottom:125.919950pt;}
.y9a{bottom:134.719946pt;}
.y59{bottom:136.639945pt;}
.y32{bottom:143.199943pt;}
.y99{bottom:152.319939pt;}
.y58{bottom:153.919938pt;}
.y31{bottom:160.479936pt;}
.y98{bottom:169.599932pt;}
.y57{bottom:171.199932pt;}
.y30{bottom:177.759929pt;}
.y97{bottom:186.879925pt;}
.y56{bottom:188.319925pt;}
.y2f{bottom:195.039922pt;}
.y96{bottom:204.159918pt;}
.y55{bottom:206.879917pt;}
.y2e{bottom:212.479915pt;}
.y95{bottom:221.439911pt;}
.y54{bottom:223.999910pt;}
.y2d{bottom:229.759908pt;}
.y94{bottom:238.719905pt;}
.y53{bottom:242.559903pt;}
.y2c{bottom:247.039901pt;}
.y93{bottom:255.999898pt;}
.y52{bottom:259.679896pt;}
.y2b{bottom:263.839894pt;}
.y92{bottom:273.279891pt;}
.y51{bottom:278.079889pt;}
.y2a{bottom:281.599887pt;}
.y91{bottom:290.079884pt;}
.y50{bottom:295.199882pt;}
.y29{bottom:298.879880pt;}
.y90{bottom:307.839877pt;}
.y4f{bottom:313.759874pt;}
.y28{bottom:316.159874pt;}
.y88{bottom:325.919870pt;}
.y4e{bottom:331.039868pt;}
.y27{bottom:333.439867pt;}
.y87{bottom:343.199863pt;}
.y4d{bottom:348.319861pt;}
.y26{bottom:350.719860pt;}
.y86{bottom:360.479856pt;}
.y4c{bottom:365.599854pt;}
.y25{bottom:367.999853pt;}
.y8f{bottom:377.759849pt;}
.y85{bottom:377.919849pt;}
.y4b{bottom:382.879847pt;}
.y24{bottom:385.439846pt;}
.y84{bottom:395.199842pt;}
.y8e{bottom:396.159842pt;}
.y4a{bottom:400.319840pt;}
.y23{bottom:402.719839pt;}
.y83{bottom:412.319835pt;}
.y8d{bottom:413.279835pt;}
.y49{bottom:417.599833pt;}
.y22{bottom:419.999832pt;}
.y82{bottom:430.719828pt;}
.y8c{bottom:431.839827pt;}
.y48{bottom:434.879826pt;}
.y21{bottom:437.279825pt;}
.y81{bottom:447.999821pt;}
.y8b{bottom:448.959820pt;}
.y47{bottom:452.159819pt;}
.y20{bottom:454.559818pt;}
.y80{bottom:466.399813pt;}
.y8a{bottom:467.519813pt;}
.y46{bottom:469.439812pt;}
.y1f{bottom:471.839811pt;}
.y7f{bottom:483.519807pt;}
.y89{bottom:484.799806pt;}
.y45{bottom:486.719805pt;}
.y1e{bottom:489.119804pt;}
.y7e{bottom:502.079799pt;}
.y44{bottom:503.999798pt;}
.y1d{bottom:506.399797pt;}
.y7d{bottom:519.199792pt;}
.y43{bottom:520.799792pt;}
.y1c{bottom:523.679791pt;}
.y42{bottom:537.919785pt;}
.y7c{bottom:538.399785pt;}
.y1b{bottom:540.959784pt;}
.y41{bottom:555.839778pt;}
.y7b{bottom:556.319777pt;}
.y1a{bottom:558.399777pt;}
.y40{bottom:573.599771pt;}
.y7a{bottom:574.239770pt;}
.y19{bottom:575.679770pt;}
.y79{bottom:591.039764pt;}
.y3f{bottom:591.519763pt;}
.y18{bottom:592.959763pt;}
.y78{bottom:608.799756pt;}
.y3e{bottom:609.439756pt;}
.y17{bottom:610.239756pt;}
.y77{bottom:626.079750pt;}
.y3d{bottom:626.719749pt;}
.y16{bottom:627.039749pt;}
.y76{bottom:643.519743pt;}
.y3c{bottom:643.999742pt;}
.y15{bottom:644.799742pt;}
.y75{bottom:660.799736pt;}
.y3b{bottom:661.279735pt;}
.y14{bottom:662.079735pt;}
.y74{bottom:678.079729pt;}
.y3a{bottom:678.719729pt;}
.y13{bottom:679.359728pt;}
.y73{bottom:695.359722pt;}
.y39{bottom:695.999722pt;}
.y12{bottom:696.639721pt;}
.y38{bottom:712.639715pt;}
.y11{bottom:713.919714pt;}
.y72{bottom:729.919708pt;}
.y10{bottom:731.359707pt;}
.y65{bottom:732.479707pt;}
.y64{bottom:745.759702pt;}
.y71{bottom:747.199701pt;}
.yf{bottom:748.639701pt;}
.y70{bottom:764.479694pt;}
.ye{bottom:765.919694pt;}
.y5f{bottom:777.919689pt;}
.y6f{bottom:781.759687pt;}
.yd{bottom:783.199687pt;}
.y6e{bottom:799.039680pt;}
.yc{bottom:799.999680pt;}
.y6d{bottom:816.479673pt;}
.yb{bottom:817.759673pt;}
.y63{bottom:818.399673pt;}
.y62{bottom:831.359667pt;}
.y6c{bottom:833.759666pt;}
.ya{bottom:835.039666pt;}
.y61{bottom:844.159662pt;}
.y6b{bottom:850.879660pt;}
.y9{bottom:852.479659pt;}
.y60{bottom:857.119657pt;}
.y6a{bottom:868.159653pt;}
.y8{bottom:871.199652pt;}
.ya6{bottom:873.439651pt;}
.y69{bottom:885.439646pt;}
.ya5{bottom:887.679645pt;}
.y7{bottom:889.919644pt;}
.ya4{bottom:902.079639pt;}
.y68{bottom:902.719639pt;}
.y6{bottom:908.639637pt;}
.y5e{bottom:913.919634pt;}
.ya3{bottom:916.639633pt;}
.y67{bottom:919.999632pt;}
.y5{bottom:925.279630pt;}
.ya2{bottom:931.039628pt;}
.y66{bottom:937.279625pt;}
.y4{bottom:939.519624pt;}
.ya1{bottom:945.439622pt;}
.y3{bottom:954.079618pt;}
.y37{bottom:954.559618pt;}
.ya0{bottom:959.839616pt;}
.y2{bottom:969.119612pt;}
.y36{bottom:971.999611pt;}
.y9f{bottom:974.239610pt;}
.y1{bottom:986.399605pt;}
.y9e{bottom:988.799604pt;}
.y35{bottom:989.279604pt;}
.ha{height:31.042548pt;}
.h9{height:31.223028pt;}
.h7{height:34.353753pt;}
.h8{height:38.077391pt;}
.h2{height:41.390063pt;}
.h5{height:41.630703pt;}
.h4{height:44.701269pt;}
.h3{height:46.137889pt;}
.h1{height:48.706447pt;}
.hb{height:55.250011pt;}
.h6{height:55.587818pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:147.359941pt;}
.x14{left:151.519939pt;}
.x2{left:165.119934pt;}
.x5{left:169.919612pt;}
.x15{left:174.079890pt;}
.x6{left:192.479563pt;}
.x10{left:199.679920pt;}
.x3{left:227.519749pt;}
.xf{left:281.919767pt;}
.xd{left:288.799884pt;}
.xe{left:314.079874pt;}
.x4{left:332.959867pt;}
.x8{left:338.239865pt;}
.x7{left:342.079863pt;}
.x9{left:346.719861pt;}
.xb{left:359.199856pt;}
.x11{left:364.799854pt;}
.xc{left:377.279849pt;}
.xa{left:393.919842pt;}
.x12{left:537.279785pt;}
.x13{left:559.839736pt;}
}




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