
    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_51f6672749f973f9138720ac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_934cd1e37434a6d238e4b4a4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e102ecea298d5d3dca5d868.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_f4796214e2dd12971baf076e.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_4d5d99b712dc0f45640522eb.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_c08dcf5de5f9dbc8e7b3484e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_f3784e37cd54a7b483c1340f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5893682994c2f6469dae3f26.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2d6f1f1397f5d05e674f57c.woff2')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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.172080px;}
.ls17{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.354720px;}
.ls8{letter-spacing:0.360000px;}
.lse{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.440000px;}
.lsa{letter-spacing:4.860000px;}
.ls1c{letter-spacing:7.920000px;}
.ls1b{letter-spacing:8.040000px;}
.ls12{letter-spacing:16.740000px;}
.ls19{letter-spacing:18.000000px;}
.ls16{letter-spacing:18.144000px;}
.ls9{letter-spacing:19.980000px;}
.lsc{letter-spacing:22.860000px;}
.ls18{letter-spacing:24.480000px;}
.ls3{letter-spacing:27.900000px;}
.lsf{letter-spacing:36.540000px;}
.ls0{letter-spacing:43.200000px;}
.ls7{letter-spacing:48.780000px;}
.ls11{letter-spacing:54.144000px;}
.ls4{letter-spacing:191.484000px;}
.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:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-4.717440px;}
._1{margin-left:-1.179360px;}
._7{width:1.800000px;}
._a{width:2.880000px;}
._3c{width:4.080960px;}
._15{width:5.138640px;}
._8{width:6.233280px;}
._6{width:7.671360px;}
._5{width:8.856000px;}
._20{width:9.888720px;}
._1b{width:10.901520px;}
._b{width:12.096000px;}
._1d{width:14.098560px;}
._c{width:15.668640px;}
._35{width:16.763760px;}
._1e{width:17.858880px;}
._1f{width:18.990480px;}
._9{width:20.520000px;}
._3{width:22.080000px;}
._2{width:23.304000px;}
._23{width:25.272000px;}
._24{width:26.451360px;}
._1c{width:27.451920px;}
._4{width:28.584000px;}
._2a{width:29.652480px;}
._2b{width:30.747600px;}
._3a{width:32.095440px;}
._17{width:33.190560px;}
._18{width:34.369920px;}
._37{width:35.717760px;}
._33{width:36.812880px;}
._38{width:38.581920px;}
._19{width:39.845520px;}
._1a{width:40.856400px;}
._27{width:41.951520px;}
._13{width:42.962400px;}
._14{width:43.973280px;}
._3d{width:45.152640px;}
._3e{width:46.163520px;}
._2c{width:47.427120px;}
._31{width:48.522240px;}
._32{width:50.291280px;}
._10{width:52.481520px;}
._f{width:53.492400px;}
._36{width:54.587520px;}
._2e{width:56.230800px;}
._2d{width:57.367440px;}
._34{width:59.052240px;}
._2f{width:61.663680px;}
._40{width:64.752480px;}
._25{width:66.128400px;}
._26{width:67.223520px;}
._39{width:69.435840px;}
._12{width:71.268240px;}
._11{width:72.824880px;}
._30{width:74.089680px;}
._3f{width:75.668640px;}
._e{width:77.922000px;}
._d{width:79.017120px;}
._28{width:80.632320px;}
._16{width:82.555200px;}
._3b{width:93.506400px;}
._29{width:133.857360px;}
._22{width:177.662160px;}
._21{width:179.257440px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y6f{bottom:90.936000px;}
.y2f{bottom:92.736000px;}
.y54{bottom:98.676000px;}
.y6e{bottom:111.636000px;}
.y2e{bottom:120.456000px;}
.y53{bottom:126.396000px;}
.y6d{bottom:132.336000px;}
.y2d{bottom:148.356000px;}
.y6c{bottom:153.030000px;}
.y52{bottom:154.110000px;}
.y6b{bottom:173.730000px;}
.y2c{bottom:176.070000px;}
.y51{bottom:182.010000px;}
.y6a{bottom:194.430000px;}
.y2b{bottom:203.790000px;}
.y50{bottom:209.730000px;}
.y69{bottom:215.130000px;}
.y2a{bottom:231.690000px;}
.y68{bottom:235.830000px;}
.y4f{bottom:237.450000px;}
.y67{bottom:256.530000px;}
.y29{bottom:259.410000px;}
.y4e{bottom:265.170000px;}
.y66{bottom:277.230000px;}
.y28{bottom:287.175000px;}
.y4d{bottom:293.115000px;}
.y65{bottom:297.975000px;}
.y27{bottom:314.895000px;}
.y64{bottom:318.675000px;}
.y4c{bottom:320.835000px;}
.y63{bottom:339.375000px;}
.y26{bottom:342.795000px;}
.y4b{bottom:348.555000px;}
.y62{bottom:360.075000px;}
.y25{bottom:370.515000px;}
.y4a{bottom:376.275000px;}
.y61{bottom:380.775000px;}
.y24{bottom:398.235000px;}
.y60{bottom:401.475000px;}
.y49{bottom:404.175000px;}
.y5f{bottom:422.175000px;}
.y23{bottom:425.955000px;}
.y48{bottom:431.895000px;}
.y5e{bottom:442.875000px;}
.y7e{bottom:453.495000px;}
.y22{bottom:453.855000px;}
.y47{bottom:459.615000px;}
.y5d{bottom:463.575000px;}
.y21{bottom:481.575000px;}
.y5c{bottom:484.275000px;}
.y46{bottom:487.515000px;}
.y7d{bottom:489.675000px;}
.y5b{bottom:504.975000px;}
.y20{bottom:509.295000px;}
.y45{bottom:515.235000px;}
.y5a{bottom:525.675000px;}
.y7c{bottom:525.855000px;}
.y1f{bottom:537.195000px;}
.y44{bottom:542.955000px;}
.y59{bottom:546.375000px;}
.y7b{bottom:549.435000px;}
.y1e{bottom:564.945000px;}
.y58{bottom:567.105000px;}
.y7a{bottom:570.165000px;}
.y43{bottom:570.705000px;}
.y57{bottom:587.805000px;}
.y79{bottom:590.865000px;}
.y1d{bottom:592.665000px;}
.y42{bottom:598.605000px;}
.y56{bottom:608.505000px;}
.y78{bottom:611.565000px;}
.y1c{bottom:620.385000px;}
.y41{bottom:626.325000px;}
.y55{bottom:629.205000px;}
.y77{bottom:632.265000px;}
.y1b{bottom:648.285000px;}
.y76{bottom:652.965000px;}
.y40{bottom:654.045000px;}
.y75{bottom:673.665000px;}
.y1a{bottom:676.005000px;}
.y3f{bottom:681.945000px;}
.y74{bottom:694.365000px;}
.y19{bottom:698.505000px;}
.y3e{bottom:709.665000px;}
.y18{bottom:715.065000px;}
.y17{bottom:735.765000px;}
.y3d{bottom:737.385000px;}
.y16{bottom:756.465000px;}
.y3c{bottom:765.105000px;}
.y15{bottom:777.165000px;}
.y3b{bottom:793.005000px;}
.y14{bottom:797.865000px;}
.y13{bottom:818.565000px;}
.y3a{bottom:820.725000px;}
.y12{bottom:839.265000px;}
.y39{bottom:848.490000px;}
.y11{bottom:860.010000px;}
.y38{bottom:876.210000px;}
.y10{bottom:880.710000px;}
.yf{bottom:901.410000px;}
.y37{bottom:904.110000px;}
.ye{bottom:922.110000px;}
.y36{bottom:931.830000px;}
.yd{bottom:942.810000px;}
.y35{bottom:959.550000px;}
.y73{bottom:963.510000px;}
.yc{bottom:984.210000px;}
.y34{bottom:987.450000px;}
.yb{bottom:1004.910000px;}
.y33{bottom:1015.170000px;}
.ya{bottom:1025.610000px;}
.y32{bottom:1042.890000px;}
.y9{bottom:1046.310000px;}
.y8{bottom:1067.010000px;}
.y31{bottom:1070.610000px;}
.y7{bottom:1086.270000px;}
.y72{bottom:1087.710000px;}
.y30{bottom:1098.510000px;}
.y6{bottom:1102.110000px;}
.y71{bottom:1108.410000px;}
.y5{bottom:1126.230000px;}
.y70{bottom:1129.110000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h5{height:48.616875px;}
.he{height:52.066406px;}
.h9{height:52.971680px;}
.h8{height:59.343750px;}
.hb{height:59.436914px;}
.ha{height:60.917695px;}
.h7{height:70.628906px;}
.hd{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.680000px;}
.x1{left:84.959987px;}
.xd{left:117.035987px;}
.x4{left:121.355987px;}
.xc{left:138.095987px;}
.x9{left:198.929987px;}
.x5{left:221.069987px;}
.x8{left:241.049987px;}
.x7{left:339.374987px;}
.xa{left:369.974987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.xb{left:807.989987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.152960pt;}
.ls17{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.315307pt;}
.ls8{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.280000pt;}
.lsa{letter-spacing:4.320000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:7.146667pt;}
.ls12{letter-spacing:14.880000pt;}
.ls19{letter-spacing:16.000000pt;}
.ls16{letter-spacing:16.128000pt;}
.ls9{letter-spacing:17.760000pt;}
.lsc{letter-spacing:20.320000pt;}
.ls18{letter-spacing:21.760000pt;}
.ls3{letter-spacing:24.800000pt;}
.lsf{letter-spacing:32.480000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls7{letter-spacing:43.360000pt;}
.ls11{letter-spacing:48.128000pt;}
.ls4{letter-spacing:170.208000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-4.193280pt;}
._1{margin-left:-1.048320pt;}
._7{width:1.600000pt;}
._a{width:2.560000pt;}
._3c{width:3.627520pt;}
._15{width:4.567680pt;}
._8{width:5.540693pt;}
._6{width:6.818987pt;}
._5{width:7.872000pt;}
._20{width:8.789973pt;}
._1b{width:9.690240pt;}
._b{width:10.752000pt;}
._1d{width:12.532053pt;}
._c{width:13.927680pt;}
._35{width:14.901120pt;}
._1e{width:15.874560pt;}
._1f{width:16.880427pt;}
._9{width:18.240000pt;}
._3{width:19.626667pt;}
._2{width:20.714667pt;}
._23{width:22.464000pt;}
._24{width:23.512320pt;}
._1c{width:24.401707pt;}
._4{width:25.408000pt;}
._2a{width:26.357760pt;}
._2b{width:27.331200pt;}
._3a{width:28.529280pt;}
._17{width:29.502720pt;}
._18{width:30.551040pt;}
._37{width:31.749120pt;}
._33{width:32.722560pt;}
._38{width:34.295040pt;}
._19{width:35.418240pt;}
._1a{width:36.316800pt;}
._27{width:37.290240pt;}
._13{width:38.188800pt;}
._14{width:39.087360pt;}
._3d{width:40.135680pt;}
._3e{width:41.034240pt;}
._2c{width:42.157440pt;}
._31{width:43.130880pt;}
._32{width:44.703360pt;}
._10{width:46.650240pt;}
._f{width:47.548800pt;}
._36{width:48.522240pt;}
._2e{width:49.982933pt;}
._2d{width:50.993280pt;}
._34{width:52.490880pt;}
._2f{width:54.812160pt;}
._40{width:57.557760pt;}
._25{width:58.780800pt;}
._26{width:59.754240pt;}
._39{width:61.720747pt;}
._12{width:63.349547pt;}
._11{width:64.733227pt;}
._30{width:65.857493pt;}
._3f{width:67.261013pt;}
._e{width:69.264000pt;}
._d{width:70.237440pt;}
._28{width:71.673173pt;}
._16{width:73.382400pt;}
._3b{width:83.116800pt;}
._29{width:118.984320pt;}
._22{width:157.921920pt;}
._21{width:159.339947pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y6f{bottom:80.832000pt;}
.y2f{bottom:82.432000pt;}
.y54{bottom:87.712000pt;}
.y6e{bottom:99.232000pt;}
.y2e{bottom:107.072000pt;}
.y53{bottom:112.352000pt;}
.y6d{bottom:117.632000pt;}
.y2d{bottom:131.872000pt;}
.y6c{bottom:136.026667pt;}
.y52{bottom:136.986667pt;}
.y6b{bottom:154.426667pt;}
.y2c{bottom:156.506667pt;}
.y51{bottom:161.786667pt;}
.y6a{bottom:172.826667pt;}
.y2b{bottom:181.146667pt;}
.y50{bottom:186.426667pt;}
.y69{bottom:191.226667pt;}
.y2a{bottom:205.946667pt;}
.y68{bottom:209.626667pt;}
.y4f{bottom:211.066667pt;}
.y67{bottom:228.026667pt;}
.y29{bottom:230.586667pt;}
.y4e{bottom:235.706667pt;}
.y66{bottom:246.426667pt;}
.y28{bottom:255.266667pt;}
.y4d{bottom:260.546667pt;}
.y65{bottom:264.866667pt;}
.y27{bottom:279.906667pt;}
.y64{bottom:283.266667pt;}
.y4c{bottom:285.186667pt;}
.y63{bottom:301.666667pt;}
.y26{bottom:304.706667pt;}
.y4b{bottom:309.826667pt;}
.y62{bottom:320.066667pt;}
.y25{bottom:329.346667pt;}
.y4a{bottom:334.466667pt;}
.y61{bottom:338.466667pt;}
.y24{bottom:353.986667pt;}
.y60{bottom:356.866667pt;}
.y49{bottom:359.266667pt;}
.y5f{bottom:375.266667pt;}
.y23{bottom:378.626667pt;}
.y48{bottom:383.906667pt;}
.y5e{bottom:393.666667pt;}
.y7e{bottom:403.106667pt;}
.y22{bottom:403.426667pt;}
.y47{bottom:408.546667pt;}
.y5d{bottom:412.066667pt;}
.y21{bottom:428.066667pt;}
.y5c{bottom:430.466667pt;}
.y46{bottom:433.346667pt;}
.y7d{bottom:435.266667pt;}
.y5b{bottom:448.866667pt;}
.y20{bottom:452.706667pt;}
.y45{bottom:457.986667pt;}
.y5a{bottom:467.266667pt;}
.y7c{bottom:467.426667pt;}
.y1f{bottom:477.506667pt;}
.y44{bottom:482.626667pt;}
.y59{bottom:485.666667pt;}
.y7b{bottom:488.386667pt;}
.y1e{bottom:502.173333pt;}
.y58{bottom:504.093333pt;}
.y7a{bottom:506.813333pt;}
.y43{bottom:507.293333pt;}
.y57{bottom:522.493333pt;}
.y79{bottom:525.213333pt;}
.y1d{bottom:526.813333pt;}
.y42{bottom:532.093333pt;}
.y56{bottom:540.893333pt;}
.y78{bottom:543.613333pt;}
.y1c{bottom:551.453333pt;}
.y41{bottom:556.733333pt;}
.y55{bottom:559.293333pt;}
.y77{bottom:562.013333pt;}
.y1b{bottom:576.253333pt;}
.y76{bottom:580.413333pt;}
.y40{bottom:581.373333pt;}
.y75{bottom:598.813333pt;}
.y1a{bottom:600.893333pt;}
.y3f{bottom:606.173333pt;}
.y74{bottom:617.213333pt;}
.y19{bottom:620.893333pt;}
.y3e{bottom:630.813333pt;}
.y18{bottom:635.613333pt;}
.y17{bottom:654.013333pt;}
.y3d{bottom:655.453333pt;}
.y16{bottom:672.413333pt;}
.y3c{bottom:680.093333pt;}
.y15{bottom:690.813333pt;}
.y3b{bottom:704.893333pt;}
.y14{bottom:709.213333pt;}
.y13{bottom:727.613333pt;}
.y3a{bottom:729.533333pt;}
.y12{bottom:746.013333pt;}
.y39{bottom:754.213333pt;}
.y11{bottom:764.453333pt;}
.y38{bottom:778.853333pt;}
.y10{bottom:782.853333pt;}
.yf{bottom:801.253333pt;}
.y37{bottom:803.653333pt;}
.ye{bottom:819.653333pt;}
.y36{bottom:828.293333pt;}
.yd{bottom:838.053333pt;}
.y35{bottom:852.933333pt;}
.y73{bottom:856.453333pt;}
.yc{bottom:874.853333pt;}
.y34{bottom:877.733333pt;}
.yb{bottom:893.253333pt;}
.y33{bottom:902.373333pt;}
.ya{bottom:911.653333pt;}
.y32{bottom:927.013333pt;}
.y9{bottom:930.053333pt;}
.y8{bottom:948.453333pt;}
.y31{bottom:951.653333pt;}
.y7{bottom:965.573333pt;}
.y72{bottom:966.853333pt;}
.y30{bottom:976.453333pt;}
.y6{bottom:979.653333pt;}
.y71{bottom:985.253333pt;}
.y5{bottom:1001.093333pt;}
.y70{bottom:1003.653333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h5{height:43.215000pt;}
.he{height:46.281250pt;}
.h9{height:47.085938pt;}
.h8{height:52.750000pt;}
.hb{height:52.832812pt;}
.ha{height:54.149062pt;}
.h7{height:62.781250pt;}
.hd{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:20.160000pt;}
.x1{left:75.519988pt;}
.xd{left:104.031988pt;}
.x4{left:107.871988pt;}
.xc{left:122.751988pt;}
.x9{left:176.826655pt;}
.x5{left:196.506655pt;}
.x8{left:214.266655pt;}
.x7{left:301.666655pt;}
.xa{left:328.866655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.xb{left:718.213322pt;}
}




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