
    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_01b17644981102a1f97a86b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_edf5eda7a522bc2a668c667d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_46bfd7921ff0bee4fadbd720.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a283c193987bf5427644b92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_544c3ce473400aa7e642cb9b.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_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719238;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_dbbd1135b1a6d34d44e96171.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_daa87aa44c439f1c4fbd2960.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:1.440000px;}
.lsb{letter-spacing:14.400000px;}
.ls7{letter-spacing:39.905280px;}
.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;}
}
.ws9{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-5.100480px;}
._f{margin-left:-3.565440px;}
._8{margin-left:-2.391840px;}
._2{margin-left:-1.254240px;}
._0{width:1.075680px;}
._1{width:2.203200px;}
._5{width:3.645360px;}
._6{width:4.669200px;}
._c{width:6.022080px;}
._9{width:7.050960px;}
._7{width:8.306640px;}
._a{width:9.382320px;}
._b{width:10.398240px;}
._18{width:11.856960px;}
._d{width:13.593120px;}
._15{width:14.948640px;}
._1a{width:17.670240px;}
._17{width:18.799200px;}
._16{width:20.004480px;}
._11{width:22.057920px;}
._12{width:23.135520px;}
._1d{width:24.358560px;}
._1e{width:25.542720px;}
._13{width:26.562240px;}
._14{width:27.593760px;}
._21{width:29.543040px;}
._22{width:30.664800px;}
._4{width:33.107040px;}
._1f{width:34.179840px;}
._1b{width:40.207680px;}
._1c{width:41.263200px;}
._10{width:43.250400px;}
._e{width:47.524800px;}
._20{width:61.272000px;}
._3{width:1332.628800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.120000px;}
.y3f{bottom:6.300000px;}
.y4{bottom:56.700000px;}
.y42{bottom:57.240000px;}
.y41{bottom:73.800000px;}
.ya1{bottom:113.940000px;}
.y71{bottom:122.040000px;}
.y3c{bottom:131.220000px;}
.ya0{bottom:135.756000px;}
.y70{bottom:144.036000px;}
.y3b{bottom:153.030000px;}
.y9f{bottom:157.530000px;}
.y6f{bottom:165.810000px;}
.y3a{bottom:174.810000px;}
.y9e{bottom:179.310000px;}
.y6e{bottom:187.590000px;}
.y39{bottom:196.770000px;}
.y9d{bottom:201.270000px;}
.y6d{bottom:209.370000px;}
.y38{bottom:218.550000px;}
.y9c{bottom:223.050000px;}
.y6c{bottom:231.330000px;}
.y37{bottom:240.330000px;}
.y9b{bottom:244.830000px;}
.y6b{bottom:253.110000px;}
.y36{bottom:262.110000px;}
.y9a{bottom:266.610000px;}
.y6a{bottom:274.890000px;}
.y35{bottom:284.070000px;}
.y99{bottom:288.390000px;}
.y69{bottom:296.670000px;}
.y34{bottom:302.070000px;}
.y98{bottom:310.350000px;}
.y33{bottom:315.750000px;}
.y68{bottom:318.450000px;}
.y32{bottom:330.330000px;}
.y97{bottom:332.130000px;}
.y67{bottom:340.410000px;}
.y31{bottom:347.610000px;}
.y96{bottom:353.910000px;}
.y66{bottom:362.190000px;}
.y30{bottom:364.890000px;}
.y95{bottom:375.690000px;}
.y2f{bottom:381.990000px;}
.y65{bottom:383.970000px;}
.y94{bottom:397.695000px;}
.y2e{bottom:399.315000px;}
.y64{bottom:405.795000px;}
.y2d{bottom:416.595000px;}
.y93{bottom:419.475000px;}
.y63{bottom:427.755000px;}
.y2c{bottom:433.875000px;}
.y92{bottom:441.255000px;}
.y62{bottom:449.535000px;}
.y2b{bottom:451.155000px;}
.y91{bottom:463.035000px;}
.y2a{bottom:468.255000px;}
.y61{bottom:471.315000px;}
.y90{bottom:484.815000px;}
.y29{bottom:485.535000px;}
.y60{bottom:493.095000px;}
.y28{bottom:502.815000px;}
.y8f{bottom:506.775000px;}
.y5f{bottom:514.875000px;}
.y27{bottom:520.095000px;}
.y8e{bottom:528.555000px;}
.y5e{bottom:536.835000px;}
.y26{bottom:537.375000px;}
.y8d{bottom:550.335000px;}
.y25{bottom:554.655000px;}
.y5d{bottom:558.615000px;}
.y24{bottom:571.755000px;}
.y8c{bottom:572.115000px;}
.y5c{bottom:580.395000px;}
.y23{bottom:589.035000px;}
.y8b{bottom:594.075000px;}
.y5b{bottom:602.175000px;}
.y22{bottom:606.315000px;}
.y8a{bottom:615.855000px;}
.y21{bottom:623.595000px;}
.y5a{bottom:624.135000px;}
.y89{bottom:637.635000px;}
.y20{bottom:640.905000px;}
.y59{bottom:645.945000px;}
.y1f{bottom:658.185000px;}
.y88{bottom:659.445000px;}
.y58{bottom:667.725000px;}
.y1e{bottom:675.285000px;}
.y87{bottom:681.225000px;}
.y57{bottom:689.505000px;}
.y1d{bottom:692.565000px;}
.y86{bottom:703.185000px;}
.y1c{bottom:709.845000px;}
.y56{bottom:711.285000px;}
.y85{bottom:724.965000px;}
.y1b{bottom:727.125000px;}
.y55{bottom:733.245000px;}
.y1a{bottom:744.405000px;}
.y84{bottom:746.745000px;}
.y54{bottom:755.025000px;}
.y19{bottom:761.505000px;}
.y83{bottom:768.525000px;}
.y53{bottom:776.805000px;}
.y18{bottom:778.785000px;}
.y82{bottom:790.305000px;}
.y17{bottom:796.065000px;}
.y52{bottom:798.585000px;}
.y81{bottom:812.265000px;}
.y16{bottom:813.345000px;}
.y51{bottom:820.545000px;}
.y15{bottom:830.625000px;}
.y80{bottom:834.045000px;}
.y50{bottom:842.325000px;}
.y14{bottom:850.965000px;}
.y7f{bottom:855.825000px;}
.y4f{bottom:864.105000px;}
.y13{bottom:872.205000px;}
.y7e{bottom:877.605000px;}
.y4e{bottom:885.885000px;}
.y12{bottom:892.005000px;}
.y7d{bottom:899.610000px;}
.y4d{bottom:907.710000px;}
.y11{bottom:911.850000px;}
.y7c{bottom:921.390000px;}
.y4c{bottom:929.670000px;}
.y10{bottom:931.830000px;}
.y7b{bottom:943.170000px;}
.y4b{bottom:951.450000px;}
.yf{bottom:952.170000px;}
.y7a{bottom:964.950000px;}
.ye{bottom:972.150000px;}
.y4a{bottom:973.230000px;}
.y79{bottom:986.730000px;}
.yd{bottom:989.790000px;}
.y49{bottom:995.010000px;}
.y78{bottom:1008.690000px;}
.yc{bottom:1009.770000px;}
.y48{bottom:1016.970000px;}
.yb{bottom:1028.850000px;}
.y77{bottom:1030.470000px;}
.y47{bottom:1038.750000px;}
.y76{bottom:1052.250000px;}
.ya{bottom:1053.330000px;}
.y46{bottom:1060.530000px;}
.y9{bottom:1072.050000px;}
.y75{bottom:1074.030000px;}
.y45{bottom:1082.310000px;}
.y8{bottom:1089.330000px;}
.y74{bottom:1095.990000px;}
.y44{bottom:1104.090000px;}
.y7{bottom:1106.610000px;}
.y73{bottom:1117.770000px;}
.y6{bottom:1123.710000px;}
.y43{bottom:1126.050000px;}
.y72{bottom:1139.550000px;}
.y5{bottom:1140.990000px;}
.y40{bottom:1144.800000px;}
.y3e{bottom:1158.660000px;}
.y3{bottom:1161.900000px;}
.y1{bottom:1175.940000px;}
.y3d{bottom:1185.300000px;}
.h2{height:23.220000px;}
.hf{height:23.400000px;}
.h9{height:33.683203px;}
.he{height:34.036523px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h3{height:43.156758px;}
.hc{height:46.251562px;}
.h7{height:46.736719px;}
.h10{height:48.224531px;}
.hd{height:49.255313px;}
.hb{height:52.918594px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:82.620000px;}
.w3{width:605.985000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:26.280000px;}
.x1{left:108.036000px;}
.x8{left:112.895987px;}
.x6{left:114.155987px;}
.x7{left:121.535987px;}
.x10{left:135.035987px;}
.x11{left:140.075987px;}
.xb{left:144.755987px;}
.xe{left:162.029987px;}
.xf{left:189.029987px;}
.x3{left:190.650000px;}
.x9{left:209.729987px;}
.xa{left:288.074987px;}
.xc{left:306.074987px;}
.xd{left:420.194987px;}
.x5{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:1.280000pt;}
.lsb{letter-spacing:12.800000pt;}
.ls7{letter-spacing:35.471360pt;}
.ws9{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-4.533760pt;}
._f{margin-left:-3.169280pt;}
._8{margin-left:-2.126080pt;}
._2{margin-left:-1.114880pt;}
._0{width:0.956160pt;}
._1{width:1.958400pt;}
._5{width:3.240320pt;}
._6{width:4.150400pt;}
._c{width:5.352960pt;}
._9{width:6.267520pt;}
._7{width:7.383680pt;}
._a{width:8.339840pt;}
._b{width:9.242880pt;}
._18{width:10.539520pt;}
._d{width:12.082773pt;}
._15{width:13.287680pt;}
._1a{width:15.706880pt;}
._17{width:16.710400pt;}
._16{width:17.781760pt;}
._11{width:19.607040pt;}
._12{width:20.564907pt;}
._1d{width:21.652053pt;}
._1e{width:22.704640pt;}
._13{width:23.610880pt;}
._14{width:24.527787pt;}
._21{width:26.260480pt;}
._22{width:27.257600pt;}
._4{width:29.428480pt;}
._1f{width:30.382080pt;}
._1b{width:35.740160pt;}
._1c{width:36.678400pt;}
._10{width:38.444800pt;}
._e{width:42.244267pt;}
._20{width:54.464000pt;}
._3{width:1184.558933pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.440000pt;}
.y3f{bottom:5.600000pt;}
.y4{bottom:50.400000pt;}
.y42{bottom:50.880000pt;}
.y41{bottom:65.600000pt;}
.ya1{bottom:101.280000pt;}
.y71{bottom:108.480000pt;}
.y3c{bottom:116.640000pt;}
.ya0{bottom:120.672000pt;}
.y70{bottom:128.032000pt;}
.y3b{bottom:136.026667pt;}
.y9f{bottom:140.026667pt;}
.y6f{bottom:147.386667pt;}
.y3a{bottom:155.386667pt;}
.y9e{bottom:159.386667pt;}
.y6e{bottom:166.746667pt;}
.y39{bottom:174.906667pt;}
.y9d{bottom:178.906667pt;}
.y6d{bottom:186.106667pt;}
.y38{bottom:194.266667pt;}
.y9c{bottom:198.266667pt;}
.y6c{bottom:205.626667pt;}
.y37{bottom:213.626667pt;}
.y9b{bottom:217.626667pt;}
.y6b{bottom:224.986667pt;}
.y36{bottom:232.986667pt;}
.y9a{bottom:236.986667pt;}
.y6a{bottom:244.346667pt;}
.y35{bottom:252.506667pt;}
.y99{bottom:256.346667pt;}
.y69{bottom:263.706667pt;}
.y34{bottom:268.506667pt;}
.y98{bottom:275.866667pt;}
.y33{bottom:280.666667pt;}
.y68{bottom:283.066667pt;}
.y32{bottom:293.626667pt;}
.y97{bottom:295.226667pt;}
.y67{bottom:302.586667pt;}
.y31{bottom:308.986667pt;}
.y96{bottom:314.586667pt;}
.y66{bottom:321.946667pt;}
.y30{bottom:324.346667pt;}
.y95{bottom:333.946667pt;}
.y2f{bottom:339.546667pt;}
.y65{bottom:341.306667pt;}
.y94{bottom:353.506667pt;}
.y2e{bottom:354.946667pt;}
.y64{bottom:360.706667pt;}
.y2d{bottom:370.306667pt;}
.y93{bottom:372.866667pt;}
.y63{bottom:380.226667pt;}
.y2c{bottom:385.666667pt;}
.y92{bottom:392.226667pt;}
.y62{bottom:399.586667pt;}
.y2b{bottom:401.026667pt;}
.y91{bottom:411.586667pt;}
.y2a{bottom:416.226667pt;}
.y61{bottom:418.946667pt;}
.y90{bottom:430.946667pt;}
.y29{bottom:431.586667pt;}
.y60{bottom:438.306667pt;}
.y28{bottom:446.946667pt;}
.y8f{bottom:450.466667pt;}
.y5f{bottom:457.666667pt;}
.y27{bottom:462.306667pt;}
.y8e{bottom:469.826667pt;}
.y5e{bottom:477.186667pt;}
.y26{bottom:477.666667pt;}
.y8d{bottom:489.186667pt;}
.y25{bottom:493.026667pt;}
.y5d{bottom:496.546667pt;}
.y24{bottom:508.226667pt;}
.y8c{bottom:508.546667pt;}
.y5c{bottom:515.906667pt;}
.y23{bottom:523.586667pt;}
.y8b{bottom:528.066667pt;}
.y5b{bottom:535.266667pt;}
.y22{bottom:538.946667pt;}
.y8a{bottom:547.426667pt;}
.y21{bottom:554.306667pt;}
.y5a{bottom:554.786667pt;}
.y89{bottom:566.786667pt;}
.y20{bottom:569.693333pt;}
.y59{bottom:574.173333pt;}
.y1f{bottom:585.053333pt;}
.y88{bottom:586.173333pt;}
.y58{bottom:593.533333pt;}
.y1e{bottom:600.253333pt;}
.y87{bottom:605.533333pt;}
.y57{bottom:612.893333pt;}
.y1d{bottom:615.613333pt;}
.y86{bottom:625.053333pt;}
.y1c{bottom:630.973333pt;}
.y56{bottom:632.253333pt;}
.y85{bottom:644.413333pt;}
.y1b{bottom:646.333333pt;}
.y55{bottom:651.773333pt;}
.y1a{bottom:661.693333pt;}
.y84{bottom:663.773333pt;}
.y54{bottom:671.133333pt;}
.y19{bottom:676.893333pt;}
.y83{bottom:683.133333pt;}
.y53{bottom:690.493333pt;}
.y18{bottom:692.253333pt;}
.y82{bottom:702.493333pt;}
.y17{bottom:707.613333pt;}
.y52{bottom:709.853333pt;}
.y81{bottom:722.013333pt;}
.y16{bottom:722.973333pt;}
.y51{bottom:729.373333pt;}
.y15{bottom:738.333333pt;}
.y80{bottom:741.373333pt;}
.y50{bottom:748.733333pt;}
.y14{bottom:756.413333pt;}
.y7f{bottom:760.733333pt;}
.y4f{bottom:768.093333pt;}
.y13{bottom:775.293333pt;}
.y7e{bottom:780.093333pt;}
.y4e{bottom:787.453333pt;}
.y12{bottom:792.893333pt;}
.y7d{bottom:799.653333pt;}
.y4d{bottom:806.853333pt;}
.y11{bottom:810.533333pt;}
.y7c{bottom:819.013333pt;}
.y4c{bottom:826.373333pt;}
.y10{bottom:828.293333pt;}
.y7b{bottom:838.373333pt;}
.y4b{bottom:845.733333pt;}
.yf{bottom:846.373333pt;}
.y7a{bottom:857.733333pt;}
.ye{bottom:864.133333pt;}
.y4a{bottom:865.093333pt;}
.y79{bottom:877.093333pt;}
.yd{bottom:879.813333pt;}
.y49{bottom:884.453333pt;}
.y78{bottom:896.613333pt;}
.yc{bottom:897.573333pt;}
.y48{bottom:903.973333pt;}
.yb{bottom:914.533333pt;}
.y77{bottom:915.973333pt;}
.y47{bottom:923.333333pt;}
.y76{bottom:935.333333pt;}
.ya{bottom:936.293333pt;}
.y46{bottom:942.693333pt;}
.y9{bottom:952.933333pt;}
.y75{bottom:954.693333pt;}
.y45{bottom:962.053333pt;}
.y8{bottom:968.293333pt;}
.y74{bottom:974.213333pt;}
.y44{bottom:981.413333pt;}
.y7{bottom:983.653333pt;}
.y73{bottom:993.573333pt;}
.y6{bottom:998.853333pt;}
.y43{bottom:1000.933333pt;}
.y72{bottom:1012.933333pt;}
.y5{bottom:1014.213333pt;}
.y40{bottom:1017.600000pt;}
.y3e{bottom:1029.920000pt;}
.y3{bottom:1032.800000pt;}
.y1{bottom:1045.280000pt;}
.y3d{bottom:1053.600000pt;}
.h2{height:20.640000pt;}
.hf{height:20.800000pt;}
.h9{height:29.940625pt;}
.he{height:30.254687pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h3{height:38.361562pt;}
.hc{height:41.112500pt;}
.h7{height:41.543750pt;}
.h10{height:42.866250pt;}
.hd{height:43.782500pt;}
.hb{height:47.038750pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:73.440000pt;}
.w3{width:538.653333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:23.360000pt;}
.x1{left:96.032000pt;}
.x8{left:100.351988pt;}
.x6{left:101.471988pt;}
.x7{left:108.031988pt;}
.x10{left:120.031988pt;}
.x11{left:124.511988pt;}
.xb{left:128.671988pt;}
.xe{left:144.026655pt;}
.xf{left:168.026655pt;}
.x3{left:169.466667pt;}
.x9{left:186.426655pt;}
.xa{left:256.066655pt;}
.xc{left:272.066655pt;}
.xd{left:373.506655pt;}
.x5{left:396.866655pt;}
}




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