
    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_d3a7c0619f4623aa944e050e.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_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_ed7b9e91cdf6527db9b2f423.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_94074606fb8590bcb3ba3183.woff2')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_24d87144e3c3324c7a74ffb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_caf9b635b1a3f9c1c373da70.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_19c49e242e5ed99be5b67be2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls6{letter-spacing:1.152000px;}
.ls4{letter-spacing:9.360000px;}
.ls1{letter-spacing:62.820000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-19.152000px;}
.wse{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.424000px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.836200px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-4.824000px;}
._4{margin-left:-3.528000px;}
._b{margin-left:-2.248560px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._a{width:3.344160px;}
._c{width:5.232000px;}
._d{width:6.384000px;}
._8{width:7.704000px;}
._9{width:9.072000px;}
._e{width:10.584000px;}
._7{width:12.048000px;}
._6{width:13.152000px;}
._f{width:14.200080px;}
._10{width:15.624000px;}
._13{width:16.896240px;}
._12{width:19.368000px;}
._16{width:20.880000px;}
._17{width:21.960000px;}
._18{width:23.164800px;}
._14{width:25.056000px;}
._15{width:26.496000px;}
._19{width:27.743520px;}
._11{width:29.352000px;}
._20{width:47.736000px;}
._21{width:49.423440px;}
._24{width:56.088000px;}
._5{width:64.411440px;}
._1a{width:88.488000px;}
._1b{width:97.560000px;}
._22{width:110.088000px;}
._23{width:111.168720px;}
._1f{width:153.944640px;}
._25{width:229.680000px;}
._26{width:231.212640px;}
._27{width:332.640000px;}
._1e{width:388.224000px;}
._1c{width:1001.172000px;}
._1d{width:2570.040000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:23.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.940000px;}
.y7{bottom:7.920000px;}
.y9{bottom:23.250000px;}
.y5{bottom:25.410000px;}
.y6{bottom:32.970000px;}
.y8{bottom:40.350000px;}
.y4{bottom:42.690000px;}
.yd{bottom:71.316000px;}
.yc{bottom:108.576000px;}
.y5a{bottom:138.276000px;}
.y45{bottom:148.536000px;}
.y6c{bottom:159.690000px;}
.y59{bottom:169.230000px;}
.y44{bottom:179.670000px;}
.y28{bottom:189.930000px;}
.y6b{bottom:190.650000px;}
.y58{bottom:200.370000px;}
.y43{bottom:210.630000px;}
.y27{bottom:221.070000px;}
.y6a{bottom:221.790000px;}
.y57{bottom:231.330000px;}
.y42{bottom:241.770000px;}
.y26{bottom:252.030000px;}
.y69{bottom:252.750000px;}
.y56{bottom:262.470000px;}
.y41{bottom:272.730000px;}
.y25{bottom:283.170000px;}
.y68{bottom:283.890000px;}
.y55{bottom:293.430000px;}
.y40{bottom:303.870000px;}
.y24{bottom:314.130000px;}
.y67{bottom:314.850000px;}
.y54{bottom:324.615000px;}
.y3f{bottom:334.875000px;}
.y23{bottom:345.135000px;}
.y66{bottom:346.035000px;}
.y53{bottom:355.575000px;}
.y5c{bottom:360.075000px;}
.y3e{bottom:365.835000px;}
.y22{bottom:376.275000px;}
.y65{bottom:376.995000px;}
.y52{bottom:386.535000px;}
.y3d{bottom:396.975000px;}
.y21{bottom:407.235000px;}
.y64{bottom:408.135000px;}
.y51{bottom:417.675000px;}
.y3c{bottom:427.935000px;}
.y20{bottom:438.375000px;}
.y63{bottom:439.095000px;}
.y50{bottom:448.635000px;}
.y3b{bottom:459.075000px;}
.y1f{bottom:469.335000px;}
.y62{bottom:470.235000px;}
.y71{bottom:474.015000px;}
.y4f{bottom:479.775000px;}
.y5d{bottom:484.275000px;}
.y3a{bottom:490.035000px;}
.y1e{bottom:500.475000px;}
.y4e{bottom:510.735000px;}
.y61{bottom:513.255000px;}
.y39{bottom:521.175000px;}
.y1d{bottom:531.075000px;}
.y4d{bottom:541.875000px;}
.y60{bottom:544.215000px;}
.y38{bottom:552.135000px;}
.y1c{bottom:562.575000px;}
.y4c{bottom:572.865000px;}
.y5f{bottom:575.385000px;}
.y37{bottom:583.305000px;}
.y1b{bottom:593.565000px;}
.y4b{bottom:604.005000px;}
.y5e{bottom:612.825000px;}
.y36{bottom:614.265000px;}
.y1a{bottom:624.705000px;}
.y4a{bottom:634.965000px;}
.y35{bottom:645.405000px;}
.y19{bottom:655.665000px;}
.y49{bottom:666.105000px;}
.y6d{bottom:670.605000px;}
.y34{bottom:676.365000px;}
.y18{bottom:693.645000px;}
.y48{bottom:697.065000px;}
.y33{bottom:707.145000px;}
.y5b{bottom:707.505000px;}
.y17{bottom:717.765000px;}
.y47{bottom:728.205000px;}
.y32{bottom:738.465000px;}
.y16{bottom:748.905000px;}
.y70{bottom:759.165000px;}
.y46{bottom:763.845000px;}
.y74{bottom:769.245000px;}
.y31{bottom:769.605000px;}
.y15{bottom:779.865000px;}
.y6f{bottom:790.305000px;}
.y30{bottom:800.565000px;}
.y14{bottom:813.165000px;}
.y6e{bottom:825.990000px;}
.y2f{bottom:831.750000px;}
.y13{bottom:849.390000px;}
.y2e{bottom:862.710000px;}
.y12{bottom:885.570000px;}
.y73{bottom:893.490000px;}
.y2d{bottom:893.850000px;}
.y11{bottom:921.750000px;}
.y2c{bottom:924.810000px;}
.y2b{bottom:955.950000px;}
.y10{bottom:957.930000px;}
.y72{bottom:986.550000px;}
.y2a{bottom:986.910000px;}
.yf{bottom:992.130000px;}
.y29{bottom:1018.050000px;}
.ye{bottom:1020.570000px;}
.yb{bottom:1034.430000px;}
.y3{bottom:1061.430000px;}
.y1{bottom:1117.620000px;}
.h1{height:17.280000px;}
.h5{height:23.319141px;}
.hb{height:47.344922px;}
.h3{height:56.196000px;}
.h2{height:58.651172px;}
.h7{height:60.226875px;}
.he{height:64.546875px;}
.h6{height:65.884219px;}
.hf{height:70.628906px;}
.h8{height:70.664062px;}
.hc{height:72.562500px;}
.ha{height:74.704922px;}
.h4{height:77.837760px;}
.h9{height:84.898125px;}
.hd{height:96.508125px;}
.h0{height:1188.000000px;}
.w3{width:86.256000px;}
.w6{width:90.000000px;}
.w5{width:118.836000px;}
.w2{width:208.830000px;}
.w4{width:470.055000px;}
.w1{width:556.305000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:13.320000px;}
.x3{left:21.240000px;}
.x8{left:25.020000px;}
.x6{left:42.120000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x1{left:76.500000px;}
.x10{left:84.959986px;}
.x11{left:94.535986px;}
.x13{left:101.915986px;}
.x7{left:148.545000px;}
.x5{left:162.750000px;}
.xe{left:203.969986px;}
.x1c{left:264.629986px;}
.x14{left:343.334986px;}
.x1e{left:352.694986px;}
.x16{left:362.234986px;}
.x12{left:372.674986px;}
.x1d{left:376.454986px;}
.x18{left:377.534986px;}
.x1a{left:392.294986px;}
.x17{left:397.514986px;}
.x1f{left:409.394986px;}
.x1b{left:451.514986px;}
.xd{left:455.114986px;}
.x15{left:458.894986px;}
.x2{left:632.805000px;}
.xf{left:725.909986px;}
.xa{left:751.650000px;}
.x19{left:794.669986px;}
.xc{left:833.009986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls6{letter-spacing:1.024000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls1{letter-spacing:55.840000pt;}
.ws6{word-spacing:-17.024000pt;}
.wse{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.521067pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-4.288000pt;}
._4{margin-left:-3.136000pt;}
._b{margin-left:-1.998720pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._a{width:2.972587pt;}
._c{width:4.650667pt;}
._d{width:5.674667pt;}
._8{width:6.848000pt;}
._9{width:8.064000pt;}
._e{width:9.408000pt;}
._7{width:10.709333pt;}
._6{width:11.690667pt;}
._f{width:12.622293pt;}
._10{width:13.888000pt;}
._13{width:15.018880pt;}
._12{width:17.216000pt;}
._16{width:18.560000pt;}
._17{width:19.520000pt;}
._18{width:20.590933pt;}
._14{width:22.272000pt;}
._15{width:23.552000pt;}
._19{width:24.660907pt;}
._11{width:26.090667pt;}
._20{width:42.432000pt;}
._21{width:43.931947pt;}
._24{width:49.856000pt;}
._5{width:57.254613pt;}
._1a{width:78.656000pt;}
._1b{width:86.720000pt;}
._22{width:97.856000pt;}
._23{width:98.816640pt;}
._1f{width:136.839680pt;}
._25{width:204.160000pt;}
._26{width:205.522347pt;}
._27{width:295.680000pt;}
._1e{width:345.088000pt;}
._1c{width:889.930667pt;}
._1d{width:2284.480000pt;}
.fs2{font-size:21.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.280000pt;}
.y7{bottom:7.040000pt;}
.y9{bottom:20.666667pt;}
.y5{bottom:22.586667pt;}
.y6{bottom:29.306667pt;}
.y8{bottom:35.866667pt;}
.y4{bottom:37.946667pt;}
.yd{bottom:63.392000pt;}
.yc{bottom:96.512000pt;}
.y5a{bottom:122.912000pt;}
.y45{bottom:132.032000pt;}
.y6c{bottom:141.946667pt;}
.y59{bottom:150.426667pt;}
.y44{bottom:159.706667pt;}
.y28{bottom:168.826667pt;}
.y6b{bottom:169.466667pt;}
.y58{bottom:178.106667pt;}
.y43{bottom:187.226667pt;}
.y27{bottom:196.506667pt;}
.y6a{bottom:197.146667pt;}
.y57{bottom:205.626667pt;}
.y42{bottom:214.906667pt;}
.y26{bottom:224.026667pt;}
.y69{bottom:224.666667pt;}
.y56{bottom:233.306667pt;}
.y41{bottom:242.426667pt;}
.y25{bottom:251.706667pt;}
.y68{bottom:252.346667pt;}
.y55{bottom:260.826667pt;}
.y40{bottom:270.106667pt;}
.y24{bottom:279.226667pt;}
.y67{bottom:279.866667pt;}
.y54{bottom:288.546667pt;}
.y3f{bottom:297.666667pt;}
.y23{bottom:306.786667pt;}
.y66{bottom:307.586667pt;}
.y53{bottom:316.066667pt;}
.y5c{bottom:320.066667pt;}
.y3e{bottom:325.186667pt;}
.y22{bottom:334.466667pt;}
.y65{bottom:335.106667pt;}
.y52{bottom:343.586667pt;}
.y3d{bottom:352.866667pt;}
.y21{bottom:361.986667pt;}
.y64{bottom:362.786667pt;}
.y51{bottom:371.266667pt;}
.y3c{bottom:380.386667pt;}
.y20{bottom:389.666667pt;}
.y63{bottom:390.306667pt;}
.y50{bottom:398.786667pt;}
.y3b{bottom:408.066667pt;}
.y1f{bottom:417.186667pt;}
.y62{bottom:417.986667pt;}
.y71{bottom:421.346667pt;}
.y4f{bottom:426.466667pt;}
.y5d{bottom:430.466667pt;}
.y3a{bottom:435.586667pt;}
.y1e{bottom:444.866667pt;}
.y4e{bottom:453.986667pt;}
.y61{bottom:456.226667pt;}
.y39{bottom:463.266667pt;}
.y1d{bottom:472.066667pt;}
.y4d{bottom:481.666667pt;}
.y60{bottom:483.746667pt;}
.y38{bottom:490.786667pt;}
.y1c{bottom:500.066667pt;}
.y4c{bottom:509.213333pt;}
.y5f{bottom:511.453333pt;}
.y37{bottom:518.493333pt;}
.y1b{bottom:527.613333pt;}
.y4b{bottom:536.893333pt;}
.y5e{bottom:544.733333pt;}
.y36{bottom:546.013333pt;}
.y1a{bottom:555.293333pt;}
.y4a{bottom:564.413333pt;}
.y35{bottom:573.693333pt;}
.y19{bottom:582.813333pt;}
.y49{bottom:592.093333pt;}
.y6d{bottom:596.093333pt;}
.y34{bottom:601.213333pt;}
.y18{bottom:616.573333pt;}
.y48{bottom:619.613333pt;}
.y33{bottom:628.573333pt;}
.y5b{bottom:628.893333pt;}
.y17{bottom:638.013333pt;}
.y47{bottom:647.293333pt;}
.y32{bottom:656.413333pt;}
.y16{bottom:665.693333pt;}
.y70{bottom:674.813333pt;}
.y46{bottom:678.973333pt;}
.y74{bottom:683.773333pt;}
.y31{bottom:684.093333pt;}
.y15{bottom:693.213333pt;}
.y6f{bottom:702.493333pt;}
.y30{bottom:711.613333pt;}
.y14{bottom:722.813333pt;}
.y6e{bottom:734.213333pt;}
.y2f{bottom:739.333333pt;}
.y13{bottom:755.013333pt;}
.y2e{bottom:766.853333pt;}
.y12{bottom:787.173333pt;}
.y73{bottom:794.213333pt;}
.y2d{bottom:794.533333pt;}
.y11{bottom:819.333333pt;}
.y2c{bottom:822.053333pt;}
.y2b{bottom:849.733333pt;}
.y10{bottom:851.493333pt;}
.y72{bottom:876.933333pt;}
.y2a{bottom:877.253333pt;}
.yf{bottom:881.893333pt;}
.y29{bottom:904.933333pt;}
.ye{bottom:907.173333pt;}
.yb{bottom:919.493333pt;}
.y3{bottom:943.493333pt;}
.y1{bottom:993.440000pt;}
.h1{height:15.360000pt;}
.h5{height:20.728125pt;}
.hb{height:42.084375pt;}
.h3{height:49.952000pt;}
.h2{height:52.134375pt;}
.h7{height:53.535000pt;}
.he{height:57.375000pt;}
.h6{height:58.563750pt;}
.hf{height:62.781250pt;}
.h8{height:62.812500pt;}
.hc{height:64.500000pt;}
.ha{height:66.404375pt;}
.h4{height:69.189120pt;}
.h9{height:75.465000pt;}
.hd{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w3{width:76.672000pt;}
.w6{width:80.000000pt;}
.w5{width:105.632000pt;}
.w2{width:185.626667pt;}
.w4{width:417.826667pt;}
.w1{width:494.493333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:11.840000pt;}
.x3{left:18.880000pt;}
.x8{left:22.240000pt;}
.x6{left:37.440000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x1{left:68.000000pt;}
.x10{left:75.519988pt;}
.x11{left:84.031988pt;}
.x13{left:90.591988pt;}
.x7{left:132.040000pt;}
.x5{left:144.666667pt;}
.xe{left:181.306655pt;}
.x1c{left:235.226655pt;}
.x14{left:305.186655pt;}
.x1e{left:313.506655pt;}
.x16{left:321.986655pt;}
.x12{left:331.266655pt;}
.x1d{left:334.626655pt;}
.x18{left:335.586655pt;}
.x1a{left:348.706655pt;}
.x17{left:353.346655pt;}
.x1f{left:363.906655pt;}
.x1b{left:401.346655pt;}
.xd{left:404.546655pt;}
.x15{left:407.906655pt;}
.x2{left:562.493333pt;}
.xf{left:645.253321pt;}
.xa{left:668.133333pt;}
.x19{left:706.373321pt;}
.xc{left:740.453321pt;}
}




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