
    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_4cfcf8729530d27d04a34185.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_cf31774faae45ffccf6ff1b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_a6b51be04709c02cbc53271a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_f857a4748bc74e7ae0adf756.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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;}
.v2{vertical-align:2.160000px;}
.v1{vertical-align:8.640000px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.111000px;}
.lsb{letter-spacing:-0.080400px;}
.lsa{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.201600px;}
.ls0{letter-spacing:34.934400px;}
.ls1{letter-spacing:63.095040px;}
.ls9{letter-spacing:65.376000px;}
.ls6{letter-spacing:66.129120px;}
.ls3{letter-spacing:103.536000px;}
.ls2{letter-spacing:104.289120px;}
.ls8{letter-spacing:109.296000px;}
.ls7{letter-spacing:109.329120px;}
.ls4{letter-spacing:576.729120px;}
.ls5{letter-spacing:581.769120px;}
.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;}
}
.ws0{word-spacing:-3.127680px;}
.ws10{word-spacing:-2.962080px;}
.ws2{word-spacing:-2.085120px;}
.ws1{word-spacing:-2.004720px;}
.ws1a{word-spacing:0.000000px;}
.ws14{word-spacing:57.629160px;}
.ws5{word-spacing:62.413920px;}
.ws9{word-spacing:63.167040px;}
.wsf{word-spacing:70.589160px;}
.ws4{word-spacing:78.007680px;}
.ws3{word-spacing:93.905280px;}
.wsb{word-spacing:96.541920px;}
.ws6{word-spacing:99.389160px;}
.ws12{word-spacing:100.753920px;}
.ws17{word-spacing:101.327040px;}
.ws13{word-spacing:101.581920px;}
.ws7{word-spacing:101.761920px;}
.ws18{word-spacing:102.301920px;}
.ws8{word-spacing:102.481920px;}
.ws16{word-spacing:102.767040px;}
.wsa{word-spacing:103.709160px;}
.wsc{word-spacing:105.613920px;}
.ws11{word-spacing:105.793920px;}
.ws19{word-spacing:106.367040px;}
.wsd{word-spacing:107.087040px;}
.wse{word-spacing:190.958400px;}
.ws15{word-spacing:575.429160px;}
._0{margin-left:-1.036800px;}
._1{width:1.209600px;}
._33{width:17.885280px;}
._4{width:31.132800px;}
._2a{width:34.376160px;}
._58{width:39.402720px;}
._b{width:43.736160px;}
._3{width:45.163680px;}
._37{width:51.757920px;}
._34{width:53.219520px;}
._2{width:56.423520px;}
._57{width:57.827520px;}
._5c{width:59.807520px;}
._5a{width:65.936160px;}
._21{width:74.413440px;}
._a{width:76.929120px;}
._8{width:78.124320px;}
._25{width:80.082720px;}
._12{width:82.555200px;}
._36{width:84.334080px;}
._e{width:85.609440px;}
._5{width:89.241120px;}
._48{width:96.958080px;}
._54{width:99.234720px;}
._20{width:100.558080px;}
._1e{width:102.414480px;}
._16{width:105.300000px;}
._1c{width:107.038080px;}
._7{width:108.588960px;}
._9{width:110.737440px;}
._29{width:113.019840px;}
._11{width:116.619840px;}
._14{width:117.724320px;}
._4f{width:118.776960px;}
._24{width:120.849120px;}
._2f{width:122.044320px;}
._56{width:123.096960px;}
._15{width:125.478720px;}
._41{width:127.365600px;}
._42{width:128.769120px;}
._18{width:130.533120px;}
._32{width:132.459840px;}
._2c{width:138.506400px;}
._51{width:149.064960px;}
._6{width:165.708480px;}
._13{width:166.886400px;}
._47{width:172.212960px;}
._49{width:177.982560px;}
._27{width:182.524320px;}
._3f{width:186.124320px;}
._1d{width:188.082720px;}
._3b{width:190.362720px;}
._1a{width:194.094720px;}
._59{width:195.697920px;}
._3d{width:197.050080px;}
._39{width:198.414720px;}
._52{width:201.912960px;}
._19{width:207.234720px;}
._44{width:211.807200px;}
._2d{width:215.804640px;}
._4a{width:217.263360px;}
._17{width:219.648000px;}
._2e{width:223.687200px;}
._d{width:228.123840px;}
._10{width:230.551680px;}
._28{width:231.797280px;}
._5b{width:233.058480px;}
._4d{width:236.301600px;}
._45{width:238.016640px;}
._46{width:239.363040px;}
._35{width:242.453280px;}
._3e{width:243.799680px;}
._3c{width:247.452960px;}
._1f{width:252.383520px;}
._30{width:255.820800px;}
._38{width:266.090880px;}
._23{width:267.939840px;}
._4e{width:272.539200px;}
._1b{width:274.581120px;}
._31{width:279.618240px;}
._26{width:284.496960px;}
._40{width:287.078880px;}
._4c{width:291.830880px;}
._22{width:299.102880px;}
._2b{width:303.890400px;}
._4b{width:310.696320px;}
._c{width:312.896160px;}
._5d{width:320.317920px;}
._55{width:341.980320px;}
._53{width:345.253440px;}
._50{width:573.240240px;}
._43{width:577.628880px;}
._f{width:579.000240px;}
._3a{width:581.080800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:11.520000px;}
.fs2{font-size:15.840000px;}
.fs0{font-size:17.280000px;}
.y0{bottom:0.000000px;}
.y41{bottom:0.180000px;}
.y3f{bottom:0.360000px;}
.y3c{bottom:0.540000px;}
.yf{bottom:0.720000px;}
.y3{bottom:1.440000px;}
.y4f{bottom:2.520000px;}
.y5{bottom:3.240000px;}
.y8{bottom:3.420000px;}
.y6{bottom:3.960000px;}
.y4c{bottom:5.400000px;}
.y4d{bottom:5.760000px;}
.ye{bottom:6.120000px;}
.y2{bottom:7.380000px;}
.y4{bottom:7.740000px;}
.y4e{bottom:9.180000px;}
.y4a{bottom:10.800000px;}
.y56{bottom:12.960000px;}
.y48{bottom:16.920000px;}
.y44{bottom:28.980000px;}
.y53{bottom:34.920000px;}
.y3a{bottom:36.540000px;}
.y46{bottom:53.100000px;}
.y39{bottom:542.955000px;}
.y42{bottom:544.395000px;}
.y40{bottom:549.795000px;}
.y3e{bottom:555.195000px;}
.y3d{bottom:560.595000px;}
.y3b{bottom:565.995000px;}
.y38{bottom:586.335000px;}
.y37{bottom:598.395000px;}
.y36{bottom:610.455000px;}
.y49{bottom:621.795000px;}
.y35{bottom:622.515000px;}
.y34{bottom:634.605000px;}
.y47{bottom:645.945000px;}
.y33{bottom:646.665000px;}
.y32{bottom:658.725000px;}
.y31{bottom:670.785000px;}
.y45{bottom:682.125000px;}
.y30{bottom:682.845000px;}
.y2f{bottom:694.905000px;}
.y2e{bottom:706.965000px;}
.y2d{bottom:719.025000px;}
.y2c{bottom:731.085000px;}
.y2b{bottom:743.145000px;}
.y2a{bottom:755.205000px;}
.y29{bottom:767.265000px;}
.y28{bottom:779.325000px;}
.y43{bottom:790.665000px;}
.y27{bottom:791.385000px;}
.y26{bottom:803.445000px;}
.y25{bottom:815.505000px;}
.y24{bottom:827.565000px;}
.y23{bottom:839.625000px;}
.y54{bottom:850.965000px;}
.y22{bottom:851.685000px;}
.y21{bottom:863.745000px;}
.y20{bottom:875.805000px;}
.y1f{bottom:887.865000px;}
.y1e{bottom:899.925000px;}
.y1d{bottom:911.985000px;}
.y1c{bottom:924.045000px;}
.y1b{bottom:936.150000px;}
.y1a{bottom:948.210000px;}
.y52{bottom:959.550000px;}
.y19{bottom:960.270000px;}
.y18{bottom:972.330000px;}
.y17{bottom:984.390000px;}
.y16{bottom:996.450000px;}
.y15{bottom:1008.510000px;}
.y14{bottom:1020.570000px;}
.y51{bottom:1031.910000px;}
.y13{bottom:1032.630000px;}
.y12{bottom:1044.690000px;}
.y11{bottom:1056.750000px;}
.y10{bottom:1068.810000px;}
.yd{bottom:1080.870000px;}
.y50{bottom:1092.210000px;}
.yc{bottom:1092.930000px;}
.yb{bottom:1104.990000px;}
.ya{bottom:1117.050000px;}
.y9{bottom:1129.110000px;}
.y7{bottom:1141.170000px;}
.y55{bottom:1152.510000px;}
.y1{bottom:1153.230000px;}
.y4b{bottom:1166.730000px;}
.hb{height:3.960000px;}
.h4{height:10.001250px;}
.h6{height:10.620000px;}
.h9{height:10.656000px;}
.h2{height:12.780000px;}
.h10{height:13.500000px;}
.h8{height:13.728516px;}
.h7{height:13.751719px;}
.h3{height:15.001875px;}
.h5{height:18.641250px;}
.hf{height:24.156000px;}
.h13{height:27.720000px;}
.he{height:36.180000px;}
.hc{height:60.300000px;}
.h11{height:72.360000px;}
.hd{height:108.540000px;}
.h12{height:108.576000px;}
.ha{height:637.275000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:28.080000px;}
.w2{width:37.800000px;}
.w3{width:37.836000px;}
.w9{width:59.040000px;}
.wc{width:59.076000px;}
.w6{width:68.976000px;}
.wb{width:78.480000px;}
.w7{width:78.516000px;}
.wa{width:92.700000px;}
.w8{width:125.856000px;}
.w5{width:622.410000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:2.340000px;}
.xc{left:3.960000px;}
.x5{left:7.380000px;}
.x2{left:8.460000px;}
.x3{left:9.720000px;}
.x10{left:12.420000px;}
.x7{left:13.500000px;}
.x12{left:14.580000px;}
.x17{left:16.020000px;}
.x11{left:19.440000px;}
.x16{left:21.060000px;}
.xf{left:23.580000px;}
.x13{left:26.100000px;}
.x19{left:33.474000px;}
.xa{left:70.236000px;}
.x8{left:77.040000px;}
.x18{left:146.016000px;}
.x1{left:239.430000px;}
.x4{left:278.670000px;}
.x1a{left:317.235000px;}
.x9{left:350.175000px;}
.x6{left:396.435000px;}
.x1b{left:454.755000px;}
.xe{left:509.685000px;}
.xb{left:514.545000px;}
.xd{left:544.065000px;}
.x15{left:572.865000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v1{vertical-align:7.680000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.098667pt;}
.lsb{letter-spacing:-0.071467pt;}
.lsa{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.179200pt;}
.ls0{letter-spacing:31.052800pt;}
.ls1{letter-spacing:56.084480pt;}
.ls9{letter-spacing:58.112000pt;}
.ls6{letter-spacing:58.781440pt;}
.ls3{letter-spacing:92.032000pt;}
.ls2{letter-spacing:92.701440pt;}
.ls8{letter-spacing:97.152000pt;}
.ls7{letter-spacing:97.181440pt;}
.ls4{letter-spacing:512.648107pt;}
.ls5{letter-spacing:517.128107pt;}
.ws0{word-spacing:-2.780160pt;}
.ws10{word-spacing:-2.632960pt;}
.ws2{word-spacing:-1.853440pt;}
.ws1{word-spacing:-1.781973pt;}
.ws1a{word-spacing:0.000000pt;}
.ws14{word-spacing:51.225920pt;}
.ws5{word-spacing:55.479040pt;}
.ws9{word-spacing:56.148480pt;}
.wsf{word-spacing:62.745920pt;}
.ws4{word-spacing:69.340160pt;}
.ws3{word-spacing:83.471360pt;}
.wsb{word-spacing:85.815040pt;}
.ws6{word-spacing:88.345920pt;}
.ws12{word-spacing:89.559040pt;}
.ws17{word-spacing:90.068480pt;}
.ws13{word-spacing:90.295040pt;}
.ws7{word-spacing:90.455040pt;}
.ws18{word-spacing:90.935040pt;}
.ws8{word-spacing:91.095040pt;}
.ws16{word-spacing:91.348480pt;}
.wsa{word-spacing:92.185920pt;}
.wsc{word-spacing:93.879040pt;}
.ws11{word-spacing:94.039040pt;}
.ws19{word-spacing:94.548480pt;}
.wsd{word-spacing:95.188480pt;}
.wse{word-spacing:169.740800pt;}
.ws15{word-spacing:511.492587pt;}
._0{margin-left:-0.921600pt;}
._1{width:1.075200pt;}
._33{width:15.898027pt;}
._4{width:27.673600pt;}
._2a{width:30.556587pt;}
._58{width:35.024640pt;}
._b{width:38.876587pt;}
._3{width:40.145493pt;}
._37{width:46.007040pt;}
._34{width:47.306240pt;}
._2{width:50.154240pt;}
._57{width:51.402240pt;}
._5c{width:53.162240pt;}
._5a{width:58.609920pt;}
._21{width:66.145280pt;}
._a{width:68.381440pt;}
._8{width:69.443840pt;}
._25{width:71.184640pt;}
._12{width:73.382400pt;}
._36{width:74.963627pt;}
._e{width:76.097280pt;}
._5{width:79.325440pt;}
._48{width:86.184960pt;}
._54{width:88.208640pt;}
._20{width:89.384960pt;}
._1e{width:91.035093pt;}
._16{width:93.600000pt;}
._1c{width:95.144960pt;}
._7{width:96.523520pt;}
._9{width:98.433280pt;}
._29{width:100.462080pt;}
._11{width:103.662080pt;}
._14{width:104.643840pt;}
._4f{width:105.579520pt;}
._24{width:107.421440pt;}
._2f{width:108.483840pt;}
._56{width:109.419520pt;}
._15{width:111.536640pt;}
._41{width:113.213867pt;}
._42{width:114.461440pt;}
._18{width:116.029440pt;}
._32{width:117.742080pt;}
._2c{width:123.116800pt;}
._51{width:132.502187pt;}
._6{width:147.296427pt;}
._13{width:148.343467pt;}
._47{width:153.078187pt;}
._49{width:158.206720pt;}
._27{width:162.243840pt;}
._3f{width:165.443840pt;}
._1d{width:167.184640pt;}
._3b{width:169.211307pt;}
._1a{width:172.528640pt;}
._59{width:173.953707pt;}
._3d{width:175.155627pt;}
._39{width:176.368640pt;}
._52{width:179.478187pt;}
._19{width:184.208640pt;}
._44{width:188.273067pt;}
._2d{width:191.826347pt;}
._4a{width:193.122987pt;}
._17{width:195.242667pt;}
._2e{width:198.833067pt;}
._d{width:202.776747pt;}
._10{width:204.934827pt;}
._28{width:206.042027pt;}
._5b{width:207.163093pt;}
._4d{width:210.045867pt;}
._45{width:211.570347pt;}
._46{width:212.767147pt;}
._35{width:215.514027pt;}
._3e{width:216.710827pt;}
._3c{width:219.958187pt;}
._1f{width:224.340907pt;}
._30{width:227.396267pt;}
._38{width:236.525227pt;}
._23{width:238.168747pt;}
._4e{width:242.257067pt;}
._1b{width:244.072107pt;}
._31{width:248.549547pt;}
._26{width:252.886187pt;}
._40{width:255.181227pt;}
._4c{width:259.405227pt;}
._22{width:265.869227pt;}
._2b{width:270.124800pt;}
._4b{width:276.174507pt;}
._c{width:278.129920pt;}
._5d{width:284.727040pt;}
._55{width:303.982507pt;}
._53{width:306.891947pt;}
._50{width:509.546880pt;}
._43{width:513.447893pt;}
._f{width:514.666880pt;}
._3a{width:516.516267pt;}
.fs1{font-size:10.240000pt;}
.fs2{font-size:14.080000pt;}
.fs0{font-size:15.360000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:0.160000pt;}
.y3f{bottom:0.320000pt;}
.y3c{bottom:0.480000pt;}
.yf{bottom:0.640000pt;}
.y3{bottom:1.280000pt;}
.y4f{bottom:2.240000pt;}
.y5{bottom:2.880000pt;}
.y8{bottom:3.040000pt;}
.y6{bottom:3.520000pt;}
.y4c{bottom:4.800000pt;}
.y4d{bottom:5.120000pt;}
.ye{bottom:5.440000pt;}
.y2{bottom:6.560000pt;}
.y4{bottom:6.880000pt;}
.y4e{bottom:8.160000pt;}
.y4a{bottom:9.600000pt;}
.y56{bottom:11.520000pt;}
.y48{bottom:15.040000pt;}
.y44{bottom:25.760000pt;}
.y53{bottom:31.040000pt;}
.y3a{bottom:32.480000pt;}
.y46{bottom:47.200000pt;}
.y39{bottom:482.626667pt;}
.y42{bottom:483.906667pt;}
.y40{bottom:488.706667pt;}
.y3e{bottom:493.506667pt;}
.y3d{bottom:498.306667pt;}
.y3b{bottom:503.106667pt;}
.y38{bottom:521.186667pt;}
.y37{bottom:531.906667pt;}
.y36{bottom:542.626667pt;}
.y49{bottom:552.706667pt;}
.y35{bottom:553.346667pt;}
.y34{bottom:564.093333pt;}
.y47{bottom:574.173333pt;}
.y33{bottom:574.813333pt;}
.y32{bottom:585.533333pt;}
.y31{bottom:596.253333pt;}
.y45{bottom:606.333333pt;}
.y30{bottom:606.973333pt;}
.y2f{bottom:617.693333pt;}
.y2e{bottom:628.413333pt;}
.y2d{bottom:639.133333pt;}
.y2c{bottom:649.853333pt;}
.y2b{bottom:660.573333pt;}
.y2a{bottom:671.293333pt;}
.y29{bottom:682.013333pt;}
.y28{bottom:692.733333pt;}
.y43{bottom:702.813333pt;}
.y27{bottom:703.453333pt;}
.y26{bottom:714.173333pt;}
.y25{bottom:724.893333pt;}
.y24{bottom:735.613333pt;}
.y23{bottom:746.333333pt;}
.y54{bottom:756.413333pt;}
.y22{bottom:757.053333pt;}
.y21{bottom:767.773333pt;}
.y20{bottom:778.493333pt;}
.y1f{bottom:789.213333pt;}
.y1e{bottom:799.933333pt;}
.y1d{bottom:810.653333pt;}
.y1c{bottom:821.373333pt;}
.y1b{bottom:832.133333pt;}
.y1a{bottom:842.853333pt;}
.y52{bottom:852.933333pt;}
.y19{bottom:853.573333pt;}
.y18{bottom:864.293333pt;}
.y17{bottom:875.013333pt;}
.y16{bottom:885.733333pt;}
.y15{bottom:896.453333pt;}
.y14{bottom:907.173333pt;}
.y51{bottom:917.253333pt;}
.y13{bottom:917.893333pt;}
.y12{bottom:928.613333pt;}
.y11{bottom:939.333333pt;}
.y10{bottom:950.053333pt;}
.yd{bottom:960.773333pt;}
.y50{bottom:970.853333pt;}
.yc{bottom:971.493333pt;}
.yb{bottom:982.213333pt;}
.ya{bottom:992.933333pt;}
.y9{bottom:1003.653333pt;}
.y7{bottom:1014.373333pt;}
.y55{bottom:1024.453333pt;}
.y1{bottom:1025.093333pt;}
.y4b{bottom:1037.093333pt;}
.hb{height:3.520000pt;}
.h4{height:8.890000pt;}
.h6{height:9.440000pt;}
.h9{height:9.472000pt;}
.h2{height:11.360000pt;}
.h10{height:12.000000pt;}
.h8{height:12.203125pt;}
.h7{height:12.223750pt;}
.h3{height:13.335000pt;}
.h5{height:16.570000pt;}
.hf{height:21.472000pt;}
.h13{height:24.640000pt;}
.he{height:32.160000pt;}
.hc{height:53.600000pt;}
.h11{height:64.320000pt;}
.hd{height:96.480000pt;}
.h12{height:96.512000pt;}
.ha{height:566.466667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:24.960000pt;}
.w2{width:33.600000pt;}
.w3{width:33.632000pt;}
.w9{width:52.480000pt;}
.wc{width:52.512000pt;}
.w6{width:61.312000pt;}
.wb{width:69.760000pt;}
.w7{width:69.792000pt;}
.wa{width:82.400000pt;}
.w8{width:111.872000pt;}
.w5{width:553.253333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:2.080000pt;}
.xc{left:3.520000pt;}
.x5{left:6.560000pt;}
.x2{left:7.520000pt;}
.x3{left:8.640000pt;}
.x10{left:11.040000pt;}
.x7{left:12.000000pt;}
.x12{left:12.960000pt;}
.x17{left:14.240000pt;}
.x11{left:17.280000pt;}
.x16{left:18.720000pt;}
.xf{left:20.960000pt;}
.x13{left:23.200000pt;}
.x19{left:29.754667pt;}
.xa{left:62.432000pt;}
.x8{left:68.480000pt;}
.x18{left:129.792000pt;}
.x1{left:212.826667pt;}
.x4{left:247.706667pt;}
.x1a{left:281.986667pt;}
.x9{left:311.266667pt;}
.x6{left:352.386667pt;}
.x1b{left:404.226667pt;}
.xe{left:453.053333pt;}
.xb{left:457.373333pt;}
.xd{left:483.613333pt;}
.x15{left:509.213333pt;}
}




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