
    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_9b6849c510314cc79586c428.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977539;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_d43948c44943d5fa642180fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_4201ed4a5d190dd8ccf7e4a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.372070;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_4f1014d64ae253b4455156c0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_837787b8d80e74ad64aaf365.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e5e3afe046ecfa713ec9050.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_35a8d8a37bc249c34c941089.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_d13ad2af9ef199d422875fa2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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;}
.ls16{letter-spacing:-0.369600px;}
.lsa{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.129600px;}
.ls7{letter-spacing:-0.073200px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls14{letter-spacing:12.060000px;}
.ls13{letter-spacing:12.780000px;}
.ls3{letter-spacing:13.500000px;}
.ls10{letter-spacing:17.280000px;}
.ls4{letter-spacing:21.396000px;}
.lsf{letter-spacing:27.900000px;}
.ls12{letter-spacing:28.620000px;}
.lsd{letter-spacing:37.980000px;}
.ls11{letter-spacing:50.220000px;}
.ls2{letter-spacing:90.540000px;}
.ls17{letter-spacing:125.621280px;}
.lsb{letter-spacing:129.221280px;}
.ls9{letter-spacing:172.026720px;}
.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.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.690400px;}
.ws0{word-spacing:-19.596960px;}
.ws2{word-spacing:0.000000px;}
._3c{margin-left:-6.545520px;}
._3d{margin-left:-5.138640px;}
._2f{margin-left:-3.195600px;}
._2{margin-left:-1.095120px;}
._3{width:1.821120px;}
._40{width:3.210960px;}
._16{width:4.633200px;}
._17{width:5.644080px;}
._11{width:6.823440px;}
._10{width:7.834320px;}
._15{width:8.929440px;}
._3f{width:10.418880px;}
._14{width:11.456640px;}
._35{width:12.514080px;}
._c{width:14.044080px;}
._32{width:15.920400px;}
._31{width:17.100720px;}
._1a{width:20.049120px;}
._9{width:22.239360px;}
._d{width:23.755680px;}
._39{width:25.056480px;}
._12{width:26.704080px;}
._2d{width:27.883440px;}
._34{width:28.914960px;}
._38{width:31.674240px;}
._26{width:34.285680px;}
._27{width:35.296560px;}
._2c{width:37.848960px;}
._2e{width:39.761280px;}
._1d{width:40.772160px;}
._3e{width:46.079280px;}
._5{width:47.342880px;}
._6{width:48.722880px;}
._1b{width:50.375520px;}
._1c{width:51.723360px;}
._2a{width:54.614640px;}
._13{width:56.019600px;}
._37{width:58.209840px;}
._36{width:59.473440px;}
._e{width:61.663680px;}
._f{width:63.347280px;}
._33{width:64.780560px;}
._29{width:70.340400px;}
._18{width:72.666720px;}
._19{width:73.690560px;}
._7{width:74.889360px;}
._8{width:76.152960px;}
._23{width:78.427440px;}
._4{width:90.055920px;}
._30{width:101.761920px;}
._a{width:110.354400px;}
._b{width:111.365280px;}
._24{width:116.672400px;}
._20{width:122.653440px;}
._3a{width:128.718720px;}
._28{width:130.656240px;}
._22{width:202.428720px;}
._25{width:227.869200px;}
._1f{width:230.480640px;}
._1e{width:257.690160px;}
._0{width:292.222560px;}
._21{width:309.666240px;}
._2b{width:361.052640px;}
._3b{width:843.240000px;}
._1{width:1555.426560px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,153,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:8.100000px;}
.y40{bottom:8.280000px;}
.y8{bottom:10.835850px;}
.y7{bottom:32.616000px;}
.y3a{bottom:35.820000px;}
.y45{bottom:35.865000px;}
.y3f{bottom:36.000000px;}
.y6{bottom:54.936000px;}
.y39{bottom:63.720000px;}
.y44{bottom:63.765000px;}
.y35{bottom:88.236000px;}
.y38{bottom:91.440000px;}
.y3e{bottom:91.470000px;}
.y43{bottom:91.485000px;}
.y48{bottom:93.456000px;}
.y34{bottom:105.336000px;}
.y47{bottom:106.056000px;}
.y33{bottom:110.556000px;}
.y37{bottom:119.160000px;}
.y3d{bottom:119.370000px;}
.y32{bottom:122.616000px;}
.y31{bottom:127.836000px;}
.y30{bottom:140.616000px;}
.y2a{bottom:178.050000px;}
.y2e{bottom:192.090000px;}
.y2f{bottom:199.650000px;}
.y29{bottom:205.770000px;}
.y2d{bottom:219.810000px;}
.y28{bottom:233.490000px;}
.y2c{bottom:247.710000px;}
.y27{bottom:261.390000px;}
.y42{bottom:268.050000px;}
.y26{bottom:289.155000px;}
.y25{bottom:316.875000px;}
.y24{bottom:344.775000px;}
.y23{bottom:372.495000px;}
.y41{bottom:379.875000px;}
.y22{bottom:400.215000px;}
.y21{bottom:427.935000px;}
.y20{bottom:455.835000px;}
.y1f{bottom:483.555000px;}
.y3c{bottom:491.655000px;}
.y1e{bottom:511.275000px;}
.y1d{bottom:538.995000px;}
.y1c{bottom:566.925000px;}
.y1b{bottom:594.645000px;}
.y1a{bottom:622.365000px;}
.y36{bottom:631.365000px;}
.y19{bottom:650.265000px;}
.y18{bottom:677.985000px;}
.y17{bottom:705.705000px;}
.y16{bottom:733.425000px;}
.y15{bottom:761.325000px;}
.y14{bottom:789.045000px;}
.y13{bottom:816.765000px;}
.y46{bottom:824.325000px;}
.y12{bottom:844.665000px;}
.y11{bottom:872.430000px;}
.y10{bottom:900.150000px;}
.yf{bottom:927.870000px;}
.ye{bottom:955.770000px;}
.yd{bottom:983.490000px;}
.yc{bottom:1011.210000px;}
.yb{bottom:1038.930000px;}
.ya{bottom:1066.830000px;}
.y2b{bottom:1074.390000px;}
.y9{bottom:1094.550000px;}
.y5{bottom:1118.130000px;}
.y4{bottom:1139.040000px;}
.y3{bottom:1162.620000px;}
.y2{bottom:1186.200000px;}
.y1{bottom:1210.680000px;}
.hc{height:38.158594px;}
.ha{height:52.998047px;}
.h5{height:53.424000px;}
.he{height:58.651172px;}
.h9{height:59.066719px;}
.h6{height:59.436914px;}
.hd{height:59.439023px;}
.h2{height:67.169883px;}
.hb{height:70.664062px;}
.h4{height:71.824219px;}
.h3{height:76.355508px;}
.h8{height:82.676953px;}
.h7{height:84.898125px;}
.h13{height:86.585445px;}
.h11{height:111.060000px;}
.h12{height:111.096000px;}
.hf{height:138.780000px;}
.h10{height:138.996000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:322.410000px;}
.w5{width:322.995000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x6{left:42.479987px;}
.x5{left:84.959987px;}
.x7{left:87.299987px;}
.x14{left:89.855987px;}
.xb{left:99.575987px;}
.x1{left:106.415987px;}
.x15{left:123.516000px;}
.x8{left:140.795987px;}
.x10{left:170.129987px;}
.x1a{left:267.509987px;}
.xa{left:275.429987px;}
.x17{left:298.694973px;}
.x13{left:301.034987px;}
.x18{left:305.534987px;}
.xc{left:342.254987px;}
.x19{left:388.334987px;}
.xd{left:402.374987px;}
.x11{left:406.514973px;}
.x12{left:413.354987px;}
.x9{left:446.474987px;}
.xe{left:468.614973px;}
.xf{left:475.484987px;}
.x2{left:550.544987px;}
.x3{left:632.084987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.328533pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.115200pt;}
.ls7{letter-spacing:-0.065067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls14{letter-spacing:10.720000pt;}
.ls13{letter-spacing:11.360000pt;}
.ls3{letter-spacing:12.000000pt;}
.ls10{letter-spacing:15.360000pt;}
.ls4{letter-spacing:19.018667pt;}
.lsf{letter-spacing:24.800000pt;}
.ls12{letter-spacing:25.440000pt;}
.lsd{letter-spacing:33.760000pt;}
.ls11{letter-spacing:44.640000pt;}
.ls2{letter-spacing:80.480000pt;}
.ls17{letter-spacing:111.663360pt;}
.lsb{letter-spacing:114.863360pt;}
.ls9{letter-spacing:152.912640pt;}
.ws3{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.391467pt;}
.ws0{word-spacing:-17.419520pt;}
.ws2{word-spacing:0.000000pt;}
._3c{margin-left:-5.818240pt;}
._3d{margin-left:-4.567680pt;}
._2f{margin-left:-2.840533pt;}
._2{margin-left:-0.973440pt;}
._3{width:1.618773pt;}
._40{width:2.854187pt;}
._16{width:4.118400pt;}
._17{width:5.016960pt;}
._11{width:6.065280pt;}
._10{width:6.963840pt;}
._15{width:7.937280pt;}
._3f{width:9.261227pt;}
._14{width:10.183680pt;}
._35{width:11.123627pt;}
._c{width:12.483627pt;}
._32{width:14.151467pt;}
._31{width:15.200640pt;}
._1a{width:17.821440pt;}
._9{width:19.768320pt;}
._d{width:21.116160pt;}
._39{width:22.272427pt;}
._12{width:23.736960pt;}
._2d{width:24.785280pt;}
._34{width:25.702187pt;}
._38{width:28.154880pt;}
._26{width:30.476160pt;}
._27{width:31.374720pt;}
._2c{width:33.643520pt;}
._2e{width:35.343360pt;}
._1d{width:36.241920pt;}
._3e{width:40.959360pt;}
._5{width:42.082560pt;}
._6{width:43.309227pt;}
._1b{width:44.778240pt;}
._1c{width:45.976320pt;}
._2a{width:48.546347pt;}
._13{width:49.795200pt;}
._37{width:51.742080pt;}
._36{width:52.865280pt;}
._e{width:54.812160pt;}
._f{width:56.308693pt;}
._33{width:57.582720pt;}
._29{width:62.524800pt;}
._18{width:64.592640pt;}
._19{width:65.502720pt;}
._7{width:66.568320pt;}
._8{width:67.691520pt;}
._23{width:69.713280pt;}
._4{width:80.049707pt;}
._30{width:90.455040pt;}
._a{width:98.092800pt;}
._b{width:98.991360pt;}
._24{width:103.708800pt;}
._20{width:109.025280pt;}
._3a{width:114.416640pt;}
._28{width:116.138880pt;}
._22{width:179.936640pt;}
._25{width:202.550400pt;}
._1f{width:204.871680pt;}
._1e{width:229.057920pt;}
._0{width:259.753387pt;}
._21{width:275.258880pt;}
._2b{width:320.935680pt;}
._3b{width:749.546667pt;}
._1{width:1382.601387pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:7.200000pt;}
.y40{bottom:7.360000pt;}
.y8{bottom:9.631867pt;}
.y7{bottom:28.992000pt;}
.y3a{bottom:31.840000pt;}
.y45{bottom:31.880000pt;}
.y3f{bottom:32.000000pt;}
.y6{bottom:48.832000pt;}
.y39{bottom:56.640000pt;}
.y44{bottom:56.680000pt;}
.y35{bottom:78.432000pt;}
.y38{bottom:81.280000pt;}
.y3e{bottom:81.306667pt;}
.y43{bottom:81.320000pt;}
.y48{bottom:83.072000pt;}
.y34{bottom:93.632000pt;}
.y47{bottom:94.272000pt;}
.y33{bottom:98.272000pt;}
.y37{bottom:105.920000pt;}
.y3d{bottom:106.106667pt;}
.y32{bottom:108.992000pt;}
.y31{bottom:113.632000pt;}
.y30{bottom:124.992000pt;}
.y2a{bottom:158.266667pt;}
.y2e{bottom:170.746667pt;}
.y2f{bottom:177.466667pt;}
.y29{bottom:182.906667pt;}
.y2d{bottom:195.386667pt;}
.y28{bottom:207.546667pt;}
.y2c{bottom:220.186667pt;}
.y27{bottom:232.346667pt;}
.y42{bottom:238.266667pt;}
.y26{bottom:257.026667pt;}
.y25{bottom:281.666667pt;}
.y24{bottom:306.466667pt;}
.y23{bottom:331.106667pt;}
.y41{bottom:337.666667pt;}
.y22{bottom:355.746667pt;}
.y21{bottom:380.386667pt;}
.y20{bottom:405.186667pt;}
.y1f{bottom:429.826667pt;}
.y3c{bottom:437.026667pt;}
.y1e{bottom:454.466667pt;}
.y1d{bottom:479.106667pt;}
.y1c{bottom:503.933333pt;}
.y1b{bottom:528.573333pt;}
.y1a{bottom:553.213333pt;}
.y36{bottom:561.213333pt;}
.y19{bottom:578.013333pt;}
.y18{bottom:602.653333pt;}
.y17{bottom:627.293333pt;}
.y16{bottom:651.933333pt;}
.y15{bottom:676.733333pt;}
.y14{bottom:701.373333pt;}
.y13{bottom:726.013333pt;}
.y46{bottom:732.733333pt;}
.y12{bottom:750.813333pt;}
.y11{bottom:775.493333pt;}
.y10{bottom:800.133333pt;}
.yf{bottom:824.773333pt;}
.ye{bottom:849.573333pt;}
.yd{bottom:874.213333pt;}
.yc{bottom:898.853333pt;}
.yb{bottom:923.493333pt;}
.ya{bottom:948.293333pt;}
.y2b{bottom:955.013333pt;}
.y9{bottom:972.933333pt;}
.y5{bottom:993.893333pt;}
.y4{bottom:1012.480000pt;}
.y3{bottom:1033.440000pt;}
.y2{bottom:1054.400000pt;}
.y1{bottom:1076.160000pt;}
.hc{height:33.918750pt;}
.ha{height:47.109375pt;}
.h5{height:47.488000pt;}
.he{height:52.134375pt;}
.h9{height:52.503750pt;}
.h6{height:52.832812pt;}
.hd{height:52.834688pt;}
.h2{height:59.706562pt;}
.hb{height:62.812500pt;}
.h4{height:63.843750pt;}
.h3{height:67.871563pt;}
.h8{height:73.490625pt;}
.h7{height:75.465000pt;}
.h13{height:76.964840pt;}
.h11{height:98.720000pt;}
.h12{height:98.752000pt;}
.hf{height:123.360000pt;}
.h10{height:123.552000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:286.586667pt;}
.w5{width:287.106667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x6{left:37.759988pt;}
.x5{left:75.519988pt;}
.x7{left:77.599988pt;}
.x14{left:79.871988pt;}
.xb{left:88.511988pt;}
.x1{left:94.591988pt;}
.x15{left:109.792000pt;}
.x8{left:125.151988pt;}
.x10{left:151.226655pt;}
.x1a{left:237.786655pt;}
.xa{left:244.826655pt;}
.x17{left:265.506643pt;}
.x13{left:267.586655pt;}
.x18{left:271.586655pt;}
.xc{left:304.226655pt;}
.x19{left:345.186655pt;}
.xd{left:357.666655pt;}
.x11{left:361.346643pt;}
.x12{left:367.426655pt;}
.x9{left:396.866655pt;}
.xe{left:416.546643pt;}
.xf{left:422.653322pt;}
.x2{left:489.373322pt;}
.x3{left:561.853322pt;}
.x4{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; }
  