
    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_421c782ac9b65600168b91e8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_6ec991cdc411e42159612123.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a36b86b44155c6c7f379ec88.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_6baee6777a62d30765ff1aa8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b178167d8b3e7f3dca42f3cd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_02e21aae5951f9b1d3c7c72e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15366a6e1092c4d85d3c5355.woff')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.016000px;}
.ls10{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.678000px;}
.lse{letter-spacing:0.768000px;}
.ls4{letter-spacing:1.200000px;}
.lsd{letter-spacing:2.400000px;}
.ls11{letter-spacing:7.200000px;}
.ls17{letter-spacing:10.800000px;}
.ls6{letter-spacing:12.000000px;}
.lsc{letter-spacing:18.000000px;}
.ls14{letter-spacing:22.800000px;}
.lsb{letter-spacing:24.000000px;}
.ls9{letter-spacing:36.000000px;}
.lsa{letter-spacing:49.200000px;}
.ls16{letter-spacing:93.600000px;}
.ls13{letter-spacing:144.384000px;}
.ls5{letter-spacing:180.384000px;}
.ls8{letter-spacing:284.400000px;}
.ls7{letter-spacing:284.580000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
}
.ws1{word-spacing:-22.374000px;}
.ws4{word-spacing:-19.200000px;}
.ws5{word-spacing:-18.768000px;}
.ws8{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.384000px;}
.ws7{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.640000px;}
.ws6{word-spacing:-16.800000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-4.536000px;}
._e{margin-left:-3.492000px;}
._4{margin-left:-2.352000px;}
._1{margin-left:-1.056000px;}
._0{width:1.056000px;}
._2{width:2.238000px;}
._11{width:3.258000px;}
._5{width:5.280000px;}
._6{width:6.840000px;}
._15{width:7.932000px;}
._17{width:9.072000px;}
._16{width:10.224000px;}
._14{width:11.688000px;}
._18{width:12.744000px;}
._13{width:13.824000px;}
._7{width:15.264000px;}
._8{width:16.536000px;}
._1a{width:19.080000px;}
._a{width:20.088000px;}
._9{width:21.816000px;}
._c{width:23.544000px;}
._b{width:24.648000px;}
._12{width:25.800000px;}
._35{width:27.306000px;}
._20{width:28.752000px;}
._f{width:29.856000px;}
._19{width:31.932000px;}
._10{width:33.522000px;}
._31{width:35.274000px;}
._28{width:37.104000px;}
._2d{width:38.400000px;}
._21{width:39.528000px;}
._22{width:40.776000px;}
._23{width:42.228000px;}
._34{width:49.104000px;}
._33{width:50.256000px;}
._32{width:51.666000px;}
._2c{width:60.096000px;}
._2b{width:61.632000px;}
._2a{width:62.712000px;}
._1b{width:65.376000px;}
._1c{width:71.160000px;}
._24{width:78.456000px;}
._1d{width:82.992000px;}
._27{width:90.000000px;}
._37{width:93.720000px;}
._36{width:96.066000px;}
._1f{width:130.176000px;}
._3{width:142.279200px;}
._26{width:152.856000px;}
._25{width:170.064000px;}
._29{width:232.920000px;}
._30{width:284.724000px;}
._2f{width:286.974000px;}
._1e{width:323.352000px;}
._2e{width:393.912000px;}
.fc4{color:rgb(0,0,238);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:66.000000px;}
.fs1{font-size:69.600000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:14.100000px;}
.y66{bottom:14.400000px;}
.y52{bottom:14.700000px;}
.y5{bottom:27.037500px;}
.y48{bottom:29.700000px;}
.y54{bottom:29.715000px;}
.y50{bottom:29.992500px;}
.y6b{bottom:30.000000px;}
.y5e{bottom:30.300000px;}
.y3{bottom:30.937500px;}
.y4{bottom:42.000000px;}
.y49{bottom:45.300000px;}
.y55{bottom:45.315000px;}
.y5b{bottom:45.600000px;}
.y4d{bottom:45.637500px;}
.y58{bottom:61.200000px;}
.y4f{bottom:61.237500px;}
.y69{bottom:76.500000px;}
.y61{bottom:76.515000px;}
.y5a{bottom:76.800000px;}
.y4c{bottom:76.837500px;}
.y6a{bottom:92.100000px;}
.y63{bottom:92.115000px;}
.y4e{bottom:92.137500px;}
.y57{bottom:92.400000px;}
.y59{bottom:107.700000px;}
.y51{bottom:107.737500px;}
.y42{bottom:114.937500px;}
.y79{bottom:121.537500px;}
.y62{bottom:123.315000px;}
.y5d{bottom:123.330000px;}
.y4b{bottom:123.637500px;}
.y60{bottom:138.615000px;}
.y5c{bottom:138.945000px;}
.y41{bottom:146.137500px;}
.y67{bottom:154.200000px;}
.y78{bottom:156.930000px;}
.y24{bottom:162.030000px;}
.y65{bottom:169.845000px;}
.y40{bottom:177.075000px;}
.y77{bottom:187.875000px;}
.y23{bottom:193.275000px;}
.y64{bottom:200.745000px;}
.y3f{bottom:208.275000px;}
.y76{bottom:219.075000px;}
.y22{bottom:224.175000px;}
.y3e{bottom:239.175000px;}
.y75{bottom:249.975000px;}
.y47{bottom:252.375000px;}
.y21{bottom:255.375000px;}
.y3d{bottom:270.375000px;}
.y74{bottom:281.175000px;}
.y20{bottom:286.275000px;}
.y3c{bottom:301.275000px;}
.y73{bottom:312.075000px;}
.y1f{bottom:317.475000px;}
.y46{bottom:332.175000px;}
.y3b{bottom:332.475000px;}
.y72{bottom:343.320000px;}
.y1e{bottom:348.420000px;}
.y3a{bottom:363.405000px;}
.y71{bottom:374.205000px;}
.y1d{bottom:379.620000px;}
.y39{bottom:394.320000px;}
.y45{bottom:394.605000px;}
.y70{bottom:405.405000px;}
.y1c{bottom:410.505000px;}
.y38{bottom:425.505000px;}
.y6f{bottom:436.320000px;}
.y1b{bottom:441.705000px;}
.y37{bottom:456.705000px;}
.y6e{bottom:467.505000px;}
.y1a{bottom:472.605000px;}
.y36{bottom:487.620000px;}
.y6d{bottom:498.405000px;}
.y19{bottom:503.805000px;}
.y35{bottom:518.850000px;}
.y6c{bottom:529.350000px;}
.y18{bottom:534.750000px;}
.y68{bottom:549.450000px;}
.y34{bottom:549.750000px;}
.y17{bottom:565.650000px;}
.y33{bottom:580.950000px;}
.y16{bottom:596.850000px;}
.y32{bottom:611.850000px;}
.y15{bottom:628.050000px;}
.y31{bottom:643.050000px;}
.y7b{bottom:643.950000px;}
.y14{bottom:658.950000px;}
.y30{bottom:673.950000px;}
.y5f{bottom:678.180000px;}
.y13{bottom:690.195000px;}
.y2f{bottom:705.195000px;}
.y12{bottom:721.080000px;}
.y2e{bottom:736.080000px;}
.y11{bottom:752.280000px;}
.y7a{bottom:766.980000px;}
.y2d{bottom:767.280000px;}
.y10{bottom:783.195000px;}
.y2c{bottom:798.195000px;}
.yf{bottom:814.380000px;}
.y44{bottom:829.080000px;}
.y2b{bottom:829.380000px;}
.ye{bottom:845.325000px;}
.y2a{bottom:860.325000px;}
.yd{bottom:876.225000px;}
.y29{bottom:891.525000px;}
.y56{bottom:899.925000px;}
.yc{bottom:922.425000px;}
.yb{bottom:953.625000px;}
.ya{bottom:984.225000px;}
.y28{bottom:984.525000px;}
.y9{bottom:1015.455000px;}
.y27{bottom:1015.755000px;}
.y8{bottom:1046.370000px;}
.y43{bottom:1046.670000px;}
.y53{bottom:1059.855000px;}
.y7{bottom:1077.570000px;}
.y26{bottom:1077.870000px;}
.y6{bottom:1108.455000px;}
.y25{bottom:1108.755000px;}
.y2{bottom:1171.455000px;}
.y1{bottom:1215.300000px;}
.h4{height:50.047852px;}
.h5{height:50.700000px;}
.h3{height:58.351172px;}
.h9{height:62.100000px;}
.hf{height:65.645508px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.he{height:74.004654px;}
.h2{height:80.484375px;}
.h6{height:95.484375px;}
.hd{height:124.200000px;}
.ha{height:124.237500px;}
.hb{height:155.430000px;}
.hc{height:217.245000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:50.100000px;}
.w3{width:144.037500px;}
.w4{width:148.575000px;}
.w6{width:187.560000px;}
.w5{width:210.945000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.200000px;}
.x5{left:13.125000px;}
.x10{left:43.807500px;}
.xe{left:127.537500px;}
.xf{left:129.937500px;}
.x1{left:148.837500px;}
.x7{left:162.030000px;}
.xd{left:170.130000px;}
.x6{left:176.175000px;}
.xb{left:197.475000px;}
.x2{left:234.975000px;}
.x11{left:276.075000px;}
.xc{left:323.220000px;}
.x8{left:383.205000px;}
.xa{left:393.105000px;}
.x13{left:426.750000px;}
.x9{left:499.650000px;}
.x14{left:639.795000px;}
.x4{left:758.400000px;}
.x3{left:819.570000px;}
.x15{left:917.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.792000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.602667pt;}
.lse{letter-spacing:0.682667pt;}
.ls4{letter-spacing:1.066667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls11{letter-spacing:6.400000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls6{letter-spacing:10.666667pt;}
.lsc{letter-spacing:16.000000pt;}
.ls14{letter-spacing:20.266667pt;}
.lsb{letter-spacing:21.333333pt;}
.ls9{letter-spacing:32.000000pt;}
.lsa{letter-spacing:43.733333pt;}
.ls16{letter-spacing:83.200000pt;}
.ls13{letter-spacing:128.341333pt;}
.ls5{letter-spacing:160.341333pt;}
.ls8{letter-spacing:252.800000pt;}
.ls7{letter-spacing:252.960000pt;}
.ws1{word-spacing:-19.888000pt;}
.ws4{word-spacing:-17.066667pt;}
.ws5{word-spacing:-16.682667pt;}
.ws8{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.341333pt;}
.ws7{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.680000pt;}
.ws6{word-spacing:-14.933333pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-4.032000pt;}
._e{margin-left:-3.104000pt;}
._4{margin-left:-2.090667pt;}
._1{margin-left:-0.938667pt;}
._0{width:0.938667pt;}
._2{width:1.989333pt;}
._11{width:2.896000pt;}
._5{width:4.693333pt;}
._6{width:6.080000pt;}
._15{width:7.050667pt;}
._17{width:8.064000pt;}
._16{width:9.088000pt;}
._14{width:10.389333pt;}
._18{width:11.328000pt;}
._13{width:12.288000pt;}
._7{width:13.568000pt;}
._8{width:14.698667pt;}
._1a{width:16.960000pt;}
._a{width:17.856000pt;}
._9{width:19.392000pt;}
._c{width:20.928000pt;}
._b{width:21.909333pt;}
._12{width:22.933333pt;}
._35{width:24.272000pt;}
._20{width:25.557333pt;}
._f{width:26.538667pt;}
._19{width:28.384000pt;}
._10{width:29.797333pt;}
._31{width:31.354667pt;}
._28{width:32.981333pt;}
._2d{width:34.133333pt;}
._21{width:35.136000pt;}
._22{width:36.245333pt;}
._23{width:37.536000pt;}
._34{width:43.648000pt;}
._33{width:44.672000pt;}
._32{width:45.925333pt;}
._2c{width:53.418667pt;}
._2b{width:54.784000pt;}
._2a{width:55.744000pt;}
._1b{width:58.112000pt;}
._1c{width:63.253333pt;}
._24{width:69.738667pt;}
._1d{width:73.770667pt;}
._27{width:80.000000pt;}
._37{width:83.306667pt;}
._36{width:85.392000pt;}
._1f{width:115.712000pt;}
._3{width:126.470400pt;}
._26{width:135.872000pt;}
._25{width:151.168000pt;}
._29{width:207.040000pt;}
._30{width:253.088000pt;}
._2f{width:255.088000pt;}
._1e{width:287.424000pt;}
._2e{width:350.144000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:61.866667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:12.533333pt;}
.y66{bottom:12.800000pt;}
.y52{bottom:13.066667pt;}
.y5{bottom:24.033333pt;}
.y48{bottom:26.400000pt;}
.y54{bottom:26.413333pt;}
.y50{bottom:26.660000pt;}
.y6b{bottom:26.666667pt;}
.y5e{bottom:26.933333pt;}
.y3{bottom:27.500000pt;}
.y4{bottom:37.333333pt;}
.y49{bottom:40.266667pt;}
.y55{bottom:40.280000pt;}
.y5b{bottom:40.533333pt;}
.y4d{bottom:40.566667pt;}
.y58{bottom:54.400000pt;}
.y4f{bottom:54.433333pt;}
.y69{bottom:68.000000pt;}
.y61{bottom:68.013333pt;}
.y5a{bottom:68.266667pt;}
.y4c{bottom:68.300000pt;}
.y6a{bottom:81.866667pt;}
.y63{bottom:81.880000pt;}
.y4e{bottom:81.900000pt;}
.y57{bottom:82.133333pt;}
.y59{bottom:95.733333pt;}
.y51{bottom:95.766667pt;}
.y42{bottom:102.166667pt;}
.y79{bottom:108.033333pt;}
.y62{bottom:109.613333pt;}
.y5d{bottom:109.626667pt;}
.y4b{bottom:109.900000pt;}
.y60{bottom:123.213333pt;}
.y5c{bottom:123.506667pt;}
.y41{bottom:129.900000pt;}
.y67{bottom:137.066667pt;}
.y78{bottom:139.493333pt;}
.y24{bottom:144.026667pt;}
.y65{bottom:150.973333pt;}
.y40{bottom:157.400000pt;}
.y77{bottom:167.000000pt;}
.y23{bottom:171.800000pt;}
.y64{bottom:178.440000pt;}
.y3f{bottom:185.133333pt;}
.y76{bottom:194.733333pt;}
.y22{bottom:199.266667pt;}
.y3e{bottom:212.600000pt;}
.y75{bottom:222.200000pt;}
.y47{bottom:224.333333pt;}
.y21{bottom:227.000000pt;}
.y3d{bottom:240.333333pt;}
.y74{bottom:249.933333pt;}
.y20{bottom:254.466667pt;}
.y3c{bottom:267.800000pt;}
.y73{bottom:277.400000pt;}
.y1f{bottom:282.200000pt;}
.y46{bottom:295.266667pt;}
.y3b{bottom:295.533333pt;}
.y72{bottom:305.173333pt;}
.y1e{bottom:309.706667pt;}
.y3a{bottom:323.026667pt;}
.y71{bottom:332.626667pt;}
.y1d{bottom:337.440000pt;}
.y39{bottom:350.506667pt;}
.y45{bottom:350.760000pt;}
.y70{bottom:360.360000pt;}
.y1c{bottom:364.893333pt;}
.y38{bottom:378.226667pt;}
.y6f{bottom:387.840000pt;}
.y1b{bottom:392.626667pt;}
.y37{bottom:405.960000pt;}
.y6e{bottom:415.560000pt;}
.y1a{bottom:420.093333pt;}
.y36{bottom:433.440000pt;}
.y6d{bottom:443.026667pt;}
.y19{bottom:447.826667pt;}
.y35{bottom:461.200000pt;}
.y6c{bottom:470.533333pt;}
.y18{bottom:475.333333pt;}
.y68{bottom:488.400000pt;}
.y34{bottom:488.666667pt;}
.y17{bottom:502.800000pt;}
.y33{bottom:516.400000pt;}
.y16{bottom:530.533333pt;}
.y32{bottom:543.866667pt;}
.y15{bottom:558.266667pt;}
.y31{bottom:571.600000pt;}
.y7b{bottom:572.400000pt;}
.y14{bottom:585.733333pt;}
.y30{bottom:599.066667pt;}
.y5f{bottom:602.826667pt;}
.y13{bottom:613.506667pt;}
.y2f{bottom:626.840000pt;}
.y12{bottom:640.960000pt;}
.y2e{bottom:654.293333pt;}
.y11{bottom:668.693333pt;}
.y7a{bottom:681.760000pt;}
.y2d{bottom:682.026667pt;}
.y10{bottom:696.173333pt;}
.y2c{bottom:709.506667pt;}
.yf{bottom:723.893333pt;}
.y44{bottom:736.960000pt;}
.y2b{bottom:737.226667pt;}
.ye{bottom:751.400000pt;}
.y2a{bottom:764.733333pt;}
.yd{bottom:778.866667pt;}
.y29{bottom:792.466667pt;}
.y56{bottom:799.933333pt;}
.yc{bottom:819.933333pt;}
.yb{bottom:847.666667pt;}
.ya{bottom:874.866667pt;}
.y28{bottom:875.133333pt;}
.y9{bottom:902.626667pt;}
.y27{bottom:902.893333pt;}
.y8{bottom:930.106667pt;}
.y43{bottom:930.373333pt;}
.y53{bottom:942.093333pt;}
.y7{bottom:957.840000pt;}
.y26{bottom:958.106667pt;}
.y6{bottom:985.293333pt;}
.y25{bottom:985.560000pt;}
.y2{bottom:1041.293333pt;}
.y1{bottom:1080.266667pt;}
.h4{height:44.486979pt;}
.h5{height:45.066667pt;}
.h3{height:51.867708pt;}
.h9{height:55.200000pt;}
.hf{height:58.351562pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.he{height:65.781915pt;}
.h2{height:71.541667pt;}
.h6{height:84.875000pt;}
.hd{height:110.400000pt;}
.ha{height:110.433333pt;}
.hb{height:138.160000pt;}
.hc{height:193.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.533333pt;}
.w3{width:128.033333pt;}
.w4{width:132.066667pt;}
.w6{width:166.720000pt;}
.w5{width:187.506667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.066667pt;}
.x5{left:11.666667pt;}
.x10{left:38.940000pt;}
.xe{left:113.366667pt;}
.xf{left:115.500000pt;}
.x1{left:132.300000pt;}
.x7{left:144.026667pt;}
.xd{left:151.226667pt;}
.x6{left:156.600000pt;}
.xb{left:175.533333pt;}
.x2{left:208.866667pt;}
.x11{left:245.400000pt;}
.xc{left:287.306667pt;}
.x8{left:340.626667pt;}
.xa{left:349.426667pt;}
.x13{left:379.333333pt;}
.x9{left:444.133333pt;}
.x14{left:568.706667pt;}
.x4{left:674.133333pt;}
.x3{left:728.506667pt;}
.x15{left:815.200000pt;}
}




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