
    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_e598ef627e0974f15701889e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_840daf0949af97febb35b50e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5ac93da34cd30604dfa496bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_923db86447aded5236a32065.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_e267382050349301bcea9f5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_39d5acd01da7d8a4ced98012.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.649414;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_08fab944a1ffe12d1c77c539.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.768555;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_333d0ac5c8102aa0ffd862b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_c51f0417024c83db09adc276.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);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v6{vertical-align:-4.320000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v3{vertical-align:4.320000px;}
.v7{vertical-align:14.400000px;}
.va{vertical-align:15.840000px;}
.v5{vertical-align:18.720000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.463800px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.936000px;}
.ls2{letter-spacing:1.308000px;}
.ls13{letter-spacing:1.584000px;}
.ls4{letter-spacing:1.800000px;}
.ls1{letter-spacing:2.160000px;}
.lsf{letter-spacing:3.744000px;}
.lse{letter-spacing:5.184000px;}
.ls6{letter-spacing:14.760000px;}
.ls8{letter-spacing:16.200000px;}
.ls5{letter-spacing:19.080000px;}
.ls11{letter-spacing:19.200000px;}
.lsd{letter-spacing:21.096000px;}
.lsc{letter-spacing:23.904000px;}
.ls14{letter-spacing:53.424000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws8{word-spacing:-52.488000px;}
.ws3{word-spacing:-52.344000px;}
.ws6{word-spacing:-50.904000px;}
.ws4{word-spacing:-50.400000px;}
.ws9{word-spacing:-19.584000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.880000px;}
.ws7{word-spacing:0.000000px;}
._f{margin-left:-37.296000px;}
._14{margin-left:-14.044320px;}
._15{margin-left:-7.990560px;}
._12{margin-left:-6.576960px;}
._8{margin-left:-5.221440px;}
._7{margin-left:-3.888000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.442720px;}
._c{width:3.629760px;}
._6{width:4.645440px;}
._5{width:5.650560px;}
._4{width:6.912000px;}
._e{width:8.314560px;}
._d{width:9.486720px;}
._17{width:11.516160px;}
._10{width:12.600000px;}
._16{width:14.002080px;}
._9{width:15.082560px;}
._11{width:17.126400px;}
._18{width:20.141760px;}
._a{width:21.476160px;}
._b{width:22.694400px;}
._1a{width:23.722560px;}
._1b{width:24.877440px;}
._19{width:26.112960px;}
._1c{width:30.418560px;}
._1d{width:32.105760px;}
._13{width:160.932960px;}
.fc4{color:rgb(91,155,213);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y58{bottom:105.876000px;}
.y63{bottom:119.556000px;}
.y33{bottom:122.796000px;}
.y57{bottom:129.636000px;}
.y62{bottom:139.356000px;}
.y32{bottom:146.556000px;}
.y56{bottom:149.436000px;}
.y31{bottom:170.310000px;}
.y30{bottom:194.115000px;}
.y2f{bottom:220.395000px;}
.y78{bottom:243.795000px;}
.y2e{bottom:244.515000px;}
.y77{bottom:267.555000px;}
.y2d{bottom:268.275000px;}
.y76{bottom:291.315000px;}
.y2c{bottom:292.755000px;}
.y75{bottom:315.075000px;}
.y2b{bottom:319.035000px;}
.y55{bottom:329.145000px;}
.y74{bottom:338.865000px;}
.y2a{bottom:343.185000px;}
.y54{bottom:352.905000px;}
.y73{bottom:362.625000px;}
.y29{bottom:369.465000px;}
.y53{bottom:376.665000px;}
.y72{bottom:386.385000px;}
.y28{bottom:393.585000px;}
.y52{bottom:400.425000px;}
.y71{bottom:409.785000px;}
.y27{bottom:417.345000px;}
.y51{bottom:424.545000px;}
.y70{bottom:433.905000px;}
.y26{bottom:441.105000px;}
.y50{bottom:448.350000px;}
.y6f{bottom:462.030000px;}
.y25{bottom:464.910000px;}
.y4f{bottom:472.110000px;}
.y6e{bottom:485.790000px;}
.y24{bottom:488.670000px;}
.y61{bottom:490.470000px;}
.y4e{bottom:495.870000px;}
.y6d{bottom:509.910000px;}
.y23{bottom:512.070000px;}
.y60{bottom:514.230000px;}
.y4d{bottom:519.630000px;}
.y6c{bottom:533.670000px;}
.y22{bottom:536.550000px;}
.y5f{bottom:537.990000px;}
.y4c{bottom:543.390000px;}
.y6b{bottom:557.430000px;}
.y21{bottom:560.310000px;}
.y5e{bottom:562.110000px;}
.y4b{bottom:567.150000px;}
.y6a{bottom:581.220000px;}
.y20{bottom:584.100000px;}
.y5d{bottom:585.900000px;}
.y4a{bottom:590.940000px;}
.y69{bottom:604.980000px;}
.y1f{bottom:607.860000px;}
.y5c{bottom:609.660000px;}
.y49{bottom:614.700000px;}
.y68{bottom:629.100000px;}
.y1e{bottom:631.620000px;}
.y5b{bottom:633.060000px;}
.y48{bottom:638.820000px;}
.y67{bottom:652.500000px;}
.y5a{bottom:652.860000px;}
.y1d{bottom:655.380000px;}
.y47{bottom:667.620000px;}
.y66{bottom:676.620000px;}
.y1c{bottom:679.140000px;}
.y46{bottom:697.860000px;}
.y65{bottom:700.050000px;}
.y1b{bottom:702.930000px;}
.y64{bottom:719.850000px;}
.y45{bottom:721.650000px;}
.y1a{bottom:727.050000px;}
.y44{bottom:745.770000px;}
.y19{bottom:750.810000px;}
.y43{bottom:769.530000px;}
.y18{bottom:774.570000px;}
.y42{bottom:793.290000px;}
.y17{bottom:798.330000px;}
.y41{bottom:817.050000px;}
.y16{bottom:822.090000px;}
.y40{bottom:840.855000px;}
.y15{bottom:845.895000px;}
.y3f{bottom:864.615000px;}
.y14{bottom:869.655000px;}
.y3e{bottom:888.375000px;}
.y13{bottom:893.415000px;}
.y3d{bottom:912.135000px;}
.y12{bottom:916.815000px;}
.y3c{bottom:936.255000px;}
.y11{bottom:940.935000px;}
.y3b{bottom:960.405000px;}
.y10{bottom:965.085000px;}
.y3a{bottom:984.165000px;}
.yf{bottom:988.845000px;}
.y39{bottom:1008.285000px;}
.ye{bottom:1012.605000px;}
.y38{bottom:1034.205000px;}
.yd{bottom:1036.005000px;}
.y59{bottom:1036.365000px;}
.yc{bottom:1060.125000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.h10{height:54.738281px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h11{height:74.004654px;}
.h9{height:75.251250px;}
.he{height:79.980469px;}
.hf{height:81.420469px;}
.hc{height:84.300469px;}
.hd{height:84.420469px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:43.590000px;}
.x5{left:95.796000px;}
.x16{left:96.875987px;}
.xa{left:107.675987px;}
.x1b{left:111.275987px;}
.x10{left:124.955987px;}
.xe{left:128.555987px;}
.x1d{left:146.591987px;}
.xb{left:149.471987px;}
.x19{left:184.394987px;}
.x3{left:190.874987px;}
.xd{left:282.704987px;}
.x6{left:290.634000px;}
.xc{left:315.104987px;}
.x11{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x17{left:344.669987px;}
.x12{left:352.229987px;}
.x13{left:387.149987px;}
.x7{left:394.710000px;}
.xf{left:402.989987px;}
.x14{left:423.539987px;}
.x9{left:498.780000px;}
.x15{left:593.849987px;}
.x1a{left:732.164987px;}
.x1c{left:749.444987px;}
.x18{left:758.444987px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v6{vertical-align:-3.840000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v3{vertical-align:3.840000pt;}
.v7{vertical-align:12.800000pt;}
.va{vertical-align:14.080000pt;}
.v5{vertical-align:16.640000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.832000pt;}
.ls2{letter-spacing:1.162667pt;}
.ls13{letter-spacing:1.408000pt;}
.ls4{letter-spacing:1.600000pt;}
.ls1{letter-spacing:1.920000pt;}
.lsf{letter-spacing:3.328000pt;}
.lse{letter-spacing:4.608000pt;}
.ls6{letter-spacing:13.120000pt;}
.ls8{letter-spacing:14.400000pt;}
.ls5{letter-spacing:16.960000pt;}
.ls11{letter-spacing:17.066667pt;}
.lsd{letter-spacing:18.752000pt;}
.lsc{letter-spacing:21.248000pt;}
.ls14{letter-spacing:47.488000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws8{word-spacing:-46.656000pt;}
.ws3{word-spacing:-46.528000pt;}
.ws6{word-spacing:-45.248000pt;}
.ws4{word-spacing:-44.800000pt;}
.ws9{word-spacing:-17.408000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.560000pt;}
.ws7{word-spacing:0.000000pt;}
._f{margin-left:-33.152000pt;}
._14{margin-left:-12.483840pt;}
._15{margin-left:-7.102720pt;}
._12{margin-left:-5.846187pt;}
._8{margin-left:-4.641280pt;}
._7{margin-left:-3.456000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.171307pt;}
._c{width:3.226453pt;}
._6{width:4.129280pt;}
._5{width:5.022720pt;}
._4{width:6.144000pt;}
._e{width:7.390720pt;}
._d{width:8.432640pt;}
._17{width:10.236587pt;}
._10{width:11.200000pt;}
._16{width:12.446293pt;}
._9{width:13.406720pt;}
._11{width:15.223467pt;}
._18{width:17.903787pt;}
._a{width:19.089920pt;}
._b{width:20.172800pt;}
._1a{width:21.086720pt;}
._1b{width:22.113280pt;}
._19{width:23.211520pt;}
._1c{width:27.038720pt;}
._1d{width:28.538453pt;}
._13{width:143.051520pt;}
.fs4{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y58{bottom:94.112000pt;}
.y63{bottom:106.272000pt;}
.y33{bottom:109.152000pt;}
.y57{bottom:115.232000pt;}
.y62{bottom:123.872000pt;}
.y32{bottom:130.272000pt;}
.y56{bottom:132.832000pt;}
.y31{bottom:151.386667pt;}
.y30{bottom:172.546667pt;}
.y2f{bottom:195.906667pt;}
.y78{bottom:216.706667pt;}
.y2e{bottom:217.346667pt;}
.y77{bottom:237.826667pt;}
.y2d{bottom:238.466667pt;}
.y76{bottom:258.946667pt;}
.y2c{bottom:260.226667pt;}
.y75{bottom:280.066667pt;}
.y2b{bottom:283.586667pt;}
.y55{bottom:292.573333pt;}
.y74{bottom:301.213333pt;}
.y2a{bottom:305.053333pt;}
.y54{bottom:313.693333pt;}
.y73{bottom:322.333333pt;}
.y29{bottom:328.413333pt;}
.y53{bottom:334.813333pt;}
.y72{bottom:343.453333pt;}
.y28{bottom:349.853333pt;}
.y52{bottom:355.933333pt;}
.y71{bottom:364.253333pt;}
.y27{bottom:370.973333pt;}
.y51{bottom:377.373333pt;}
.y70{bottom:385.693333pt;}
.y26{bottom:392.093333pt;}
.y50{bottom:398.533333pt;}
.y6f{bottom:410.693333pt;}
.y25{bottom:413.253333pt;}
.y4f{bottom:419.653333pt;}
.y6e{bottom:431.813333pt;}
.y24{bottom:434.373333pt;}
.y61{bottom:435.973333pt;}
.y4e{bottom:440.773333pt;}
.y6d{bottom:453.253333pt;}
.y23{bottom:455.173333pt;}
.y60{bottom:457.093333pt;}
.y4d{bottom:461.893333pt;}
.y6c{bottom:474.373333pt;}
.y22{bottom:476.933333pt;}
.y5f{bottom:478.213333pt;}
.y4c{bottom:483.013333pt;}
.y6b{bottom:495.493333pt;}
.y21{bottom:498.053333pt;}
.y5e{bottom:499.653333pt;}
.y4b{bottom:504.133333pt;}
.y6a{bottom:516.640000pt;}
.y20{bottom:519.200000pt;}
.y5d{bottom:520.800000pt;}
.y4a{bottom:525.280000pt;}
.y69{bottom:537.760000pt;}
.y1f{bottom:540.320000pt;}
.y5c{bottom:541.920000pt;}
.y49{bottom:546.400000pt;}
.y68{bottom:559.200000pt;}
.y1e{bottom:561.440000pt;}
.y5b{bottom:562.720000pt;}
.y48{bottom:567.840000pt;}
.y67{bottom:580.000000pt;}
.y5a{bottom:580.320000pt;}
.y1d{bottom:582.560000pt;}
.y47{bottom:593.440000pt;}
.y66{bottom:601.440000pt;}
.y1c{bottom:603.680000pt;}
.y46{bottom:620.320000pt;}
.y65{bottom:622.266667pt;}
.y1b{bottom:624.826667pt;}
.y64{bottom:639.866667pt;}
.y45{bottom:641.466667pt;}
.y1a{bottom:646.266667pt;}
.y44{bottom:662.906667pt;}
.y19{bottom:667.386667pt;}
.y43{bottom:684.026667pt;}
.y18{bottom:688.506667pt;}
.y42{bottom:705.146667pt;}
.y17{bottom:709.626667pt;}
.y41{bottom:726.266667pt;}
.y16{bottom:730.746667pt;}
.y40{bottom:747.426667pt;}
.y15{bottom:751.906667pt;}
.y3f{bottom:768.546667pt;}
.y14{bottom:773.026667pt;}
.y3e{bottom:789.666667pt;}
.y13{bottom:794.146667pt;}
.y3d{bottom:810.786667pt;}
.y12{bottom:814.946667pt;}
.y3c{bottom:832.226667pt;}
.y11{bottom:836.386667pt;}
.y3b{bottom:853.693333pt;}
.y10{bottom:857.853333pt;}
.y3a{bottom:874.813333pt;}
.yf{bottom:878.973333pt;}
.y39{bottom:896.253333pt;}
.ye{bottom:900.093333pt;}
.y38{bottom:919.293333pt;}
.yd{bottom:920.893333pt;}
.y59{bottom:921.213333pt;}
.yc{bottom:942.333333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.h10{height:48.656250pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h11{height:65.781915pt;}
.h9{height:66.890000pt;}
.he{height:71.093750pt;}
.hf{height:72.373750pt;}
.hc{height:74.933750pt;}
.hd{height:75.040417pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:38.746667pt;}
.x5{left:85.152000pt;}
.x16{left:86.111988pt;}
.xa{left:95.711988pt;}
.x1b{left:98.911988pt;}
.x10{left:111.071988pt;}
.xe{left:114.271988pt;}
.x1d{left:130.303988pt;}
.xb{left:132.863988pt;}
.x19{left:163.906655pt;}
.x3{left:169.666655pt;}
.xd{left:251.293322pt;}
.x6{left:258.341333pt;}
.xc{left:280.093322pt;}
.x11{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x17{left:306.373322pt;}
.x12{left:313.093322pt;}
.x13{left:344.133322pt;}
.x7{left:350.853333pt;}
.xf{left:358.213322pt;}
.x14{left:376.479988pt;}
.x9{left:443.360000pt;}
.x15{left:527.866655pt;}
.x1a{left:650.813322pt;}
.x1c{left:666.173322pt;}
.x18{left:674.173322pt;}
.x1{left:709.053322pt;}
}




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