
    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_c968d1c4b8113465889c5810.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e8a747fbdba364326a552a1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_b8f60191e3cbdb0727d91b12.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_bc88954caa0ae3e75807c7e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_7ffd829dd1e000b60afc7ab3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_a28c3a38a3396005f875ae99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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:ff8;src:url('chunks/assets/font_da1f481ceff28694e63c6e19.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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;}
.ls4{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls7{letter-spacing:1.440000px;}
.ls5{letter-spacing:17.280000px;}
.ls6{letter-spacing:42.797280px;}
.lsb{letter-spacing:42.821280px;}
.ls0{letter-spacing:86.940000px;}
.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:-72.000000px;}
.ws0{word-spacing:-23.940000px;}
.ws4{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._29{margin-left:-4.968000px;}
._a{margin-left:-3.600000px;}
._1{margin-left:-2.583360px;}
._0{margin-left:-1.457280px;}
._3{width:1.149120px;}
._14{width:2.448000px;}
._12{width:3.600000px;}
._e{width:5.328000px;}
._d{width:6.984000px;}
._8{width:7.992000px;}
._9{width:9.149760px;}
._17{width:10.218240px;}
._1c{width:11.315520px;}
._1e{width:12.715200px;}
._1b{width:14.201280px;}
._19{width:15.264000px;}
._15{width:16.668000px;}
._18{width:19.080000px;}
._1d{width:20.304000px;}
._11{width:22.212000px;}
._10{width:23.544000px;}
._13{width:25.992000px;}
._27{width:27.072000px;}
._21{width:29.952000px;}
._22{width:31.464000px;}
._b{width:33.192000px;}
._c{width:34.272000px;}
._23{width:35.357760px;}
._20{width:36.596160px;}
._1f{width:37.673280px;}
._25{width:38.686560px;}
._24{width:48.000000px;}
._1a{width:49.700160px;}
._7{width:64.542240px;}
._28{width:73.918080px;}
._4{width:75.363120px;}
._2{width:87.568320px;}
._f{width:88.582560px;}
._6{width:106.828320px;}
._26{width:261.288000px;}
._5{width:517.678560px;}
._2a{width:573.312000px;}
._16{width:601.356000px;}
.fc5{color:rgb(0,176,240);}
.fc4{color:rgb(255,0,255);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(255,0,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y86{bottom:20.880000px;}
.y5{bottom:95.436000px;}
.y4{bottom:134.136000px;}
.y3{bottom:153.390000px;}
.y2{bottom:172.290000px;}
.y98{bottom:192.450000px;}
.y2f{bottom:200.730000px;}
.y4f{bottom:205.230000px;}
.y97{bottom:213.150000px;}
.y84{bottom:218.010000px;}
.y83{bottom:220.710000px;}
.y2e{bottom:221.430000px;}
.y96{bottom:233.850000px;}
.y4e{bottom:236.190000px;}
.y2d{bottom:242.130000px;}
.y69{bottom:249.150000px;}
.y82{bottom:251.850000px;}
.y95{bottom:254.550000px;}
.y2c{bottom:262.830000px;}
.y4d{bottom:267.330000px;}
.y94{bottom:275.250000px;}
.y68{bottom:280.110000px;}
.y81{bottom:282.810000px;}
.y2b{bottom:283.530000px;}
.y93{bottom:295.950000px;}
.y4c{bottom:298.290000px;}
.y2a{bottom:304.230000px;}
.y67{bottom:311.250000px;}
.y80{bottom:313.950000px;}
.y92{bottom:316.650000px;}
.y29{bottom:324.930000px;}
.y4b{bottom:329.430000px;}
.y91{bottom:337.395000px;}
.y66{bottom:342.255000px;}
.y7f{bottom:344.955000px;}
.y28{bottom:345.675000px;}
.y90{bottom:358.095000px;}
.y4a{bottom:360.435000px;}
.y27{bottom:366.375000px;}
.y65{bottom:373.395000px;}
.y8f{bottom:378.795000px;}
.y26{bottom:387.075000px;}
.y7e{bottom:387.255000px;}
.y49{bottom:391.575000px;}
.y8e{bottom:399.495000px;}
.y64{bottom:404.355000px;}
.y25{bottom:407.775000px;}
.y8d{bottom:420.195000px;}
.y7d{bottom:421.275000px;}
.y48{bottom:422.535000px;}
.y24{bottom:428.475000px;}
.y63{bottom:435.495000px;}
.y8c{bottom:440.895000px;}
.y23{bottom:449.175000px;}
.y7c{bottom:452.235000px;}
.y47{bottom:453.675000px;}
.y8b{bottom:461.595000px;}
.y62{bottom:466.455000px;}
.y22{bottom:469.875000px;}
.y8a{bottom:482.295000px;}
.y7b{bottom:483.375000px;}
.y46{bottom:484.635000px;}
.y21{bottom:490.575000px;}
.y61{bottom:497.595000px;}
.y20{bottom:511.275000px;}
.y7a{bottom:514.335000px;}
.y45{bottom:515.775000px;}
.y89{bottom:524.595000px;}
.y60{bottom:528.555000px;}
.y1f{bottom:531.975000px;}
.y79{bottom:545.475000px;}
.y44{bottom:546.735000px;}
.y1e{bottom:552.675000px;}
.y5f{bottom:559.695000px;}
.y88{bottom:567.435000px;}
.y1d{bottom:573.375000px;}
.y78{bottom:576.435000px;}
.y43{bottom:577.875000px;}
.ya5{bottom:580.395000px;}
.y5e{bottom:590.655000px;}
.y1c{bottom:594.075000px;}
.ya4{bottom:601.095000px;}
.y77{bottom:607.605000px;}
.y42{bottom:608.865000px;}
.y1b{bottom:614.805000px;}
.y5d{bottom:621.645000px;}
.y1a{bottom:635.505000px;}
.y76{bottom:638.565000px;}
.y41{bottom:640.005000px;}
.ya3{bottom:642.345000px;}
.y5c{bottom:652.785000px;}
.y19{bottom:656.205000px;}
.ya2{bottom:663.045000px;}
.y75{bottom:669.705000px;}
.y40{bottom:670.965000px;}
.y18{bottom:676.905000px;}
.y5b{bottom:683.745000px;}
.y17{bottom:697.605000px;}
.y74{bottom:700.665000px;}
.y3f{bottom:702.105000px;}
.ya1{bottom:704.445000px;}
.y5a{bottom:714.885000px;}
.y16{bottom:718.305000px;}
.ya0{bottom:725.145000px;}
.y73{bottom:731.805000px;}
.y3e{bottom:733.065000px;}
.y15{bottom:739.005000px;}
.y59{bottom:745.845000px;}
.y14{bottom:759.705000px;}
.y72{bottom:762.765000px;}
.y3d{bottom:764.205000px;}
.y9f{bottom:766.545000px;}
.y58{bottom:776.985000px;}
.y9e{bottom:787.245000px;}
.y13{bottom:790.845000px;}
.y71{bottom:793.905000px;}
.y3c{bottom:795.165000px;}
.y57{bottom:807.945000px;}
.y12{bottom:811.545000px;}
.y70{bottom:824.865000px;}
.y3b{bottom:826.305000px;}
.y9d{bottom:828.645000px;}
.y11{bottom:832.245000px;}
.y56{bottom:839.085000px;}
.y9c{bottom:849.345000px;}
.y10{bottom:852.945000px;}
.y6f{bottom:856.005000px;}
.y3a{bottom:857.265000px;}
.y55{bottom:870.045000px;}
.yf{bottom:873.690000px;}
.y6e{bottom:887.010000px;}
.y39{bottom:888.450000px;}
.y9b{bottom:890.790000px;}
.ye{bottom:895.650000px;}
.y54{bottom:901.230000px;}
.y9a{bottom:911.490000px;}
.y6d{bottom:918.150000px;}
.yd{bottom:923.190000px;}
.y87{bottom:929.310000px;}
.y38{bottom:930.750000px;}
.y53{bottom:932.190000px;}
.y6c{bottom:949.110000px;}
.yc{bottom:950.730000px;}
.y99{bottom:952.890000px;}
.y52{bottom:963.330000px;}
.y37{bottom:973.590000px;}
.yb{bottom:978.450000px;}
.y6b{bottom:980.250000px;}
.y36{bottom:994.290000px;}
.ya{bottom:1005.990000px;}
.y35{bottom:1014.990000px;}
.y6a{bottom:1022.550000px;}
.y51{bottom:1025.430000px;}
.y9{bottom:1033.530000px;}
.y34{bottom:1035.690000px;}
.y33{bottom:1056.390000px;}
.y8{bottom:1061.250000px;}
.y32{bottom:1077.090000px;}
.y50{bottom:1087.530000px;}
.y7{bottom:1088.790000px;}
.y85{bottom:1093.470000px;}
.y31{bottom:1097.790000px;}
.y6{bottom:1115.610000px;}
.y30{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h8{height:40.860000px;}
.h7{height:48.761719px;}
.h6{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:347.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:23.580000px;}
.x2{left:127.655987px;}
.x9{left:132.695987px;}
.x5{left:133.775987px;}
.xa{left:154.649987px;}
.x6{left:167.069987px;}
.x8{left:170.129987px;}
.x7{left:238.349987px;}
.xb{left:294.015000px;}
.x4{left:467.924987px;}
.x1{left:489.164987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls5{letter-spacing:15.360000pt;}
.ls6{letter-spacing:38.042027pt;}
.lsb{letter-spacing:38.063360pt;}
.ls0{letter-spacing:77.280000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._29{margin-left:-4.416000pt;}
._a{margin-left:-3.200000pt;}
._1{margin-left:-2.296320pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.021440pt;}
._14{width:2.176000pt;}
._12{width:3.200000pt;}
._e{width:4.736000pt;}
._d{width:6.208000pt;}
._8{width:7.104000pt;}
._9{width:8.133120pt;}
._17{width:9.082880pt;}
._1c{width:10.058240pt;}
._1e{width:11.302400pt;}
._1b{width:12.623360pt;}
._19{width:13.568000pt;}
._15{width:14.816000pt;}
._18{width:16.960000pt;}
._1d{width:18.048000pt;}
._11{width:19.744000pt;}
._10{width:20.928000pt;}
._13{width:23.104000pt;}
._27{width:24.064000pt;}
._21{width:26.624000pt;}
._22{width:27.968000pt;}
._b{width:29.504000pt;}
._c{width:30.464000pt;}
._23{width:31.429120pt;}
._20{width:32.529920pt;}
._1f{width:33.487360pt;}
._25{width:34.388053pt;}
._24{width:42.666667pt;}
._1a{width:44.177920pt;}
._7{width:57.370880pt;}
._28{width:65.704960pt;}
._4{width:66.989440pt;}
._2{width:77.838507pt;}
._f{width:78.740053pt;}
._6{width:94.958507pt;}
._26{width:232.256000pt;}
._5{width:460.158720pt;}
._2a{width:509.610667pt;}
._16{width:534.538667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:18.560000pt;}
.y5{bottom:84.832000pt;}
.y4{bottom:119.232000pt;}
.y3{bottom:136.346667pt;}
.y2{bottom:153.146667pt;}
.y98{bottom:171.066667pt;}
.y2f{bottom:178.426667pt;}
.y4f{bottom:182.426667pt;}
.y97{bottom:189.466667pt;}
.y84{bottom:193.786667pt;}
.y83{bottom:196.186667pt;}
.y2e{bottom:196.826667pt;}
.y96{bottom:207.866667pt;}
.y4e{bottom:209.946667pt;}
.y2d{bottom:215.226667pt;}
.y69{bottom:221.466667pt;}
.y82{bottom:223.866667pt;}
.y95{bottom:226.266667pt;}
.y2c{bottom:233.626667pt;}
.y4d{bottom:237.626667pt;}
.y94{bottom:244.666667pt;}
.y68{bottom:248.986667pt;}
.y81{bottom:251.386667pt;}
.y2b{bottom:252.026667pt;}
.y93{bottom:263.066667pt;}
.y4c{bottom:265.146667pt;}
.y2a{bottom:270.426667pt;}
.y67{bottom:276.666667pt;}
.y80{bottom:279.066667pt;}
.y92{bottom:281.466667pt;}
.y29{bottom:288.826667pt;}
.y4b{bottom:292.826667pt;}
.y91{bottom:299.906667pt;}
.y66{bottom:304.226667pt;}
.y7f{bottom:306.626667pt;}
.y28{bottom:307.266667pt;}
.y90{bottom:318.306667pt;}
.y4a{bottom:320.386667pt;}
.y27{bottom:325.666667pt;}
.y65{bottom:331.906667pt;}
.y8f{bottom:336.706667pt;}
.y26{bottom:344.066667pt;}
.y7e{bottom:344.226667pt;}
.y49{bottom:348.066667pt;}
.y8e{bottom:355.106667pt;}
.y64{bottom:359.426667pt;}
.y25{bottom:362.466667pt;}
.y8d{bottom:373.506667pt;}
.y7d{bottom:374.466667pt;}
.y48{bottom:375.586667pt;}
.y24{bottom:380.866667pt;}
.y63{bottom:387.106667pt;}
.y8c{bottom:391.906667pt;}
.y23{bottom:399.266667pt;}
.y7c{bottom:401.986667pt;}
.y47{bottom:403.266667pt;}
.y8b{bottom:410.306667pt;}
.y62{bottom:414.626667pt;}
.y22{bottom:417.666667pt;}
.y8a{bottom:428.706667pt;}
.y7b{bottom:429.666667pt;}
.y46{bottom:430.786667pt;}
.y21{bottom:436.066667pt;}
.y61{bottom:442.306667pt;}
.y20{bottom:454.466667pt;}
.y7a{bottom:457.186667pt;}
.y45{bottom:458.466667pt;}
.y89{bottom:466.306667pt;}
.y60{bottom:469.826667pt;}
.y1f{bottom:472.866667pt;}
.y79{bottom:484.866667pt;}
.y44{bottom:485.986667pt;}
.y1e{bottom:491.266667pt;}
.y5f{bottom:497.506667pt;}
.y88{bottom:504.386667pt;}
.y1d{bottom:509.666667pt;}
.y78{bottom:512.386667pt;}
.y43{bottom:513.666667pt;}
.ya5{bottom:515.906667pt;}
.y5e{bottom:525.026667pt;}
.y1c{bottom:528.066667pt;}
.ya4{bottom:534.306667pt;}
.y77{bottom:540.093333pt;}
.y42{bottom:541.213333pt;}
.y1b{bottom:546.493333pt;}
.y5d{bottom:552.573333pt;}
.y1a{bottom:564.893333pt;}
.y76{bottom:567.613333pt;}
.y41{bottom:568.893333pt;}
.ya3{bottom:570.973333pt;}
.y5c{bottom:580.253333pt;}
.y19{bottom:583.293333pt;}
.ya2{bottom:589.373333pt;}
.y75{bottom:595.293333pt;}
.y40{bottom:596.413333pt;}
.y18{bottom:601.693333pt;}
.y5b{bottom:607.773333pt;}
.y17{bottom:620.093333pt;}
.y74{bottom:622.813333pt;}
.y3f{bottom:624.093333pt;}
.ya1{bottom:626.173333pt;}
.y5a{bottom:635.453333pt;}
.y16{bottom:638.493333pt;}
.ya0{bottom:644.573333pt;}
.y73{bottom:650.493333pt;}
.y3e{bottom:651.613333pt;}
.y15{bottom:656.893333pt;}
.y59{bottom:662.973333pt;}
.y14{bottom:675.293333pt;}
.y72{bottom:678.013333pt;}
.y3d{bottom:679.293333pt;}
.y9f{bottom:681.373333pt;}
.y58{bottom:690.653333pt;}
.y9e{bottom:699.773333pt;}
.y13{bottom:702.973333pt;}
.y71{bottom:705.693333pt;}
.y3c{bottom:706.813333pt;}
.y57{bottom:718.173333pt;}
.y12{bottom:721.373333pt;}
.y70{bottom:733.213333pt;}
.y3b{bottom:734.493333pt;}
.y9d{bottom:736.573333pt;}
.y11{bottom:739.773333pt;}
.y56{bottom:745.853333pt;}
.y9c{bottom:754.973333pt;}
.y10{bottom:758.173333pt;}
.y6f{bottom:760.893333pt;}
.y3a{bottom:762.013333pt;}
.y55{bottom:773.373333pt;}
.yf{bottom:776.613333pt;}
.y6e{bottom:788.453333pt;}
.y39{bottom:789.733333pt;}
.y9b{bottom:791.813333pt;}
.ye{bottom:796.133333pt;}
.y54{bottom:801.093333pt;}
.y9a{bottom:810.213333pt;}
.y6d{bottom:816.133333pt;}
.yd{bottom:820.613333pt;}
.y87{bottom:826.053333pt;}
.y38{bottom:827.333333pt;}
.y53{bottom:828.613333pt;}
.y6c{bottom:843.653333pt;}
.yc{bottom:845.093333pt;}
.y99{bottom:847.013333pt;}
.y52{bottom:856.293333pt;}
.y37{bottom:865.413333pt;}
.yb{bottom:869.733333pt;}
.y6b{bottom:871.333333pt;}
.y36{bottom:883.813333pt;}
.ya{bottom:894.213333pt;}
.y35{bottom:902.213333pt;}
.y6a{bottom:908.933333pt;}
.y51{bottom:911.493333pt;}
.y9{bottom:918.693333pt;}
.y34{bottom:920.613333pt;}
.y33{bottom:939.013333pt;}
.y8{bottom:943.333333pt;}
.y32{bottom:957.413333pt;}
.y50{bottom:966.693333pt;}
.y7{bottom:967.813333pt;}
.y85{bottom:971.973333pt;}
.y31{bottom:975.813333pt;}
.y6{bottom:991.653333pt;}
.y30{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:36.320000pt;}
.h7{height:43.343750pt;}
.h6{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:308.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:20.960000pt;}
.x2{left:113.471988pt;}
.x9{left:117.951988pt;}
.x5{left:118.911988pt;}
.xa{left:137.466655pt;}
.x6{left:148.506655pt;}
.x8{left:151.226655pt;}
.x7{left:211.866655pt;}
.xb{left:261.346667pt;}
.x4{left:415.933322pt;}
.x1{left:434.813322pt;}
.x3{left:718.373322pt;}
}




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