
    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_daa791b9968294983d76077b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_742fc9286a902a00f7a0bafd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914286;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_5b1018e5a7440c69272c2865.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_a1da8952c00a83135a52eb2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_c8264be9ebf60b8ca9fd9e41.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861000;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_ee1b175c24cf0aece40fecdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103000;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);}
.v1{vertical-align:-70.386000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.324000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.064800px;}
.ls15{letter-spacing:0.097800px;}
.ls14{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.194400px;}
.ls17{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.259200px;}
.ls13{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.388800px;}
.ls10{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.583200px;}
.ls19{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.712800px;}
.ls16{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.907200px;}
.lse{letter-spacing:1.360800px;}
.ls0{letter-spacing:10.656000px;}
.ls4{letter-spacing:1498.446000px;}
.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;}
}
.ws1{word-spacing:-16.200000px;}
.ws6{word-spacing:-15.876000px;}
.ws3{word-spacing:-15.750000px;}
.ws5{word-spacing:-15.552000px;}
.wsb{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.060000px;}
.ws7{word-spacing:-15.000000px;}
.wsa{word-spacing:-13.800000px;}
.ws4{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:157.174800px;}
._8{margin-left:-16.200000px;}
._c{margin-left:-14.947200px;}
._1{margin-left:-10.663200px;}
._d{margin-left:-1.296000px;}
._5{width:1.296000px;}
._2{width:3.096000px;}
._7{width:4.514400px;}
._4{width:5.616000px;}
._3{width:7.416000px;}
._6{width:8.784000px;}
._a{width:10.654800px;}
._0{width:13.344000px;}
._b{width:1087.937400px;}
._9{width:1273.189800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs4{font-size:64.800000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:68.825100px;}
.y58{bottom:72.099450px;}
.y27{bottom:99.921000px;}
.y57{bottom:108.459750px;}
.y74{bottom:108.465300px;}
.ya2{bottom:109.329600px;}
.y26{bottom:117.517350px;}
.y56{bottom:126.056250px;}
.y73{bottom:126.061800px;}
.ya1{bottom:126.926100px;}
.y25{bottom:135.114000px;}
.y65{bottom:143.652750px;}
.y55{bottom:143.652900px;}
.y72{bottom:143.658300px;}
.ya0{bottom:144.522600px;}
.y24{bottom:152.710350px;}
.y54{bottom:161.249250px;}
.y71{bottom:161.254800px;}
.y9f{bottom:162.119100px;}
.y23{bottom:170.307000px;}
.y53{bottom:178.845750px;}
.y70{bottom:178.851300px;}
.y9e{bottom:179.715600px;}
.y22{bottom:187.903500px;}
.y52{bottom:196.442250px;}
.y6f{bottom:196.447800px;}
.y9d{bottom:197.312100px;}
.y21{bottom:205.499850px;}
.y51{bottom:214.038750px;}
.y6e{bottom:214.044300px;}
.y9c{bottom:214.908600px;}
.y20{bottom:223.096500px;}
.y64{bottom:231.635250px;}
.y50{bottom:231.635400px;}
.y6d{bottom:231.640800px;}
.y9b{bottom:232.505100px;}
.y1f{bottom:240.692850px;}
.y4f{bottom:249.231750px;}
.y6c{bottom:249.237300px;}
.y9a{bottom:250.101600px;}
.y1e{bottom:258.289500px;}
.y4e{bottom:266.828250px;}
.y99{bottom:267.698100px;}
.y6b{bottom:275.631150px;}
.y1d{bottom:275.886000px;}
.y4d{bottom:284.424750px;}
.y98{bottom:285.294600px;}
.y1c{bottom:293.482500px;}
.y4c{bottom:302.021250px;}
.y97{bottom:302.891100px;}
.y1b{bottom:311.079000px;}
.y63{bottom:319.617750px;}
.y4b{bottom:319.617900px;}
.y6a{bottom:319.619550px;}
.y96{bottom:320.487600px;}
.y1a{bottom:328.675500px;}
.y4a{bottom:337.214250px;}
.y69{bottom:337.216050px;}
.y95{bottom:338.084100px;}
.y19{bottom:346.271850px;}
.y49{bottom:354.810750px;}
.y68{bottom:354.812550px;}
.y94{bottom:355.680600px;}
.y18{bottom:363.868350px;}
.y48{bottom:372.407250px;}
.y93{bottom:373.277100px;}
.y67{bottom:381.206400px;}
.y17{bottom:381.465000px;}
.y62{bottom:390.003750px;}
.y47{bottom:390.003900px;}
.y92{bottom:390.873600px;}
.y66{bottom:398.802900px;}
.y16{bottom:399.061500px;}
.y46{bottom:407.600250px;}
.y91{bottom:408.470100px;}
.y15{bottom:416.658000px;}
.y45{bottom:425.196750px;}
.y90{bottom:426.066600px;}
.y14{bottom:434.254350px;}
.y61{bottom:442.793250px;}
.y44{bottom:442.793400px;}
.y8f{bottom:443.663100px;}
.y13{bottom:451.850850px;}
.y43{bottom:460.389750px;}
.y8e{bottom:461.259600px;}
.y12{bottom:469.447500px;}
.y42{bottom:477.986250px;}
.y8d{bottom:478.856100px;}
.y11{bottom:487.044000px;}
.y41{bottom:495.582750px;}
.y8c{bottom:496.452600px;}
.y10{bottom:504.640350px;}
.y40{bottom:513.179250px;}
.y8b{bottom:514.049100px;}
.yf{bottom:522.237000px;}
.y3f{bottom:530.775750px;}
.y8a{bottom:531.645600px;}
.ye{bottom:539.833350px;}
.y3e{bottom:548.372250px;}
.y89{bottom:549.242100px;}
.yd{bottom:557.429850px;}
.y60{bottom:565.968750px;}
.y3d{bottom:565.968900px;}
.y88{bottom:566.838600px;}
.yc{bottom:575.026350px;}
.y3c{bottom:583.565250px;}
.y87{bottom:584.435100px;}
.yb{bottom:592.622850px;}
.y3b{bottom:601.161750px;}
.y86{bottom:602.031600px;}
.ya{bottom:610.219350px;}
.y5f{bottom:618.758250px;}
.y3a{bottom:618.758400px;}
.y85{bottom:619.628100px;}
.y9{bottom:627.815850px;}
.y39{bottom:636.354750px;}
.y84{bottom:637.224600px;}
.y8{bottom:645.412350px;}
.y38{bottom:653.951250px;}
.y83{bottom:654.821100px;}
.y7{bottom:663.008850px;}
.y37{bottom:671.547750px;}
.y82{bottom:672.417600px;}
.y36{bottom:689.144250px;}
.y81{bottom:690.014100px;}
.y5e{bottom:706.740750px;}
.y35{bottom:706.740900px;}
.y80{bottom:707.610600px;}
.y34{bottom:724.337250px;}
.y7f{bottom:725.207100px;}
.y33{bottom:741.933750px;}
.y7e{bottom:742.803600px;}
.y32{bottom:759.530250px;}
.y7d{bottom:760.400100px;}
.y6{bottom:771.271500px;}
.y31{bottom:777.126750px;}
.y7c{bottom:777.996600px;}
.y5{bottom:790.461000px;}
.y5d{bottom:794.723250px;}
.y30{bottom:794.723400px;}
.y7b{bottom:795.593100px;}
.y4{bottom:809.650500px;}
.y5c{bottom:812.319750px;}
.y2f{bottom:812.319900px;}
.y7a{bottom:813.189750px;}
.y3{bottom:828.839850px;}
.y2e{bottom:829.916250px;}
.y79{bottom:830.786250px;}
.y2d{bottom:847.512750px;}
.y78{bottom:848.382750px;}
.y5b{bottom:865.109250px;}
.y2c{bottom:865.109400px;}
.y77{bottom:865.979250px;}
.y5a{bottom:882.705750px;}
.y2b{bottom:882.705900px;}
.y76{bottom:883.575750px;}
.y1{bottom:892.729200px;}
.y59{bottom:900.302250px;}
.y2a{bottom:900.302400px;}
.y75{bottom:901.172400px;}
.y28{bottom:936.770250px;}
.y2{bottom:938.958000px;}
.h8{height:35.376000px;}
.h2{height:35.664000px;}
.h3{height:37.893000px;}
.ha{height:51.780000px;}
.h9{height:54.043200px;}
.h6{height:54.369000px;}
.h5{height:55.922400px;}
.h7{height:56.958000px;}
.h4{height:62.136000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:93.543300px;}
.x2{left:97.795350px;}
.x5{left:114.803100px;}
.x3{left:119.055150px;}
.x6{left:181.061400px;}
.x9{left:367.048200px;}
.x8{left:375.796350px;}
.x1{left:458.055000px;}
.x7{left:482.197050px;}
@media print{
.v1{vertical-align:-62.565333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.057600pt;}
.ls15{letter-spacing:0.086933pt;}
.ls14{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.172800pt;}
.ls17{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.230400pt;}
.ls13{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.345600pt;}
.ls10{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.518400pt;}
.ls19{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.633600pt;}
.ls16{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.806400pt;}
.lse{letter-spacing:1.209600pt;}
.ls0{letter-spacing:9.472000pt;}
.ls4{letter-spacing:1331.952000pt;}
.ws1{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.112000pt;}
.ws3{word-spacing:-14.000000pt;}
.ws5{word-spacing:-13.824000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.386667pt;}
.ws7{word-spacing:-13.333333pt;}
.wsa{word-spacing:-12.266667pt;}
.ws4{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:139.710933pt;}
._8{margin-left:-14.400000pt;}
._c{margin-left:-13.286400pt;}
._1{margin-left:-9.478400pt;}
._d{margin-left:-1.152000pt;}
._5{width:1.152000pt;}
._2{width:2.752000pt;}
._7{width:4.012800pt;}
._4{width:4.992000pt;}
._3{width:6.592000pt;}
._6{width:7.808000pt;}
._a{width:9.470933pt;}
._0{width:11.861333pt;}
._b{width:967.055467pt;}
._9{width:1131.724267pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs4{font-size:57.600000pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:61.177867pt;}
.y58{bottom:64.088400pt;}
.y27{bottom:88.818667pt;}
.y57{bottom:96.408667pt;}
.y74{bottom:96.413600pt;}
.ya2{bottom:97.181867pt;}
.y26{bottom:104.459867pt;}
.y56{bottom:112.050000pt;}
.y73{bottom:112.054933pt;}
.ya1{bottom:112.823200pt;}
.y25{bottom:120.101333pt;}
.y65{bottom:127.691333pt;}
.y55{bottom:127.691467pt;}
.y72{bottom:127.696267pt;}
.ya0{bottom:128.464533pt;}
.y24{bottom:135.742533pt;}
.y54{bottom:143.332667pt;}
.y71{bottom:143.337600pt;}
.y9f{bottom:144.105867pt;}
.y23{bottom:151.384000pt;}
.y53{bottom:158.974000pt;}
.y70{bottom:158.978933pt;}
.y9e{bottom:159.747200pt;}
.y22{bottom:167.025333pt;}
.y52{bottom:174.615333pt;}
.y6f{bottom:174.620267pt;}
.y9d{bottom:175.388533pt;}
.y21{bottom:182.666533pt;}
.y51{bottom:190.256667pt;}
.y6e{bottom:190.261600pt;}
.y9c{bottom:191.029867pt;}
.y20{bottom:198.308000pt;}
.y64{bottom:205.898000pt;}
.y50{bottom:205.898133pt;}
.y6d{bottom:205.902933pt;}
.y9b{bottom:206.671200pt;}
.y1f{bottom:213.949200pt;}
.y4f{bottom:221.539333pt;}
.y6c{bottom:221.544267pt;}
.y9a{bottom:222.312533pt;}
.y1e{bottom:229.590667pt;}
.y4e{bottom:237.180667pt;}
.y99{bottom:237.953867pt;}
.y6b{bottom:245.005467pt;}
.y1d{bottom:245.232000pt;}
.y4d{bottom:252.822000pt;}
.y98{bottom:253.595200pt;}
.y1c{bottom:260.873333pt;}
.y4c{bottom:268.463333pt;}
.y97{bottom:269.236533pt;}
.y1b{bottom:276.514667pt;}
.y63{bottom:284.104667pt;}
.y4b{bottom:284.104800pt;}
.y6a{bottom:284.106267pt;}
.y96{bottom:284.877867pt;}
.y1a{bottom:292.156000pt;}
.y4a{bottom:299.746000pt;}
.y69{bottom:299.747600pt;}
.y95{bottom:300.519200pt;}
.y19{bottom:307.797200pt;}
.y49{bottom:315.387333pt;}
.y68{bottom:315.388933pt;}
.y94{bottom:316.160533pt;}
.y18{bottom:323.438533pt;}
.y48{bottom:331.028667pt;}
.y93{bottom:331.801867pt;}
.y67{bottom:338.850133pt;}
.y17{bottom:339.080000pt;}
.y62{bottom:346.670000pt;}
.y47{bottom:346.670133pt;}
.y92{bottom:347.443200pt;}
.y66{bottom:354.491467pt;}
.y16{bottom:354.721333pt;}
.y46{bottom:362.311333pt;}
.y91{bottom:363.084533pt;}
.y15{bottom:370.362667pt;}
.y45{bottom:377.952667pt;}
.y90{bottom:378.725867pt;}
.y14{bottom:386.003867pt;}
.y61{bottom:393.594000pt;}
.y44{bottom:393.594133pt;}
.y8f{bottom:394.367200pt;}
.y13{bottom:401.645200pt;}
.y43{bottom:409.235333pt;}
.y8e{bottom:410.008533pt;}
.y12{bottom:417.286667pt;}
.y42{bottom:424.876667pt;}
.y8d{bottom:425.649867pt;}
.y11{bottom:432.928000pt;}
.y41{bottom:440.518000pt;}
.y8c{bottom:441.291200pt;}
.y10{bottom:448.569200pt;}
.y40{bottom:456.159333pt;}
.y8b{bottom:456.932533pt;}
.yf{bottom:464.210667pt;}
.y3f{bottom:471.800667pt;}
.y8a{bottom:472.573867pt;}
.ye{bottom:479.851867pt;}
.y3e{bottom:487.442000pt;}
.y89{bottom:488.215200pt;}
.yd{bottom:495.493200pt;}
.y60{bottom:503.083333pt;}
.y3d{bottom:503.083467pt;}
.y88{bottom:503.856533pt;}
.yc{bottom:511.134533pt;}
.y3c{bottom:518.724667pt;}
.y87{bottom:519.497867pt;}
.yb{bottom:526.775867pt;}
.y3b{bottom:534.366000pt;}
.y86{bottom:535.139200pt;}
.ya{bottom:542.417200pt;}
.y5f{bottom:550.007333pt;}
.y3a{bottom:550.007467pt;}
.y85{bottom:550.780533pt;}
.y9{bottom:558.058533pt;}
.y39{bottom:565.648667pt;}
.y84{bottom:566.421867pt;}
.y8{bottom:573.699867pt;}
.y38{bottom:581.290000pt;}
.y83{bottom:582.063200pt;}
.y7{bottom:589.341200pt;}
.y37{bottom:596.931333pt;}
.y82{bottom:597.704533pt;}
.y36{bottom:612.572667pt;}
.y81{bottom:613.345867pt;}
.y5e{bottom:628.214000pt;}
.y35{bottom:628.214133pt;}
.y80{bottom:628.987200pt;}
.y34{bottom:643.855333pt;}
.y7f{bottom:644.628533pt;}
.y33{bottom:659.496667pt;}
.y7e{bottom:660.269867pt;}
.y32{bottom:675.138000pt;}
.y7d{bottom:675.911200pt;}
.y6{bottom:685.574667pt;}
.y31{bottom:690.779333pt;}
.y7c{bottom:691.552533pt;}
.y5{bottom:702.632000pt;}
.y5d{bottom:706.420667pt;}
.y30{bottom:706.420800pt;}
.y7b{bottom:707.193867pt;}
.y4{bottom:719.689333pt;}
.y5c{bottom:722.062000pt;}
.y2f{bottom:722.062133pt;}
.y7a{bottom:722.835333pt;}
.y3{bottom:736.746533pt;}
.y2e{bottom:737.703333pt;}
.y79{bottom:738.476667pt;}
.y2d{bottom:753.344667pt;}
.y78{bottom:754.118000pt;}
.y5b{bottom:768.986000pt;}
.y2c{bottom:768.986133pt;}
.y77{bottom:769.759333pt;}
.y5a{bottom:784.627333pt;}
.y2b{bottom:784.627467pt;}
.y76{bottom:785.400667pt;}
.y1{bottom:793.537067pt;}
.y59{bottom:800.268667pt;}
.y2a{bottom:800.268800pt;}
.y75{bottom:801.042133pt;}
.y28{bottom:832.684667pt;}
.y2{bottom:834.629333pt;}
.h8{height:31.445333pt;}
.h2{height:31.701333pt;}
.h3{height:33.682667pt;}
.ha{height:46.026667pt;}
.h9{height:48.038400pt;}
.h6{height:48.328000pt;}
.h5{height:49.708800pt;}
.h7{height:50.629333pt;}
.h4{height:55.232000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:83.149600pt;}
.x2{left:86.929200pt;}
.x5{left:102.047200pt;}
.x3{left:105.826800pt;}
.x6{left:160.943467pt;}
.x9{left:326.265067pt;}
.x8{left:334.041200pt;}
.x1{left:407.160000pt;}
.x7{left:428.619600pt;}
}




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