
    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_52f9ecbb4d14cefbfc67d87b.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_06b362022bf5eab509f105a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088867;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_55d65e702305768a4e94ecf7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30360b0019df90de9d742bee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_aa84268239f1656298afd6dd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50f043af5728cd44b48ea4d4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a46652600edd9b4054129662.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.378600px;}
.ls8{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.004080px;}
.ls1{letter-spacing:0.028080px;}
.ls14{letter-spacing:0.190080px;}
.ls2{letter-spacing:0.208080px;}
.ls3{letter-spacing:0.341400px;}
.ls9{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.378600px;}
.ls12{letter-spacing:0.398400px;}
.ls15{letter-spacing:7.740000px;}
.lsf{letter-spacing:9.180000px;}
.ls17{letter-spacing:14.220000px;}
.ls1e{letter-spacing:18.540000px;}
.lse{letter-spacing:22.860000px;}
.lsd{letter-spacing:23.580000px;}
.lsc{letter-spacing:35.100000px;}
.ls11{letter-spacing:38.700000px;}
.ls13{letter-spacing:40.860000px;}
.ls10{letter-spacing:46.620000px;}
.lsb{letter-spacing:60.426720px;}
.ls1a{letter-spacing:80.261280px;}
.ls4{letter-spacing:119.340000px;}
.ls19{letter-spacing:122.021280px;}
.ls18{letter-spacing:126.540000px;}
.ls1f{letter-spacing:1409.880000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws8{word-spacing:-21.458400px;}
.wsc{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.410400px;}
.ws2{word-spacing:-21.401400px;}
.ws9{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsb{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.681400px;}
.wsa{word-spacing:-20.370000px;}
.ws6{word-spacing:0.000000px;}
._44{margin-left:-59.395200px;}
._15{margin-left:-5.559840px;}
._16{margin-left:-4.404720px;}
._11{margin-left:-3.369600px;}
._d{margin-left:-2.334480px;}
._0{margin-left:-1.263600px;}
._1{width:1.007040px;}
._f{width:2.026800px;}
._17{width:3.115680px;}
._a{width:4.127760px;}
._9{width:5.307120px;}
._12{width:6.991920px;}
._13{width:8.424000px;}
._1a{width:9.771840px;}
._3a{width:10.848720px;}
._32{width:11.896080px;}
._10{width:13.038960px;}
._4{width:14.690640px;}
._1c{width:16.562400px;}
._26{width:17.774640px;}
._30{width:19.161360px;}
._38{width:22.284720px;}
._20{width:23.289120px;}
._2b{width:24.766560px;}
._1d{width:25.861680px;}
._2a{width:28.051920px;}
._27{width:29.399760px;}
._18{width:30.831840px;}
._19{width:31.931040px;}
._3{width:33.961200px;}
._2{width:35.411520px;}
._33{width:37.371840px;}
._e{width:38.918880px;}
._2f{width:40.435200px;}
._8{width:42.250080px;}
._6{width:44.047920px;}
._22{width:45.265680px;}
._21{width:46.286640px;}
._29{width:47.679840px;}
._28{width:49.111920px;}
._2d{width:50.291280px;}
._2e{width:51.450240px;}
._5{width:52.968720px;}
._3f{width:54.147600px;}
._1f{width:55.935360px;}
._1e{width:57.198960px;}
._39{width:58.779120px;}
._2c{width:60.652800px;}
._3b{width:62.253360px;}
._c{width:63.938160px;}
._b{width:65.622960px;}
._1b{width:67.223520px;}
._31{width:68.824080px;}
._23{width:70.087680px;}
._24{width:71.519760px;}
._37{width:73.206480px;}
._35{width:74.213520px;}
._36{width:75.303840px;}
._3c{width:78.258960px;}
._3d{width:79.354080px;}
._43{width:83.714160px;}
._40{width:85.139760px;}
._42{width:90.183360px;}
._3e{width:94.264560px;}
._34{width:97.971120px;}
._25{width:105.805440px;}
._7{width:110.255520px;}
._14{width:119.368080px;}
._41{width:198.636720px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y2d{bottom:105.156000px;}
.y54{bottom:110.736000px;}
.y2c{bottom:129.276000px;}
.y53{bottom:134.856000px;}
.y2b{bottom:153.390000px;}
.y52{bottom:159.150000px;}
.y2a{bottom:177.510000px;}
.y51{bottom:183.270000px;}
.y29{bottom:201.630000px;}
.y50{bottom:207.390000px;}
.y28{bottom:225.750000px;}
.y4f{bottom:231.510000px;}
.y27{bottom:249.870000px;}
.y4e{bottom:255.630000px;}
.y26{bottom:274.215000px;}
.y4d{bottom:279.795000px;}
.y25{bottom:298.335000px;}
.y4c{bottom:303.915000px;}
.y24{bottom:322.455000px;}
.y4b{bottom:328.215000px;}
.y23{bottom:346.575000px;}
.y4a{bottom:352.335000px;}
.y22{bottom:370.695000px;}
.y49{bottom:376.455000px;}
.y21{bottom:394.815000px;}
.y48{bottom:400.575000px;}
.y20{bottom:419.115000px;}
.y47{bottom:424.695000px;}
.y1f{bottom:443.235000px;}
.y46{bottom:448.815000px;}
.y1e{bottom:467.355000px;}
.y45{bottom:473.115000px;}
.y1d{bottom:491.475000px;}
.y44{bottom:497.235000px;}
.y1c{bottom:515.595000px;}
.y43{bottom:521.355000px;}
.y1b{bottom:539.715000px;}
.y42{bottom:545.475000px;}
.y1a{bottom:564.045000px;}
.y41{bottom:569.625000px;}
.y19{bottom:588.165000px;}
.y40{bottom:593.745000px;}
.y18{bottom:612.285000px;}
.y3f{bottom:618.045000px;}
.y17{bottom:636.405000px;}
.y3e{bottom:642.165000px;}
.y16{bottom:660.525000px;}
.y3d{bottom:666.285000px;}
.y15{bottom:684.645000px;}
.y3c{bottom:690.405000px;}
.y14{bottom:708.765000px;}
.y3b{bottom:714.525000px;}
.y13{bottom:733.065000px;}
.y3a{bottom:738.645000px;}
.y12{bottom:757.185000px;}
.y39{bottom:762.765000px;}
.y38{bottom:787.065000px;}
.y11{bottom:799.305000px;}
.y37{bottom:811.185000px;}
.y10{bottom:823.425000px;}
.y36{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y35{bottom:859.470000px;}
.ye{bottom:871.710000px;}
.y34{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y33{bottom:907.710000px;}
.y32{bottom:932.010000px;}
.yc{bottom:938.130000px;}
.y31{bottom:956.130000px;}
.yb{bottom:962.250000px;}
.y30{bottom:980.250000px;}
.ya{bottom:986.370000px;}
.y2f{bottom:1004.370000px;}
.y9{bottom:1010.490000px;}
.y2e{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h3{height:73.545469px;}
.h5{height:74.244727px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h6{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.xe{left:108.215987px;}
.x6{left:112.895987px;}
.xa{left:121.535987px;}
.xf{left:129.275987px;}
.x9{left:131.615987px;}
.x11{left:139.355987px;}
.xd{left:147.995987px;}
.x3{left:167.969987px;}
.x8{left:178.949987px;}
.xb{left:253.289987px;}
.x4{left:267.149987px;}
.x7{left:336.494987px;}
.xc{left:357.014987px;}
.x10{left:383.294987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.003627pt;}
.ls1{letter-spacing:0.024960pt;}
.ls14{letter-spacing:0.168960pt;}
.ls2{letter-spacing:0.184960pt;}
.ls3{letter-spacing:0.303467pt;}
.ls9{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.336533pt;}
.ls12{letter-spacing:0.354133pt;}
.ls15{letter-spacing:6.880000pt;}
.lsf{letter-spacing:8.160000pt;}
.ls17{letter-spacing:12.640000pt;}
.ls1e{letter-spacing:16.480000pt;}
.lse{letter-spacing:20.320000pt;}
.lsd{letter-spacing:20.960000pt;}
.lsc{letter-spacing:31.200000pt;}
.ls11{letter-spacing:34.400000pt;}
.ls13{letter-spacing:36.320000pt;}
.ls10{letter-spacing:41.440000pt;}
.lsb{letter-spacing:53.712640pt;}
.ls1a{letter-spacing:71.343360pt;}
.ls4{letter-spacing:106.080000pt;}
.ls19{letter-spacing:108.463360pt;}
.ls18{letter-spacing:112.480000pt;}
.ls1f{letter-spacing:1253.226667pt;}
.ws7{word-spacing:-53.120000pt;}
.ws8{word-spacing:-19.074133pt;}
.wsc{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.031467pt;}
.ws2{word-spacing:-19.023467pt;}
.ws9{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.383467pt;}
.wsa{word-spacing:-18.106667pt;}
.ws6{word-spacing:0.000000pt;}
._44{margin-left:-52.795733pt;}
._15{margin-left:-4.942080pt;}
._16{margin-left:-3.915307pt;}
._11{margin-left:-2.995200pt;}
._d{margin-left:-2.075093pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.895147pt;}
._f{width:1.801600pt;}
._17{width:2.769493pt;}
._a{width:3.669120pt;}
._9{width:4.717440pt;}
._12{width:6.215040pt;}
._13{width:7.488000pt;}
._1a{width:8.686080pt;}
._3a{width:9.643307pt;}
._32{width:10.574293pt;}
._10{width:11.590187pt;}
._4{width:13.058347pt;}
._1c{width:14.722133pt;}
._26{width:15.799680pt;}
._30{width:17.032320pt;}
._38{width:19.808640pt;}
._20{width:20.701440pt;}
._2b{width:22.014720pt;}
._1d{width:22.988160pt;}
._2a{width:24.935040pt;}
._27{width:26.133120pt;}
._18{width:27.406080pt;}
._19{width:28.383147pt;}
._3{width:30.187733pt;}
._2{width:31.476907pt;}
._33{width:33.219413pt;}
._e{width:34.594560pt;}
._2f{width:35.942400pt;}
._8{width:37.555627pt;}
._6{width:39.153707pt;}
._22{width:40.236160pt;}
._21{width:41.143680pt;}
._29{width:42.382080pt;}
._28{width:43.655040pt;}
._2d{width:44.703360pt;}
._2e{width:45.733547pt;}
._5{width:47.083307pt;}
._3f{width:48.131200pt;}
._1f{width:49.720320pt;}
._1e{width:50.843520pt;}
._39{width:52.248107pt;}
._2c{width:53.913600pt;}
._3b{width:55.336320pt;}
._c{width:56.833920pt;}
._b{width:58.331520pt;}
._1b{width:59.754240pt;}
._31{width:61.176960pt;}
._23{width:62.300160pt;}
._24{width:63.573120pt;}
._37{width:65.072427pt;}
._35{width:65.967573pt;}
._36{width:66.936747pt;}
._3c{width:69.563520pt;}
._3d{width:70.536960pt;}
._43{width:74.412587pt;}
._40{width:75.679787pt;}
._42{width:80.162987pt;}
._3e{width:83.790720pt;}
._34{width:87.085440pt;}
._25{width:94.049280pt;}
._7{width:98.004907pt;}
._14{width:106.104960pt;}
._41{width:176.565973pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y2d{bottom:93.472000pt;}
.y54{bottom:98.432000pt;}
.y2c{bottom:114.912000pt;}
.y53{bottom:119.872000pt;}
.y2b{bottom:136.346667pt;}
.y52{bottom:141.466667pt;}
.y2a{bottom:157.786667pt;}
.y51{bottom:162.906667pt;}
.y29{bottom:179.226667pt;}
.y50{bottom:184.346667pt;}
.y28{bottom:200.666667pt;}
.y4f{bottom:205.786667pt;}
.y27{bottom:222.106667pt;}
.y4e{bottom:227.226667pt;}
.y26{bottom:243.746667pt;}
.y4d{bottom:248.706667pt;}
.y25{bottom:265.186667pt;}
.y4c{bottom:270.146667pt;}
.y24{bottom:286.626667pt;}
.y4b{bottom:291.746667pt;}
.y23{bottom:308.066667pt;}
.y4a{bottom:313.186667pt;}
.y22{bottom:329.506667pt;}
.y49{bottom:334.626667pt;}
.y21{bottom:350.946667pt;}
.y48{bottom:356.066667pt;}
.y20{bottom:372.546667pt;}
.y47{bottom:377.506667pt;}
.y1f{bottom:393.986667pt;}
.y46{bottom:398.946667pt;}
.y1e{bottom:415.426667pt;}
.y45{bottom:420.546667pt;}
.y1d{bottom:436.866667pt;}
.y44{bottom:441.986667pt;}
.y1c{bottom:458.306667pt;}
.y43{bottom:463.426667pt;}
.y1b{bottom:479.746667pt;}
.y42{bottom:484.866667pt;}
.y1a{bottom:501.373333pt;}
.y41{bottom:506.333333pt;}
.y19{bottom:522.813333pt;}
.y40{bottom:527.773333pt;}
.y18{bottom:544.253333pt;}
.y3f{bottom:549.373333pt;}
.y17{bottom:565.693333pt;}
.y3e{bottom:570.813333pt;}
.y16{bottom:587.133333pt;}
.y3d{bottom:592.253333pt;}
.y15{bottom:608.573333pt;}
.y3c{bottom:613.693333pt;}
.y14{bottom:630.013333pt;}
.y3b{bottom:635.133333pt;}
.y13{bottom:651.613333pt;}
.y3a{bottom:656.573333pt;}
.y12{bottom:673.053333pt;}
.y39{bottom:678.013333pt;}
.y38{bottom:699.613333pt;}
.y11{bottom:710.493333pt;}
.y37{bottom:721.053333pt;}
.y10{bottom:731.933333pt;}
.y36{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y35{bottom:763.973333pt;}
.ye{bottom:774.853333pt;}
.y34{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y33{bottom:806.853333pt;}
.y32{bottom:828.453333pt;}
.yc{bottom:833.893333pt;}
.y31{bottom:849.893333pt;}
.yb{bottom:855.333333pt;}
.y30{bottom:871.333333pt;}
.ya{bottom:876.773333pt;}
.y2f{bottom:892.773333pt;}
.y9{bottom:898.213333pt;}
.y2e{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h3{height:65.373750pt;}
.h5{height:65.995312pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h6{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.xe{left:96.191988pt;}
.x6{left:100.351988pt;}
.xa{left:108.031988pt;}
.xf{left:114.911988pt;}
.x9{left:116.991988pt;}
.x11{left:123.871988pt;}
.xd{left:131.551988pt;}
.x3{left:149.306655pt;}
.x8{left:159.066655pt;}
.xb{left:225.146655pt;}
.x4{left:237.466655pt;}
.x7{left:299.106655pt;}
.xc{left:317.346655pt;}
.x10{left:340.706655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
}




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