
    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_2ee88c276499f90a26cfce20.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_75ee3580248e3da0e3f1e28c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_73a38440e1f71eda2a81dfcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_084626f68e20fb53bd6fb7d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.674316;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);}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.676800px;}
.ls14{letter-spacing:-0.237600px;}
.lsc{letter-spacing:-0.212544px;}
.ls18{letter-spacing:-0.050400px;}
.ls15{letter-spacing:-0.043200px;}
.lsb{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.015480px;}
.ls8{letter-spacing:0.021600px;}
.lse{letter-spacing:0.050400px;}
.ls7{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.079200px;}
.ls17{letter-spacing:0.088560px;}
.ls19{letter-spacing:0.165600px;}
.ls13{letter-spacing:0.240180px;}
.ls11{letter-spacing:0.252060px;}
.ls0{letter-spacing:0.283968px;}
.ls3{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.317376px;}
.ls9{letter-spacing:0.388800px;}
.ls16{letter-spacing:0.549072px;}
.ls4{letter-spacing:0.641520px;}
.ls5{letter-spacing:0.810000px;}
.ls10{letter-spacing:0.894480px;}
.lsf{letter-spacing:6.036000px;}
.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;}
}
.ws2{word-spacing:-23.535936px;}
.ws0{word-spacing:-23.502528px;}
.ws1{word-spacing:-23.218560px;}
.wsc{word-spacing:-20.181600px;}
.ws5{word-spacing:-20.095200px;}
.ws9{word-spacing:-20.066400px;}
.ws3{word-spacing:-20.037600px;}
.wsd{word-spacing:-20.030400px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-20.001600px;}
.ws8{word-spacing:-19.972800px;}
.wsb{word-spacing:-19.778400px;}
.wsa{word-spacing:-0.086400px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-7.992000px;}
._1{margin-left:-1.085760px;}
._0{width:1.920960px;}
._c{width:3.025440px;}
._8{width:4.320000px;}
._9{width:5.342400px;}
._d{width:6.408000px;}
._f{width:7.682400px;}
._10{width:9.014400px;}
._11{width:10.872000px;}
._12{width:11.925600px;}
._e{width:12.938400px;}
._6{width:13.939200px;}
._a{width:15.190560px;}
._2{width:16.603200px;}
._3{width:17.631360px;}
._7{width:18.773640px;}
._4{width:21.765600px;}
._5{width:23.148000px;}
._17{width:24.336000px;}
._b{width:26.928000px;}
._13{width:28.157400px;}
._14{width:29.980800px;}
._15{width:31.326000px;}
._16{width:32.536800px;}
._18{width:33.832800px;}
._1a{width:35.223600px;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs3{font-size:59.040000px;}
.fs1{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.750000px;}
.y78{bottom:92.220030px;}
.y98{bottom:93.660030px;}
.y74{bottom:96.900015px;}
.y31{bottom:107.340030px;}
.y77{bottom:115.260030px;}
.y73{bottom:118.500030px;}
.y30{bottom:128.940015px;}
.y76{bottom:131.820000px;}
.y97{bottom:136.860000px;}
.y72{bottom:140.100000px;}
.y2f{bottom:150.540000px;}
.y96{bottom:158.460000px;}
.y71{bottom:161.700000px;}
.y2e{bottom:172.140000px;}
.y95{bottom:180.060000px;}
.y70{bottom:183.300000px;}
.y2d{bottom:193.740000px;}
.y94{bottom:201.660000px;}
.y6f{bottom:204.900000px;}
.y2c{bottom:215.340000px;}
.y93{bottom:223.260000px;}
.y6e{bottom:226.500000px;}
.y2b{bottom:236.940000px;}
.y92{bottom:244.860000px;}
.y6d{bottom:248.100000px;}
.y2a{bottom:258.540000px;}
.y91{bottom:266.460000px;}
.y6c{bottom:269.700000px;}
.y29{bottom:280.140000px;}
.y90{bottom:288.420000px;}
.y6b{bottom:291.300000px;}
.y28{bottom:301.740000px;}
.y8f{bottom:310.020000px;}
.y6a{bottom:312.900000px;}
.y27{bottom:323.340000px;}
.y8e{bottom:331.620000px;}
.y69{bottom:334.500000px;}
.y26{bottom:344.940000px;}
.y8d{bottom:353.220000px;}
.y68{bottom:356.100000px;}
.y75{bottom:361.500000px;}
.y25{bottom:366.540000px;}
.y8c{bottom:374.820000px;}
.y67{bottom:377.700000px;}
.y54{bottom:383.100000px;}
.y24{bottom:388.140000px;}
.y8b{bottom:396.420000px;}
.y66{bottom:399.300000px;}
.y53{bottom:404.700000px;}
.y23{bottom:410.100000px;}
.y8a{bottom:418.020000px;}
.y65{bottom:420.900000px;}
.y52{bottom:426.300000px;}
.y22{bottom:431.700000px;}
.y89{bottom:439.620000px;}
.y64{bottom:442.500000px;}
.y51{bottom:447.900000px;}
.y21{bottom:453.300000px;}
.y88{bottom:461.220000px;}
.y63{bottom:464.100000px;}
.y50{bottom:469.500000px;}
.y20{bottom:474.900000px;}
.y87{bottom:482.820000px;}
.y62{bottom:485.700000px;}
.y4f{bottom:491.100000px;}
.y1f{bottom:496.500000px;}
.y86{bottom:504.420000px;}
.y61{bottom:507.300000px;}
.y4e{bottom:512.700000px;}
.y1e{bottom:518.100000px;}
.y85{bottom:526.020000px;}
.y60{bottom:528.900000px;}
.y4d{bottom:534.300000px;}
.y1d{bottom:539.700000px;}
.y84{bottom:547.620000px;}
.y5f{bottom:550.500000px;}
.y4c{bottom:555.900000px;}
.y1c{bottom:561.300000px;}
.y83{bottom:569.220000px;}
.y5e{bottom:572.460000px;}
.y4b{bottom:577.500000px;}
.y1b{bottom:582.900000px;}
.y82{bottom:590.820000px;}
.y5d{bottom:594.060000px;}
.y4a{bottom:599.100000px;}
.y1a{bottom:604.500000px;}
.y81{bottom:612.420000px;}
.y5c{bottom:615.660000px;}
.y49{bottom:620.700000px;}
.y19{bottom:626.100000px;}
.y80{bottom:634.020000px;}
.y5b{bottom:637.260000px;}
.y48{bottom:642.300000px;}
.y18{bottom:647.700000px;}
.y7f{bottom:655.620000px;}
.y5a{bottom:658.860000px;}
.y47{bottom:663.900000px;}
.yac{bottom:664.980000px;}
.y17{bottom:669.300000px;}
.y7e{bottom:677.220000px;}
.y59{bottom:680.460000px;}
.y46{bottom:685.500000px;}
.yab{bottom:686.580000px;}
.y16{bottom:690.900000px;}
.y7d{bottom:698.820000px;}
.y58{bottom:702.060000px;}
.y45{bottom:707.100000px;}
.yaa{bottom:708.180000px;}
.y15{bottom:712.500000px;}
.y7c{bottom:720.420000px;}
.y57{bottom:723.660000px;}
.y44{bottom:728.700000px;}
.ya9{bottom:729.780000px;}
.y14{bottom:734.100000px;}
.y7b{bottom:741.660000px;}
.y56{bottom:744.900000px;}
.y43{bottom:750.300000px;}
.ya8{bottom:751.380000px;}
.y13{bottom:755.700000px;}
.y55{bottom:759.300000px;}
.y7a{bottom:759.660000px;}
.y42{bottom:771.900000px;}
.ya7{bottom:772.980000px;}
.y79{bottom:774.420000px;}
.y12{bottom:777.300000px;}
.y41{bottom:793.500000px;}
.ya6{bottom:794.580000px;}
.y11{bottom:798.900000px;}
.y40{bottom:815.460000px;}
.ya5{bottom:816.180000px;}
.y10{bottom:820.500000px;}
.y3f{bottom:837.060000px;}
.ya4{bottom:837.780000px;}
.yf{bottom:842.100000px;}
.y3e{bottom:858.660000px;}
.ya3{bottom:859.380000px;}
.ye{bottom:863.700000px;}
.y3d{bottom:880.260000px;}
.ya2{bottom:880.980000px;}
.yd{bottom:885.300000px;}
.y3c{bottom:901.860000px;}
.ya1{bottom:902.580000px;}
.yc{bottom:906.900000px;}
.y3b{bottom:923.460000px;}
.ya0{bottom:924.180000px;}
.yb{bottom:928.500000px;}
.y3a{bottom:945.060000px;}
.y9f{bottom:945.780000px;}
.ya{bottom:950.100000px;}
.y39{bottom:966.660000px;}
.y9e{bottom:967.380000px;}
.y9{bottom:971.700000px;}
.y38{bottom:988.260000px;}
.y9d{bottom:988.980000px;}
.y8{bottom:990.780000px;}
.y37{bottom:1009.860000px;}
.y7{bottom:1010.580000px;}
.y6{bottom:1030.380000px;}
.y36{bottom:1031.460000px;}
.y9c{bottom:1032.180000px;}
.y5{bottom:1050.180000px;}
.y35{bottom:1053.060000px;}
.y9b{bottom:1053.780000px;}
.y4{bottom:1069.980000px;}
.y34{bottom:1074.660000px;}
.y9a{bottom:1075.380000px;}
.y3{bottom:1089.780000px;}
.y33{bottom:1096.260000px;}
.y99{bottom:1097.340000px;}
.y2{bottom:1114.980000px;}
.y32{bottom:1117.860000px;}
.ha{height:32.043516px;}
.h3{height:43.189453px;}
.hb{height:43.501641px;}
.h4{height:47.745703px;}
.hc{height:47.988281px;}
.h5{height:48.062109px;}
.h9{height:48.550781px;}
.h7{height:53.050781px;}
.h6{height:53.402344px;}
.h2{height:61.946719px;}
.h8{height:68.133516px;}
.h1{height:1225.500000px;}
.h0{height:1263.000000px;}
.w1{width:855.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.750000px;}
.x2{left:117.000000px;}
.x3{left:739.500000px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.601600pt;}
.ls14{letter-spacing:-0.211200pt;}
.lsc{letter-spacing:-0.188928pt;}
.ls18{letter-spacing:-0.044800pt;}
.ls15{letter-spacing:-0.038400pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.013760pt;}
.ls8{letter-spacing:0.019200pt;}
.lse{letter-spacing:0.044800pt;}
.ls7{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.070400pt;}
.ls17{letter-spacing:0.078720pt;}
.ls19{letter-spacing:0.147200pt;}
.ls13{letter-spacing:0.213493pt;}
.ls11{letter-spacing:0.224053pt;}
.ls0{letter-spacing:0.252416pt;}
.ls3{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.282112pt;}
.ls9{letter-spacing:0.345600pt;}
.ls16{letter-spacing:0.488064pt;}
.ls4{letter-spacing:0.570240pt;}
.ls5{letter-spacing:0.720000pt;}
.ls10{letter-spacing:0.795093pt;}
.lsf{letter-spacing:5.365333pt;}
.ws2{word-spacing:-20.920832pt;}
.ws0{word-spacing:-20.891136pt;}
.ws1{word-spacing:-20.638720pt;}
.wsc{word-spacing:-17.939200pt;}
.ws5{word-spacing:-17.862400pt;}
.ws9{word-spacing:-17.836800pt;}
.ws3{word-spacing:-17.811200pt;}
.wsd{word-spacing:-17.804800pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.779200pt;}
.ws8{word-spacing:-17.753600pt;}
.wsb{word-spacing:-17.580800pt;}
.wsa{word-spacing:-0.076800pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-7.104000pt;}
._1{margin-left:-0.965120pt;}
._0{width:1.707520pt;}
._c{width:2.689280pt;}
._8{width:3.840000pt;}
._9{width:4.748800pt;}
._d{width:5.696000pt;}
._f{width:6.828800pt;}
._10{width:8.012800pt;}
._11{width:9.664000pt;}
._12{width:10.600533pt;}
._e{width:11.500800pt;}
._6{width:12.390400pt;}
._a{width:13.502720pt;}
._2{width:14.758400pt;}
._3{width:15.672320pt;}
._7{width:16.687680pt;}
._4{width:19.347200pt;}
._5{width:20.576000pt;}
._17{width:21.632000pt;}
._b{width:23.936000pt;}
._13{width:25.028800pt;}
._14{width:26.649600pt;}
._15{width:27.845333pt;}
._16{width:28.921600pt;}
._18{width:30.073600pt;}
._1a{width:31.309867pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:52.480000pt;}
.fs1{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.666667pt;}
.y78{bottom:81.973360pt;}
.y98{bottom:83.253360pt;}
.y74{bottom:86.133347pt;}
.y31{bottom:95.413360pt;}
.y77{bottom:102.453360pt;}
.y73{bottom:105.333360pt;}
.y30{bottom:114.613347pt;}
.y76{bottom:117.173333pt;}
.y97{bottom:121.653333pt;}
.y72{bottom:124.533333pt;}
.y2f{bottom:133.813333pt;}
.y96{bottom:140.853333pt;}
.y71{bottom:143.733333pt;}
.y2e{bottom:153.013333pt;}
.y95{bottom:160.053333pt;}
.y70{bottom:162.933333pt;}
.y2d{bottom:172.213333pt;}
.y94{bottom:179.253333pt;}
.y6f{bottom:182.133333pt;}
.y2c{bottom:191.413333pt;}
.y93{bottom:198.453333pt;}
.y6e{bottom:201.333333pt;}
.y2b{bottom:210.613333pt;}
.y92{bottom:217.653333pt;}
.y6d{bottom:220.533333pt;}
.y2a{bottom:229.813333pt;}
.y91{bottom:236.853333pt;}
.y6c{bottom:239.733333pt;}
.y29{bottom:249.013333pt;}
.y90{bottom:256.373333pt;}
.y6b{bottom:258.933333pt;}
.y28{bottom:268.213333pt;}
.y8f{bottom:275.573333pt;}
.y6a{bottom:278.133333pt;}
.y27{bottom:287.413333pt;}
.y8e{bottom:294.773333pt;}
.y69{bottom:297.333333pt;}
.y26{bottom:306.613333pt;}
.y8d{bottom:313.973333pt;}
.y68{bottom:316.533333pt;}
.y75{bottom:321.333333pt;}
.y25{bottom:325.813333pt;}
.y8c{bottom:333.173333pt;}
.y67{bottom:335.733333pt;}
.y54{bottom:340.533333pt;}
.y24{bottom:345.013333pt;}
.y8b{bottom:352.373333pt;}
.y66{bottom:354.933333pt;}
.y53{bottom:359.733333pt;}
.y23{bottom:364.533333pt;}
.y8a{bottom:371.573333pt;}
.y65{bottom:374.133333pt;}
.y52{bottom:378.933333pt;}
.y22{bottom:383.733333pt;}
.y89{bottom:390.773333pt;}
.y64{bottom:393.333333pt;}
.y51{bottom:398.133333pt;}
.y21{bottom:402.933333pt;}
.y88{bottom:409.973333pt;}
.y63{bottom:412.533333pt;}
.y50{bottom:417.333333pt;}
.y20{bottom:422.133333pt;}
.y87{bottom:429.173333pt;}
.y62{bottom:431.733333pt;}
.y4f{bottom:436.533333pt;}
.y1f{bottom:441.333333pt;}
.y86{bottom:448.373333pt;}
.y61{bottom:450.933333pt;}
.y4e{bottom:455.733333pt;}
.y1e{bottom:460.533333pt;}
.y85{bottom:467.573333pt;}
.y60{bottom:470.133333pt;}
.y4d{bottom:474.933333pt;}
.y1d{bottom:479.733333pt;}
.y84{bottom:486.773333pt;}
.y5f{bottom:489.333333pt;}
.y4c{bottom:494.133333pt;}
.y1c{bottom:498.933333pt;}
.y83{bottom:505.973333pt;}
.y5e{bottom:508.853333pt;}
.y4b{bottom:513.333333pt;}
.y1b{bottom:518.133333pt;}
.y82{bottom:525.173333pt;}
.y5d{bottom:528.053333pt;}
.y4a{bottom:532.533333pt;}
.y1a{bottom:537.333333pt;}
.y81{bottom:544.373333pt;}
.y5c{bottom:547.253333pt;}
.y49{bottom:551.733333pt;}
.y19{bottom:556.533333pt;}
.y80{bottom:563.573333pt;}
.y5b{bottom:566.453333pt;}
.y48{bottom:570.933333pt;}
.y18{bottom:575.733333pt;}
.y7f{bottom:582.773333pt;}
.y5a{bottom:585.653333pt;}
.y47{bottom:590.133333pt;}
.yac{bottom:591.093333pt;}
.y17{bottom:594.933333pt;}
.y7e{bottom:601.973333pt;}
.y59{bottom:604.853333pt;}
.y46{bottom:609.333333pt;}
.yab{bottom:610.293333pt;}
.y16{bottom:614.133333pt;}
.y7d{bottom:621.173333pt;}
.y58{bottom:624.053333pt;}
.y45{bottom:628.533333pt;}
.yaa{bottom:629.493333pt;}
.y15{bottom:633.333333pt;}
.y7c{bottom:640.373333pt;}
.y57{bottom:643.253333pt;}
.y44{bottom:647.733333pt;}
.ya9{bottom:648.693333pt;}
.y14{bottom:652.533333pt;}
.y7b{bottom:659.253333pt;}
.y56{bottom:662.133333pt;}
.y43{bottom:666.933333pt;}
.ya8{bottom:667.893333pt;}
.y13{bottom:671.733333pt;}
.y55{bottom:674.933333pt;}
.y7a{bottom:675.253333pt;}
.y42{bottom:686.133333pt;}
.ya7{bottom:687.093333pt;}
.y79{bottom:688.373333pt;}
.y12{bottom:690.933333pt;}
.y41{bottom:705.333333pt;}
.ya6{bottom:706.293333pt;}
.y11{bottom:710.133333pt;}
.y40{bottom:724.853333pt;}
.ya5{bottom:725.493333pt;}
.y10{bottom:729.333333pt;}
.y3f{bottom:744.053333pt;}
.ya4{bottom:744.693333pt;}
.yf{bottom:748.533333pt;}
.y3e{bottom:763.253333pt;}
.ya3{bottom:763.893333pt;}
.ye{bottom:767.733333pt;}
.y3d{bottom:782.453333pt;}
.ya2{bottom:783.093333pt;}
.yd{bottom:786.933333pt;}
.y3c{bottom:801.653333pt;}
.ya1{bottom:802.293333pt;}
.yc{bottom:806.133333pt;}
.y3b{bottom:820.853333pt;}
.ya0{bottom:821.493333pt;}
.yb{bottom:825.333333pt;}
.y3a{bottom:840.053333pt;}
.y9f{bottom:840.693333pt;}
.ya{bottom:844.533333pt;}
.y39{bottom:859.253333pt;}
.y9e{bottom:859.893333pt;}
.y9{bottom:863.733333pt;}
.y38{bottom:878.453333pt;}
.y9d{bottom:879.093333pt;}
.y8{bottom:880.693333pt;}
.y37{bottom:897.653333pt;}
.y7{bottom:898.293333pt;}
.y6{bottom:915.893333pt;}
.y36{bottom:916.853333pt;}
.y9c{bottom:917.493333pt;}
.y5{bottom:933.493333pt;}
.y35{bottom:936.053333pt;}
.y9b{bottom:936.693333pt;}
.y4{bottom:951.093333pt;}
.y34{bottom:955.253333pt;}
.y9a{bottom:955.893333pt;}
.y3{bottom:968.693333pt;}
.y33{bottom:974.453333pt;}
.y99{bottom:975.413333pt;}
.y2{bottom:991.093333pt;}
.y32{bottom:993.653333pt;}
.ha{height:28.483125pt;}
.h3{height:38.390625pt;}
.hb{height:38.668125pt;}
.h4{height:42.440625pt;}
.hc{height:42.656250pt;}
.h5{height:42.721875pt;}
.h9{height:43.156250pt;}
.h7{height:47.156250pt;}
.h6{height:47.468750pt;}
.h2{height:55.063750pt;}
.h8{height:60.563125pt;}
.h1{height:1089.333333pt;}
.h0{height:1122.666667pt;}
.w1{width:760.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.666667pt;}
.x2{left:104.000000pt;}
.x3{left:657.333333pt;}
}




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