
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_46f0a633268645dd75c4fdc4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a445d54abdc3bffe3c8faad.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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_48373f0241cbb88ffa0b8da2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ec802a73f5c2b2f1f853fa8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_7e842829c8d2b6f8f75c9c27.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:20.880000px;}
.ls1b{letter-spacing:-0.870000px;}
.ls19{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.496200px;}
.ls8{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.223800px;}
.ls1a{letter-spacing:0.262080px;}
.ls17{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.720000px;}
.ls18{letter-spacing:3.600000px;}
.ls9{letter-spacing:4.320000px;}
.lsd{letter-spacing:5.040000px;}
.lsa{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.640000px;}
.ls14{letter-spacing:10.080000px;}
.lsf{letter-spacing:13.680000px;}
.ls10{letter-spacing:14.400000px;}
.ls16{letter-spacing:15.840000px;}
.lsb{letter-spacing:18.720000px;}
.lse{letter-spacing:25.200000px;}
.lsc{letter-spacing:26.640000px;}
.ls15{letter-spacing:37.440000px;}
.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;}
}
.ws8{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.690000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.878800px;}
.ws3{word-spacing:-11.563800px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._5{width:2.270880px;}
._4{width:3.585600px;}
._7{width:4.721040px;}
._6{width:6.215040px;}
._8{width:7.589520px;}
._f{width:8.668560px;}
._d{width:9.979920px;}
._c{width:11.533680px;}
._10{width:13.326480px;}
._17{width:14.699280px;}
._15{width:16.075440px;}
._1a{width:17.711040px;}
._e{width:18.714000px;}
._16{width:19.868400px;}
._b{width:20.975760px;}
._1f{width:22.098240px;}
._1c{width:23.184000px;}
._3{width:24.561360px;}
._2{width:25.728960px;}
._11{width:26.915040px;}
._14{width:28.266480px;}
._22{width:29.651040px;}
._1d{width:31.000320px;}
._1e{width:32.457600px;}
._12{width:34.063200px;}
._1b{width:35.238240px;}
._20{width:36.716160px;}
._21{width:37.796160px;}
._19{width:39.203040px;}
._18{width:40.884480px;}
._a{width:43.744320px;}
._9{width:44.820000px;}
._23{width:46.500480px;}
._24{width:47.534880px;}
._13{width:50.437440px;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.240000px;}
.y3{bottom:6.480000px;}
.y40{bottom:9.720000px;}
.y41{bottom:11.340000px;}
.y32{bottom:20.520000px;}
.y6{bottom:25.380000px;}
.y9{bottom:28.830000px;}
.y31{bottom:37.620000px;}
.y5{bottom:42.690000px;}
.y8{bottom:46.110000px;}
.y30{bottom:54.900000px;}
.yb{bottom:55.620000px;}
.y4{bottom:60.690000px;}
.y7{bottom:63.390000px;}
.y2f{bottom:72.180000px;}
.y2e{bottom:89.460000px;}
.y2d{bottom:106.740000px;}
.y7e{bottom:118.116000px;}
.y2c{bottom:124.020000px;}
.y7d{bottom:137.196000px;}
.y4c{bottom:140.436000px;}
.y2b{bottom:141.120000px;}
.y7c{bottom:156.090000px;}
.y2a{bottom:158.400000px;}
.y4b{bottom:159.330000px;}
.y7b{bottom:174.990000px;}
.y29{bottom:175.680000px;}
.y4a{bottom:178.410000px;}
.y28{bottom:192.960000px;}
.y7a{bottom:194.070000px;}
.y49{bottom:197.310000px;}
.y27{bottom:210.270000px;}
.y79{bottom:212.970000px;}
.y48{bottom:216.210000px;}
.y26{bottom:227.550000px;}
.y78{bottom:232.050000px;}
.y47{bottom:235.290000px;}
.y3d{bottom:243.930000px;}
.y25{bottom:244.650000px;}
.y77{bottom:250.950000px;}
.y46{bottom:254.190000px;}
.y3c{bottom:257.790000px;}
.y24{bottom:261.930000px;}
.y76{bottom:269.850000px;}
.y3b{bottom:271.650000px;}
.y45{bottom:273.270000px;}
.y23{bottom:279.210000px;}
.y3a{bottom:285.330000px;}
.y75{bottom:288.930000px;}
.y44{bottom:292.170000px;}
.y22{bottom:296.490000px;}
.y39{bottom:299.190000px;}
.y74{bottom:307.830000px;}
.y43{bottom:311.070000px;}
.y38{bottom:313.050000px;}
.y21{bottom:313.770000px;}
.y42{bottom:326.550000px;}
.y37{bottom:326.730000px;}
.y73{bottom:326.910000px;}
.y20{bottom:331.050000px;}
.y36{bottom:340.590000px;}
.y72{bottom:345.855000px;}
.y1f{bottom:348.150000px;}
.y3f{bottom:348.735000px;}
.y35{bottom:354.450000px;}
.y71{bottom:364.755000px;}
.y1e{bottom:365.430000px;}
.y34{bottom:368.130000px;}
.y1d{bottom:382.710000px;}
.y3e{bottom:383.835000px;}
.y13{bottom:399.135000px;}
.y1c{bottom:399.990000px;}
.y70{bottom:402.735000px;}
.y1b{bottom:417.270000px;}
.y6f{bottom:421.815000px;}
.y1a{bottom:434.370000px;}
.y6e{bottom:440.715000px;}
.y19{bottom:451.650000px;}
.y6d{bottom:459.615000px;}
.y18{bottom:468.930000px;}
.y6c{bottom:478.695000px;}
.y17{bottom:486.255000px;}
.y6b{bottom:497.595000px;}
.y16{bottom:503.535000px;}
.y6a{bottom:516.675000px;}
.y15{bottom:520.815000px;}
.y69{bottom:535.575000px;}
.y14{bottom:537.915000px;}
.y68{bottom:554.475000px;}
.y67{bottom:573.555000px;}
.y66{bottom:592.455000px;}
.y65{bottom:611.565000px;}
.y64{bottom:630.465000px;}
.y63{bottom:649.545000px;}
.y62{bottom:668.445000px;}
.y61{bottom:687.345000px;}
.y60{bottom:706.425000px;}
.y5f{bottom:725.325000px;}
.y5e{bottom:744.405000px;}
.y5d{bottom:763.305000px;}
.y5c{bottom:782.205000px;}
.y5b{bottom:801.285000px;}
.y5a{bottom:820.185000px;}
.y59{bottom:839.265000px;}
.y58{bottom:858.165000px;}
.y57{bottom:877.110000px;}
.y56{bottom:896.190000px;}
.y55{bottom:915.090000px;}
.y54{bottom:934.170000px;}
.y53{bottom:953.070000px;}
.y12{bottom:954.870000px;}
.y52{bottom:971.970000px;}
.y11{bottom:973.410000px;}
.y10{bottom:990.510000px;}
.y51{bottom:991.050000px;}
.yf{bottom:1008.330000px;}
.y50{bottom:1009.950000px;}
.ye{bottom:1026.150000px;}
.y4f{bottom:1029.030000px;}
.yd{bottom:1041.450000px;}
.y4e{bottom:1047.930000px;}
.yc{bottom:1063.950000px;}
.y4d{bottom:1067.010000px;}
.ya{bottom:1086.810000px;}
.y2{bottom:1109.130000px;}
.y1{bottom:1194.120000px;}
.hf{height:31.320000px;}
.h8{height:34.036523px;}
.hd{height:34.884492px;}
.h4{height:42.164648px;}
.ha{height:43.215117px;}
.h9{height:46.736719px;}
.he{height:47.901094px;}
.hb{height:48.312422px;}
.h6{height:49.255313px;}
.h5{height:50.800781px;}
.h10{height:54.596250px;}
.h7{height:54.864844px;}
.h2{height:65.884219px;}
.h3{height:77.436000px;}
.hc{height:551.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.000000px;}
.w5{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w4{width:427.935000px;}
.w6{width:459.075000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x12{left:29.700000px;}
.x7{left:33.480000px;}
.x3{left:69.294000px;}
.x8{left:85.725000px;}
.x2{left:99.936000px;}
.x1{left:108.035987px;}
.xb{left:128.195987px;}
.x9{left:132.345000px;}
.x16{left:150.509987px;}
.x15{left:162.029987px;}
.x4{left:171.930000px;}
.xf{left:325.874987px;}
.xe{left:344.414987px;}
.xc{left:348.014987px;}
.x10{left:352.334987px;}
.x13{left:391.575000px;}
.xd{left:446.654987px;}
.xa{left:500.144987px;}
.x11{left:567.105000px;}
.x6{left:599.865000px;}
.x14{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-0.773333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.441067pt;}
.ls8{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.198933pt;}
.ls1a{letter-spacing:0.232960pt;}
.ls17{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls9{letter-spacing:3.840000pt;}
.lsd{letter-spacing:4.480000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.680000pt;}
.ls14{letter-spacing:8.960000pt;}
.lsf{letter-spacing:12.160000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls16{letter-spacing:14.080000pt;}
.lsb{letter-spacing:16.640000pt;}
.lse{letter-spacing:22.400000pt;}
.lsc{letter-spacing:23.680000pt;}
.ls15{letter-spacing:33.280000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.946667pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.558933pt;}
.ws3{word-spacing:-10.278933pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._5{width:2.018560pt;}
._4{width:3.187200pt;}
._7{width:4.196480pt;}
._6{width:5.524480pt;}
._8{width:6.746240pt;}
._f{width:7.705387pt;}
._d{width:8.871040pt;}
._c{width:10.252160pt;}
._10{width:11.845760pt;}
._17{width:13.066027pt;}
._15{width:14.289280pt;}
._1a{width:15.743147pt;}
._e{width:16.634667pt;}
._16{width:17.660800pt;}
._b{width:18.645120pt;}
._1f{width:19.642880pt;}
._1c{width:20.608000pt;}
._3{width:21.832320pt;}
._2{width:22.870187pt;}
._11{width:23.924480pt;}
._14{width:25.125760pt;}
._22{width:26.356480pt;}
._1d{width:27.555840pt;}
._1e{width:28.851200pt;}
._12{width:30.278400pt;}
._1b{width:31.322880pt;}
._20{width:32.636587pt;}
._21{width:33.596587pt;}
._19{width:34.847147pt;}
._18{width:36.341760pt;}
._a{width:38.883840pt;}
._9{width:39.840000pt;}
._23{width:41.333760pt;}
._24{width:42.253227pt;}
._13{width:44.833280pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.880000pt;}
.y3{bottom:5.760000pt;}
.y40{bottom:8.640000pt;}
.y41{bottom:10.080000pt;}
.y32{bottom:18.240000pt;}
.y6{bottom:22.560000pt;}
.y9{bottom:25.626667pt;}
.y31{bottom:33.440000pt;}
.y5{bottom:37.946667pt;}
.y8{bottom:40.986667pt;}
.y30{bottom:48.800000pt;}
.yb{bottom:49.440000pt;}
.y4{bottom:53.946667pt;}
.y7{bottom:56.346667pt;}
.y2f{bottom:64.160000pt;}
.y2e{bottom:79.520000pt;}
.y2d{bottom:94.880000pt;}
.y7e{bottom:104.992000pt;}
.y2c{bottom:110.240000pt;}
.y7d{bottom:121.952000pt;}
.y4c{bottom:124.832000pt;}
.y2b{bottom:125.440000pt;}
.y7c{bottom:138.746667pt;}
.y2a{bottom:140.800000pt;}
.y4b{bottom:141.626667pt;}
.y7b{bottom:155.546667pt;}
.y29{bottom:156.160000pt;}
.y4a{bottom:158.586667pt;}
.y28{bottom:171.520000pt;}
.y7a{bottom:172.506667pt;}
.y49{bottom:175.386667pt;}
.y27{bottom:186.906667pt;}
.y79{bottom:189.306667pt;}
.y48{bottom:192.186667pt;}
.y26{bottom:202.266667pt;}
.y78{bottom:206.266667pt;}
.y47{bottom:209.146667pt;}
.y3d{bottom:216.826667pt;}
.y25{bottom:217.466667pt;}
.y77{bottom:223.066667pt;}
.y46{bottom:225.946667pt;}
.y3c{bottom:229.146667pt;}
.y24{bottom:232.826667pt;}
.y76{bottom:239.866667pt;}
.y3b{bottom:241.466667pt;}
.y45{bottom:242.906667pt;}
.y23{bottom:248.186667pt;}
.y3a{bottom:253.626667pt;}
.y75{bottom:256.826667pt;}
.y44{bottom:259.706667pt;}
.y22{bottom:263.546667pt;}
.y39{bottom:265.946667pt;}
.y74{bottom:273.626667pt;}
.y43{bottom:276.506667pt;}
.y38{bottom:278.266667pt;}
.y21{bottom:278.906667pt;}
.y42{bottom:290.266667pt;}
.y37{bottom:290.426667pt;}
.y73{bottom:290.586667pt;}
.y20{bottom:294.266667pt;}
.y36{bottom:302.746667pt;}
.y72{bottom:307.426667pt;}
.y1f{bottom:309.466667pt;}
.y3f{bottom:309.986667pt;}
.y35{bottom:315.066667pt;}
.y71{bottom:324.226667pt;}
.y1e{bottom:324.826667pt;}
.y34{bottom:327.226667pt;}
.y1d{bottom:340.186667pt;}
.y3e{bottom:341.186667pt;}
.y13{bottom:354.786667pt;}
.y1c{bottom:355.546667pt;}
.y70{bottom:357.986667pt;}
.y1b{bottom:370.906667pt;}
.y6f{bottom:374.946667pt;}
.y1a{bottom:386.106667pt;}
.y6e{bottom:391.746667pt;}
.y19{bottom:401.466667pt;}
.y6d{bottom:408.546667pt;}
.y18{bottom:416.826667pt;}
.y6c{bottom:425.506667pt;}
.y17{bottom:432.226667pt;}
.y6b{bottom:442.306667pt;}
.y16{bottom:447.586667pt;}
.y6a{bottom:459.266667pt;}
.y15{bottom:462.946667pt;}
.y69{bottom:476.066667pt;}
.y14{bottom:478.146667pt;}
.y68{bottom:492.866667pt;}
.y67{bottom:509.826667pt;}
.y66{bottom:526.626667pt;}
.y65{bottom:543.613333pt;}
.y64{bottom:560.413333pt;}
.y63{bottom:577.373333pt;}
.y62{bottom:594.173333pt;}
.y61{bottom:610.973333pt;}
.y60{bottom:627.933333pt;}
.y5f{bottom:644.733333pt;}
.y5e{bottom:661.693333pt;}
.y5d{bottom:678.493333pt;}
.y5c{bottom:695.293333pt;}
.y5b{bottom:712.253333pt;}
.y5a{bottom:729.053333pt;}
.y59{bottom:746.013333pt;}
.y58{bottom:762.813333pt;}
.y57{bottom:779.653333pt;}
.y56{bottom:796.613333pt;}
.y55{bottom:813.413333pt;}
.y54{bottom:830.373333pt;}
.y53{bottom:847.173333pt;}
.y12{bottom:848.773333pt;}
.y52{bottom:863.973333pt;}
.y11{bottom:865.253333pt;}
.y10{bottom:880.453333pt;}
.y51{bottom:880.933333pt;}
.yf{bottom:896.293333pt;}
.y50{bottom:897.733333pt;}
.ye{bottom:912.133333pt;}
.y4f{bottom:914.693333pt;}
.yd{bottom:925.733333pt;}
.y4e{bottom:931.493333pt;}
.yc{bottom:945.733333pt;}
.y4d{bottom:948.453333pt;}
.ya{bottom:966.053333pt;}
.y2{bottom:985.893333pt;}
.y1{bottom:1061.440000pt;}
.hf{height:27.840000pt;}
.h8{height:30.254687pt;}
.hd{height:31.008437pt;}
.h4{height:37.479688pt;}
.ha{height:38.413438pt;}
.h9{height:41.543750pt;}
.he{height:42.578750pt;}
.hb{height:42.944375pt;}
.h6{height:43.782500pt;}
.h5{height:45.156250pt;}
.h10{height:48.530000pt;}
.h7{height:48.768750pt;}
.h2{height:58.563750pt;}
.h3{height:68.832000pt;}
.hc{height:490.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w5{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w4{width:380.386667pt;}
.w6{width:408.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x12{left:26.400000pt;}
.x7{left:29.760000pt;}
.x3{left:61.594667pt;}
.x8{left:76.200000pt;}
.x2{left:88.832000pt;}
.x1{left:96.031988pt;}
.xb{left:113.951988pt;}
.x9{left:117.640000pt;}
.x16{left:133.786655pt;}
.x15{left:144.026655pt;}
.x4{left:152.826667pt;}
.xf{left:289.666655pt;}
.xe{left:306.146655pt;}
.xc{left:309.346655pt;}
.x10{left:313.186655pt;}
.x13{left:348.066667pt;}
.xd{left:397.026655pt;}
.xa{left:444.573322pt;}
.x11{left:504.093333pt;}
.x6{left:533.213333pt;}
.x14{left:697.893322pt;}
}




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