
    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_183bde99a2c9661f9087fb39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_53ba111d226ac505926d3a0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_cfdba02f247b30cc6f8e25f1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_811a7ebf384e86ef562e2a0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_63ac437f452ccfd0b0c9b750.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_6d5a32fe130b4144188ea3c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_d04856e0386efcb45dc41f60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_6223ee884f1f67ac33d3e7fc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88f33aabf0109835c7750b59.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6f0a1e4f2f2d50807a11fbab.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d83efc586711dd232ed2ba7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:9.360000px;}
.ls2{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.050000px;}
.ls5{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.750000px;}
.lsb{letter-spacing:-0.738000px;}
.ls1a{letter-spacing:-0.378600px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.341400px;}
.ls17{letter-spacing:-0.272400px;}
.ls3{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.058320px;}
.ls1b{letter-spacing:-0.037440px;}
.ls11{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.341400px;}
.lsc{letter-spacing:0.350400px;}
.ls7{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.540000px;}
.ls1f{letter-spacing:7.020000px;}
.ls1c{letter-spacing:8.460000px;}
.ls0{letter-spacing:17.820000px;}
.ls6{letter-spacing:23.580000px;}
.ls19{letter-spacing:26.460000px;}
.ls16{letter-spacing:41.040000px;}
.lsd{letter-spacing:53.100000px;}
.ls1e{letter-spacing:83.340000px;}
.ls4{letter-spacing:94.860000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-24.480000px;}
.ws2{word-spacing:-23.040000px;}
.ws6{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.401400px;}
.ws12{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.031920px;}
.ws10{word-spacing:-21.022560px;}
.wsc{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.322000px;}
.ws11{word-spacing:-20.310000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-13.606560px;}
.wse{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-5.644080px;}
._1d{margin-left:-4.380720px;}
._13{margin-left:-3.303120px;}
._2{margin-left:-2.004000px;}
._18{margin-left:-1.001040px;}
._0{width:1.053360px;}
._9{width:2.081280px;}
._1{width:3.249120px;}
._a{width:4.490160px;}
._15{width:5.753280px;}
._e{width:7.268640px;}
._f{width:8.550720px;}
._1a{width:9.940320px;}
._1b{width:11.060400px;}
._4{width:12.407040px;}
._d{width:14.387280px;}
._14{width:15.468720px;}
._6{width:16.956240px;}
._5{width:18.282960px;}
._2b{width:19.309440px;}
._28{width:22.391280px;}
._16{width:23.394720px;}
._17{width:25.085520px;}
._2c{width:26.212800px;}
._10{width:27.378000px;}
._c{width:28.512480px;}
._b{width:30.055920px;}
._22{width:31.529760px;}
._23{width:33.301680px;}
._8{width:34.460400px;}
._7{width:36.542400px;}
._26{width:38.217840px;}
._33{width:39.264000px;}
._2d{width:40.940640px;}
._2e{width:42.009360px;}
._19{width:43.804800px;}
._27{width:45.804000px;}
._37{width:47.017920px;}
._2a{width:48.036000px;}
._21{width:49.834800px;}
._20{width:51.545520px;}
._29{width:53.109840px;}
._2f{width:54.657120px;}
._30{width:56.478000px;}
._32{width:62.006400px;}
._31{width:63.156000px;}
._1f{width:68.498640px;}
._1e{width:69.678960px;}
._34{width:71.920080px;}
._35{width:77.332320px;}
._36{width:78.956880px;}
._3a{width:80.059200px;}
._38{width:83.171520px;}
._39{width:84.297840px;}
._11{width:94.938480px;}
._12{width:96.194880px;}
._25{width:138.595920px;}
._24{width:139.711920px;}
._3{width:1466.047200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.600000px;}
.y35{bottom:100.980000px;}
.y34{bottom:106.200000px;}
.y21{bottom:108.936000px;}
.y33{bottom:131.256000px;}
.y32{bottom:136.476000px;}
.y20{bottom:145.296000px;}
.y40{bottom:149.616000px;}
.y3f{bottom:154.830000px;}
.y31{bottom:161.670000px;}
.y43{bottom:165.090000px;}
.y30{bottom:166.890000px;}
.y3e{bottom:180.030000px;}
.y4a{bottom:181.110000px;}
.y1f{bottom:181.470000px;}
.y4c{bottom:184.890000px;}
.y3d{bottom:185.250000px;}
.y2f{bottom:191.910000px;}
.y2e{bottom:197.130000px;}
.y3c{bottom:210.270000px;}
.y3b{bottom:215.490000px;}
.y42{bottom:217.290000px;}
.y1e{bottom:217.650000px;}
.y2d{bottom:225.570000px;}
.y3a{bottom:243.930000px;}
.y47{bottom:253.470000px;}
.y1d{bottom:253.830000px;}
.y2c{bottom:262.290000px;}
.y46{bottom:289.650000px;}
.y1c{bottom:290.010000px;}
.y2b{bottom:298.470000px;}
.y1b{bottom:326.370000px;}
.y2a{bottom:332.490000px;}
.y44{bottom:333.930000px;}
.y1a{bottom:362.550000px;}
.y39{bottom:370.155000px;}
.y19{bottom:398.415000px;}
.y29{bottom:398.775000px;}
.y4b{bottom:434.595000px;}
.y18{bottom:434.955000px;}
.y17{bottom:471.315000px;}
.y49{bottom:507.135000px;}
.y16{bottom:507.495000px;}
.y48{bottom:543.315000px;}
.y15{bottom:543.675000px;}
.y14{bottom:579.855000px;}
.y13{bottom:616.215000px;}
.y41{bottom:623.775000px;}
.y12{bottom:652.425000px;}
.y11{bottom:688.605000px;}
.y45{bottom:724.425000px;}
.y10{bottom:724.785000px;}
.yf{bottom:760.965000px;}
.y38{bottom:768.525000px;}
.ye{bottom:797.325000px;}
.yd{bottom:833.505000px;}
.yc{bottom:869.685000px;}
.y37{bottom:877.245000px;}
.yb{bottom:905.550000px;}
.y28{bottom:905.910000px;}
.ya{bottom:941.910000px;}
.y27{bottom:942.270000px;}
.y9{bottom:978.090000px;}
.y26{bottom:978.450000px;}
.y8{bottom:1014.270000px;}
.y25{bottom:1014.630000px;}
.y7{bottom:1050.450000px;}
.y24{bottom:1050.810000px;}
.y6{bottom:1086.810000px;}
.y23{bottom:1087.170000px;}
.y36{bottom:1094.730000px;}
.y5{bottom:1122.990000px;}
.y22{bottom:1123.350000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1232.820000px;}
.hc{height:38.671172px;}
.h4{height:47.512969px;}
.he{height:52.998047px;}
.h5{height:55.825312px;}
.h8{height:58.819922px;}
.hd{height:59.439023px;}
.hb{height:65.884219px;}
.h2{height:68.687227px;}
.h3{height:72.562500px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.ha{height:92.036953px;}
.h9{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x15{left:132.516000px;}
.x21{left:137.376000px;}
.x1{left:158.070000px;}
.x13{left:170.130000px;}
.x4{left:189.570000px;}
.x8{left:211.350000px;}
.x11{left:215.647500px;}
.x12{left:226.290000px;}
.x1f{left:245.527500px;}
.x20{left:259.230000px;}
.x16{left:298.672500px;}
.x17{left:306.975000px;}
.x7{left:316.515000px;}
.x1c{left:320.272500px;}
.xa{left:326.595000px;}
.x14{left:343.695000px;}
.x9{left:376.635000px;}
.x5{left:387.975000px;}
.xf{left:419.452500px;}
.x10{left:430.095000px;}
.x6{left:478.515000px;}
.x24{left:540.262500px;}
.xd{left:546.742500px;}
.xe{left:558.105000px;}
.x22{left:565.282500px;}
.x1d{left:573.202500px;}
.x23{left:580.245000px;}
.x1e{left:581.505000px;}
.x2{left:614.805000px;}
.x18{left:746.047500px;}
.x19{left:752.910000px;}
.x1a{left:762.787500px;}
.xb{left:764.047500px;}
.x1b{left:772.710000px;}
.xc{left:774.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.320000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.933333pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.666667pt;}
.lsb{letter-spacing:-0.656000pt;}
.ls1a{letter-spacing:-0.336533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.303467pt;}
.ls17{letter-spacing:-0.242133pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls1b{letter-spacing:-0.033280pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.303467pt;}
.lsc{letter-spacing:0.311467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:6.240000pt;}
.ls1c{letter-spacing:7.520000pt;}
.ls0{letter-spacing:15.840000pt;}
.ls6{letter-spacing:20.960000pt;}
.ls19{letter-spacing:23.520000pt;}
.ls16{letter-spacing:36.480000pt;}
.lsd{letter-spacing:47.200000pt;}
.ls1e{letter-spacing:74.080000pt;}
.ls4{letter-spacing:84.320000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.760000pt;}
.ws2{word-spacing:-20.480000pt;}
.ws6{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws7{word-spacing:-19.023467pt;}
.ws12{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.695040pt;}
.ws10{word-spacing:-18.686720pt;}
.wsc{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.064000pt;}
.ws11{word-spacing:-18.053333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-12.094720pt;}
.wse{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-5.016960pt;}
._1d{margin-left:-3.893973pt;}
._13{margin-left:-2.936107pt;}
._2{margin-left:-1.781333pt;}
._18{margin-left:-0.889813pt;}
._0{width:0.936320pt;}
._9{width:1.850027pt;}
._1{width:2.888107pt;}
._a{width:3.991253pt;}
._15{width:5.114027pt;}
._e{width:6.461013pt;}
._f{width:7.600640pt;}
._1a{width:8.835840pt;}
._1b{width:9.831467pt;}
._4{width:11.028480pt;}
._d{width:12.788693pt;}
._14{width:13.749973pt;}
._6{width:15.072213pt;}
._5{width:16.251520pt;}
._2b{width:17.163947pt;}
._28{width:19.903360pt;}
._16{width:20.795307pt;}
._17{width:22.298240pt;}
._2c{width:23.300267pt;}
._10{width:24.336000pt;}
._c{width:25.344427pt;}
._b{width:26.716373pt;}
._22{width:28.026453pt;}
._23{width:29.601493pt;}
._8{width:30.631467pt;}
._7{width:32.482133pt;}
._26{width:33.971413pt;}
._33{width:34.901333pt;}
._2d{width:36.391680pt;}
._2e{width:37.341653pt;}
._19{width:38.937600pt;}
._27{width:40.714667pt;}
._37{width:41.793707pt;}
._2a{width:42.698667pt;}
._21{width:44.297600pt;}
._20{width:45.818240pt;}
._29{width:47.208747pt;}
._2f{width:48.584107pt;}
._30{width:50.202667pt;}
._32{width:55.116800pt;}
._31{width:56.138667pt;}
._1f{width:60.887680pt;}
._1e{width:61.936853pt;}
._34{width:63.928960pt;}
._35{width:68.739840pt;}
._36{width:70.183893pt;}
._3a{width:71.163733pt;}
._38{width:73.930240pt;}
._39{width:74.931413pt;}
._11{width:84.389760pt;}
._12{width:85.506560pt;}
._25{width:123.196373pt;}
._24{width:124.188373pt;}
._3{width:1303.153067pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.200000pt;}
.y35{bottom:89.760000pt;}
.y34{bottom:94.400000pt;}
.y21{bottom:96.832000pt;}
.y33{bottom:116.672000pt;}
.y32{bottom:121.312000pt;}
.y20{bottom:129.152000pt;}
.y40{bottom:132.992000pt;}
.y3f{bottom:137.626667pt;}
.y31{bottom:143.706667pt;}
.y43{bottom:146.746667pt;}
.y30{bottom:148.346667pt;}
.y3e{bottom:160.026667pt;}
.y4a{bottom:160.986667pt;}
.y1f{bottom:161.306667pt;}
.y4c{bottom:164.346667pt;}
.y3d{bottom:164.666667pt;}
.y2f{bottom:170.586667pt;}
.y2e{bottom:175.226667pt;}
.y3c{bottom:186.906667pt;}
.y3b{bottom:191.546667pt;}
.y42{bottom:193.146667pt;}
.y1e{bottom:193.466667pt;}
.y2d{bottom:200.506667pt;}
.y3a{bottom:216.826667pt;}
.y47{bottom:225.306667pt;}
.y1d{bottom:225.626667pt;}
.y2c{bottom:233.146667pt;}
.y46{bottom:257.466667pt;}
.y1c{bottom:257.786667pt;}
.y2b{bottom:265.306667pt;}
.y1b{bottom:290.106667pt;}
.y2a{bottom:295.546667pt;}
.y44{bottom:296.826667pt;}
.y1a{bottom:322.266667pt;}
.y39{bottom:329.026667pt;}
.y19{bottom:354.146667pt;}
.y29{bottom:354.466667pt;}
.y4b{bottom:386.306667pt;}
.y18{bottom:386.626667pt;}
.y17{bottom:418.946667pt;}
.y49{bottom:450.786667pt;}
.y16{bottom:451.106667pt;}
.y48{bottom:482.946667pt;}
.y15{bottom:483.266667pt;}
.y14{bottom:515.426667pt;}
.y13{bottom:547.746667pt;}
.y41{bottom:554.466667pt;}
.y12{bottom:579.933333pt;}
.y11{bottom:612.093333pt;}
.y45{bottom:643.933333pt;}
.y10{bottom:644.253333pt;}
.yf{bottom:676.413333pt;}
.y38{bottom:683.133333pt;}
.ye{bottom:708.733333pt;}
.yd{bottom:740.893333pt;}
.yc{bottom:773.053333pt;}
.y37{bottom:779.773333pt;}
.yb{bottom:804.933333pt;}
.y28{bottom:805.253333pt;}
.ya{bottom:837.253333pt;}
.y27{bottom:837.573333pt;}
.y9{bottom:869.413333pt;}
.y26{bottom:869.733333pt;}
.y8{bottom:901.573333pt;}
.y25{bottom:901.893333pt;}
.y7{bottom:933.733333pt;}
.y24{bottom:934.053333pt;}
.y6{bottom:966.053333pt;}
.y23{bottom:966.373333pt;}
.y36{bottom:973.093333pt;}
.y5{bottom:998.213333pt;}
.y22{bottom:998.533333pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1095.840000pt;}
.hc{height:34.374375pt;}
.h4{height:42.233750pt;}
.he{height:47.109375pt;}
.h5{height:49.622500pt;}
.h8{height:52.284375pt;}
.hd{height:52.834688pt;}
.hb{height:58.563750pt;}
.h2{height:61.055312pt;}
.h3{height:64.500000pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.ha{height:81.810625pt;}
.h9{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x15{left:117.792000pt;}
.x21{left:122.112000pt;}
.x1{left:140.506667pt;}
.x13{left:151.226667pt;}
.x4{left:168.506667pt;}
.x8{left:187.866667pt;}
.x11{left:191.686667pt;}
.x12{left:201.146667pt;}
.x1f{left:218.246667pt;}
.x20{left:230.426667pt;}
.x16{left:265.486667pt;}
.x17{left:272.866667pt;}
.x7{left:281.346667pt;}
.x1c{left:284.686667pt;}
.xa{left:290.306667pt;}
.x14{left:305.506667pt;}
.x9{left:334.786667pt;}
.x5{left:344.866667pt;}
.xf{left:372.846667pt;}
.x10{left:382.306667pt;}
.x6{left:425.346667pt;}
.x24{left:480.233333pt;}
.xd{left:485.993333pt;}
.xe{left:496.093333pt;}
.x22{left:502.473333pt;}
.x1d{left:509.513333pt;}
.x23{left:515.773333pt;}
.x1e{left:516.893333pt;}
.x2{left:546.493333pt;}
.x18{left:663.153333pt;}
.x19{left:669.253333pt;}
.x1a{left:678.033333pt;}
.xb{left:679.153333pt;}
.x1b{left:686.853333pt;}
.xc{left:688.613333pt;}
}




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