
    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_330e38f31f47a3c6f8882388.woff')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_231521c14a6887fb61596a87.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_ca072ebe22af8040f08a43da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_fdeac002f5ac6397186ac263.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_8cad26ac012d9504726e51ac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_f27d5bd3ad22e8258531cebf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_590ad15f2a61792db01cd3ae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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_28a80fdad7f61c18559ab0d9.woff')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_43a7d601b8b92efc2050ee15.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0f746394a11e35b8d0ad1c1f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.340800px;}
.ls11{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls12{letter-spacing:0.023040px;}
.lse{letter-spacing:0.063600px;}
.ls6{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.088560px;}
.ls19{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.792000px;}
.ls5{letter-spacing:4.248000px;}
.ls4{letter-spacing:17.208000px;}
.ls3{letter-spacing:22.536000px;}
.ls13{letter-spacing:22.968000px;}
.ls2{letter-spacing:23.688000px;}
.lsd{letter-spacing:26.568000px;}
.ls14{letter-spacing:30.168000px;}
.ls16{letter-spacing:33.768000px;}
.ls1{letter-spacing:41.148000px;}
.lsc{letter-spacing:101.664000px;}
.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;}
}
.ws3{word-spacing:-60.984000px;}
.wsb{word-spacing:-21.024000px;}
.ws6{word-spacing:-20.592000px;}
.ws9{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.232001px;}
.ws1{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.231997px;}
.wsc{word-spacing:-19.944000px;}
.ws7{word-spacing:-18.613440px;}
.ws8{word-spacing:-18.282240px;}
.ws5{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.451760px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-11.558160px;}
._5{margin-left:-7.665840px;}
._13{margin-left:-6.120000px;}
._c{margin-left:-4.349280px;}
._4{margin-left:-2.899680px;}
._3{margin-left:-1.440000px;}
._0{width:1.135440px;}
._8{width:2.736000px;}
._9{width:3.844560px;}
._14{width:5.578320px;}
._20{width:7.525680px;}
._21{width:9.618480px;}
._15{width:10.623360px;}
._12{width:11.935680px;}
._11{width:13.008000px;}
._7{width:15.048000px;}
._f{width:17.424000px;}
._6{width:19.080000px;}
._10{width:21.629520px;}
._d{width:23.179680px;}
._e{width:24.520320px;}
._19{width:26.280000px;}
._17{width:28.025760px;}
._16{width:29.032560px;}
._1d{width:30.312000px;}
._1f{width:32.124000px;}
._1e{width:33.696000px;}
._a{width:40.752000px;}
._b{width:41.788560px;}
._23{width:47.880000px;}
._22{width:49.104000px;}
._1c{width:55.816560px;}
._1a{width:58.696560px;}
._1b{width:60.283440px;}
._1{width:387.642000px;}
._2{width:727.788720px;}
._24{width:843.924000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:58.536000px;}
.y5{bottom:78.156000px;}
.y4{bottom:94.896000px;}
.y3{bottom:114.336000px;}
.y6b{bottom:142.956000px;}
.y3c{bottom:144.216000px;}
.y24{bottom:152.850000px;}
.y6a{bottom:173.010000px;}
.y3b{bottom:174.270000px;}
.y23{bottom:183.090000px;}
.y4e{bottom:202.350000px;}
.y69{bottom:203.250000px;}
.y3a{bottom:204.510000px;}
.y22{bottom:213.330000px;}
.y4d{bottom:232.590000px;}
.y68{bottom:233.490000px;}
.y39{bottom:234.930000px;}
.y21{bottom:243.390000px;}
.y4c{bottom:262.830000px;}
.y67{bottom:263.550000px;}
.y38{bottom:265.170000px;}
.y20{bottom:273.810000px;}
.y4b{bottom:293.115000px;}
.y66{bottom:293.835000px;}
.y37{bottom:295.455000px;}
.y1f{bottom:303.915000px;}
.y36{bottom:320.655000px;}
.y4a{bottom:323.175000px;}
.y65{bottom:324.075000px;}
.y1e{bottom:334.155000px;}
.y49{bottom:353.595000px;}
.y64{bottom:354.315000px;}
.y1d{bottom:364.395000px;}
.y48{bottom:383.835000px;}
.y63{bottom:384.555000px;}
.y1c{bottom:394.635000px;}
.y47{bottom:414.075000px;}
.y62{bottom:414.795000px;}
.y1b{bottom:424.875000px;}
.y46{bottom:444.135000px;}
.y61{bottom:444.855000px;}
.y1a{bottom:455.115000px;}
.y45{bottom:474.375000px;}
.y60{bottom:475.455000px;}
.y19{bottom:485.355000px;}
.y44{bottom:504.615000px;}
.y5f{bottom:505.695000px;}
.y18{bottom:515.595000px;}
.y43{bottom:534.855000px;}
.y5e{bottom:535.755000px;}
.y79{bottom:536.835000px;}
.y17{bottom:545.685000px;}
.y42{bottom:565.125000px;}
.y5d{bottom:566.385000px;}
.y78{bottom:566.745000px;}
.y16{bottom:575.745000px;}
.y41{bottom:595.365000px;}
.y5c{bottom:596.625000px;}
.y77{bottom:596.985000px;}
.y15{bottom:606.165000px;}
.y40{bottom:625.065000px;}
.y5b{bottom:626.685000px;}
.y76{bottom:627.225000px;}
.y14{bottom:636.405000px;}
.y3f{bottom:655.305000px;}
.y5a{bottom:656.925000px;}
.y35{bottom:657.465000px;}
.y13{bottom:666.645000px;}
.y3e{bottom:685.545000px;}
.y59{bottom:687.165000px;}
.y75{bottom:687.525000px;}
.y34{bottom:687.705000px;}
.y12{bottom:696.885000px;}
.y3d{bottom:710.745000px;}
.y58{bottom:717.405000px;}
.y33{bottom:717.765000px;}
.y11{bottom:727.125000px;}
.y57{bottom:747.645000px;}
.y74{bottom:748.005000px;}
.y32{bottom:748.365000px;}
.y10{bottom:757.365000px;}
.y56{bottom:777.885000px;}
.y73{bottom:778.245000px;}
.y31{bottom:778.605000px;}
.yf{bottom:787.605000px;}
.y55{bottom:808.170000px;}
.y72{bottom:808.530000px;}
.y30{bottom:808.890000px;}
.ye{bottom:817.710000px;}
.y54{bottom:838.410000px;}
.y71{bottom:838.770000px;}
.y2f{bottom:839.130000px;}
.yd{bottom:847.950000px;}
.y53{bottom:868.470000px;}
.y70{bottom:869.010000px;}
.y2e{bottom:869.190000px;}
.yc{bottom:878.190000px;}
.y52{bottom:898.890000px;}
.y6f{bottom:899.070000px;}
.y2d{bottom:899.250000px;}
.yb{bottom:914.190000px;}
.y51{bottom:928.950000px;}
.y6e{bottom:929.310000px;}
.y2c{bottom:929.490000px;}
.ya{bottom:953.790000px;}
.y50{bottom:959.190000px;}
.y2b{bottom:959.550000px;}
.y6d{bottom:989.250000px;}
.y4f{bottom:989.430000px;}
.y2a{bottom:989.790000px;}
.y9{bottom:993.210000px;}
.y6c{bottom:1019.490000px;}
.y29{bottom:1019.670000px;}
.y8{bottom:1030.110000px;}
.y28{bottom:1038.750000px;}
.y7{bottom:1064.130000px;}
.y27{bottom:1065.240000px;}
.y26{bottom:1093.680000px;}
.y2{bottom:1098.360000px;}
.y1{bottom:1118.520000px;}
.y25{bottom:1120.140000px;}
.h8{height:45.316055px;}
.h4{height:47.988281px;}
.h1{height:50.229844px;}
.h2{height:50.743477px;}
.h3{height:56.245781px;}
.h7{height:58.651172px;}
.h5{height:61.136719px;}
.h6{height:71.529961px;}
.h9{height:74.004654px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.xb{left:150.510000px;}
.x2{left:171.930000px;}
.xa{left:188.670000px;}
.x9{left:190.290000px;}
.x6{left:197.490000px;}
.x3{left:235.650000px;}
.x7{left:379.875000px;}
.xe{left:393.375000px;}
.x8{left:500.685000px;}
.x11{left:525.525000px;}
.xf{left:576.285000px;}
.x10{left:637.125000px;}
.xd{left:647.745000px;}
.x12{left:695.625000px;}
.xc{left:699.270000px;}
.x5{left:734.730000px;}
.x4{left:829.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.302933pt;}
.ls11{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls12{letter-spacing:0.020480pt;}
.lse{letter-spacing:0.056533pt;}
.ls6{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.078720pt;}
.ls19{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls5{letter-spacing:3.776000pt;}
.ls4{letter-spacing:15.296000pt;}
.ls3{letter-spacing:20.032000pt;}
.ls13{letter-spacing:20.416000pt;}
.ls2{letter-spacing:21.056000pt;}
.lsd{letter-spacing:23.616000pt;}
.ls14{letter-spacing:26.816000pt;}
.ls16{letter-spacing:30.016000pt;}
.ls1{letter-spacing:36.576000pt;}
.lsc{letter-spacing:90.368000pt;}
.ws3{word-spacing:-54.208000pt;}
.wsb{word-spacing:-18.688000pt;}
.ws6{word-spacing:-18.304000pt;}
.ws9{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.984001pt;}
.ws1{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.983997pt;}
.wsc{word-spacing:-17.728000pt;}
.ws7{word-spacing:-16.545280pt;}
.ws8{word-spacing:-16.250880pt;}
.ws5{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.623787pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-10.273920pt;}
._5{margin-left:-6.814080pt;}
._13{margin-left:-5.440000pt;}
._c{margin-left:-3.866027pt;}
._4{margin-left:-2.577493pt;}
._3{margin-left:-1.280000pt;}
._0{width:1.009280pt;}
._8{width:2.432000pt;}
._9{width:3.417387pt;}
._14{width:4.958507pt;}
._20{width:6.689493pt;}
._21{width:8.549760pt;}
._15{width:9.442987pt;}
._12{width:10.609493pt;}
._11{width:11.562667pt;}
._7{width:13.376000pt;}
._f{width:15.488000pt;}
._6{width:16.960000pt;}
._10{width:19.226240pt;}
._d{width:20.604160pt;}
._e{width:21.795840pt;}
._19{width:23.360000pt;}
._17{width:24.911787pt;}
._16{width:25.806720pt;}
._1d{width:26.944000pt;}
._1f{width:28.554667pt;}
._1e{width:29.952000pt;}
._a{width:36.224000pt;}
._b{width:37.145387pt;}
._23{width:42.560000pt;}
._22{width:43.648000pt;}
._1c{width:49.614720pt;}
._1a{width:52.174720pt;}
._1b{width:53.585280pt;}
._1{width:344.570667pt;}
._2{width:646.923307pt;}
._24{width:750.154667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:52.032000pt;}
.y5{bottom:69.472000pt;}
.y4{bottom:84.352000pt;}
.y3{bottom:101.632000pt;}
.y6b{bottom:127.072000pt;}
.y3c{bottom:128.192000pt;}
.y24{bottom:135.866667pt;}
.y6a{bottom:153.786667pt;}
.y3b{bottom:154.906667pt;}
.y23{bottom:162.746667pt;}
.y4e{bottom:179.866667pt;}
.y69{bottom:180.666667pt;}
.y3a{bottom:181.786667pt;}
.y22{bottom:189.626667pt;}
.y4d{bottom:206.746667pt;}
.y68{bottom:207.546667pt;}
.y39{bottom:208.826667pt;}
.y21{bottom:216.346667pt;}
.y4c{bottom:233.626667pt;}
.y67{bottom:234.266667pt;}
.y38{bottom:235.706667pt;}
.y20{bottom:243.386667pt;}
.y4b{bottom:260.546667pt;}
.y66{bottom:261.186667pt;}
.y37{bottom:262.626667pt;}
.y1f{bottom:270.146667pt;}
.y36{bottom:285.026667pt;}
.y4a{bottom:287.266667pt;}
.y65{bottom:288.066667pt;}
.y1e{bottom:297.026667pt;}
.y49{bottom:314.306667pt;}
.y64{bottom:314.946667pt;}
.y1d{bottom:323.906667pt;}
.y48{bottom:341.186667pt;}
.y63{bottom:341.826667pt;}
.y1c{bottom:350.786667pt;}
.y47{bottom:368.066667pt;}
.y62{bottom:368.706667pt;}
.y1b{bottom:377.666667pt;}
.y46{bottom:394.786667pt;}
.y61{bottom:395.426667pt;}
.y1a{bottom:404.546667pt;}
.y45{bottom:421.666667pt;}
.y60{bottom:422.626667pt;}
.y19{bottom:431.426667pt;}
.y44{bottom:448.546667pt;}
.y5f{bottom:449.506667pt;}
.y18{bottom:458.306667pt;}
.y43{bottom:475.426667pt;}
.y5e{bottom:476.226667pt;}
.y79{bottom:477.186667pt;}
.y17{bottom:485.053333pt;}
.y42{bottom:502.333333pt;}
.y5d{bottom:503.453333pt;}
.y78{bottom:503.773333pt;}
.y16{bottom:511.773333pt;}
.y41{bottom:529.213333pt;}
.y5c{bottom:530.333333pt;}
.y77{bottom:530.653333pt;}
.y15{bottom:538.813333pt;}
.y40{bottom:555.613333pt;}
.y5b{bottom:557.053333pt;}
.y76{bottom:557.533333pt;}
.y14{bottom:565.693333pt;}
.y3f{bottom:582.493333pt;}
.y5a{bottom:583.933333pt;}
.y35{bottom:584.413333pt;}
.y13{bottom:592.573333pt;}
.y3e{bottom:609.373333pt;}
.y59{bottom:610.813333pt;}
.y75{bottom:611.133333pt;}
.y34{bottom:611.293333pt;}
.y12{bottom:619.453333pt;}
.y3d{bottom:631.773333pt;}
.y58{bottom:637.693333pt;}
.y33{bottom:638.013333pt;}
.y11{bottom:646.333333pt;}
.y57{bottom:664.573333pt;}
.y74{bottom:664.893333pt;}
.y32{bottom:665.213333pt;}
.y10{bottom:673.213333pt;}
.y56{bottom:691.453333pt;}
.y73{bottom:691.773333pt;}
.y31{bottom:692.093333pt;}
.yf{bottom:700.093333pt;}
.y55{bottom:718.373333pt;}
.y72{bottom:718.693333pt;}
.y30{bottom:719.013333pt;}
.ye{bottom:726.853333pt;}
.y54{bottom:745.253333pt;}
.y71{bottom:745.573333pt;}
.y2f{bottom:745.893333pt;}
.yd{bottom:753.733333pt;}
.y53{bottom:771.973333pt;}
.y70{bottom:772.453333pt;}
.y2e{bottom:772.613333pt;}
.yc{bottom:780.613333pt;}
.y52{bottom:799.013333pt;}
.y6f{bottom:799.173333pt;}
.y2d{bottom:799.333333pt;}
.yb{bottom:812.613333pt;}
.y51{bottom:825.733333pt;}
.y6e{bottom:826.053333pt;}
.y2c{bottom:826.213333pt;}
.ya{bottom:847.813333pt;}
.y50{bottom:852.613333pt;}
.y2b{bottom:852.933333pt;}
.y6d{bottom:879.333333pt;}
.y4f{bottom:879.493333pt;}
.y2a{bottom:879.813333pt;}
.y9{bottom:882.853333pt;}
.y6c{bottom:906.213333pt;}
.y29{bottom:906.373333pt;}
.y8{bottom:915.653333pt;}
.y28{bottom:923.333333pt;}
.y7{bottom:945.893333pt;}
.y27{bottom:946.880000pt;}
.y26{bottom:972.160000pt;}
.y2{bottom:976.320000pt;}
.y1{bottom:994.240000pt;}
.y25{bottom:995.680000pt;}
.h8{height:40.280938pt;}
.h4{height:42.656250pt;}
.h1{height:44.648750pt;}
.h2{height:45.105313pt;}
.h3{height:49.996250pt;}
.h7{height:52.134375pt;}
.h5{height:54.343750pt;}
.h6{height:63.582187pt;}
.h9{height:65.781915pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.xb{left:133.786667pt;}
.x2{left:152.826667pt;}
.xa{left:167.706667pt;}
.x9{left:169.146667pt;}
.x6{left:175.546667pt;}
.x3{left:209.466667pt;}
.x7{left:337.666667pt;}
.xe{left:349.666667pt;}
.x8{left:445.053333pt;}
.x11{left:467.133333pt;}
.xf{left:512.253333pt;}
.x10{left:566.333333pt;}
.xd{left:575.773333pt;}
.x12{left:618.333333pt;}
.xc{left:621.573333pt;}
.x5{left:653.093333pt;}
.x4{left:737.253333pt;}
}




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