
    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_b24cdff0780bdc02e7a733d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_59caf02f4e5a0de3e4c6561e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_b8211958331313b3dbf00942.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_2e90d8f84a67fdd5effd0023.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_39c1791fc5090b399d0a96ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_bd8565429600095febe633a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_9cb1a8ae940a98dc18afdd2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908691;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_d8fa46e88fa1593c5bb99857.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_dac8581ba47bc7ec1d2a6c6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.844238;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);}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.320000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.002400px;}
.lse{letter-spacing:0.011400px;}
.ls15{letter-spacing:0.011520px;}
.lsc{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.160440px;}
.ls3{letter-spacing:0.161568px;}
.ls12{letter-spacing:0.204336px;}
.ls10{letter-spacing:0.205920px;}
.ls5{letter-spacing:0.239400px;}
.ls0{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.285120px;}
.lsd{letter-spacing:0.365904px;}
.ls13{letter-spacing:1.463400px;}
.ls14{letter-spacing:3.232800px;}
.lsa{letter-spacing:18.805800px;}
.lsb{letter-spacing:21.227400px;}
.ls9{letter-spacing:64.007400px;}
.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;}
}
.ws5{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws8{word-spacing:-12.245904px;}
.wsa{word-spacing:-12.165120px;}
.ws9{word-spacing:-12.084336px;}
.ws0{word-spacing:-12.041568px;}
.ws2{word-spacing:-12.040440px;}
.ws1{word-spacing:-11.880000px;}
.ws7{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-9.791940px;}
._9{margin-left:-1.003860px;}
._3{width:1.126920px;}
._1{width:2.397600px;}
._b{width:3.823200px;}
._d{width:4.851060px;}
._2{width:5.896800px;}
._0{width:7.791660px;}
._4{width:8.837160px;}
._c{width:10.029600px;}
._6{width:11.041860px;}
._7{width:12.168000px;}
._16{width:13.201080px;}
._10{width:14.311860px;}
._12{width:15.578280px;}
._e{width:16.876860px;}
._a{width:19.103280px;}
._8{width:20.401260px;}
._f{width:22.076400px;}
._17{width:23.097060px;}
._5{width:24.358260px;}
._15{width:25.696140px;}
._1a{width:28.087200px;}
._1b{width:29.938260px;}
._14{width:31.348800px;}
._19{width:33.926400px;}
._13{width:41.320800px;}
._18{width:198.000060px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs0{font-size:47.520000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.600000px;}
.y3a{bottom:3.960000px;}
.y63{bottom:4.320000px;}
.y1{bottom:18.000000px;}
.y7e{bottom:107.640045px;}
.y28{bottom:110.880045px;}
.y3c{bottom:123.480030px;}
.y84{bottom:124.560030px;}
.y5f{bottom:126.720045px;}
.y1f{bottom:135.000000px;}
.y7d{bottom:138.960000px;}
.y27{bottom:141.840000px;}
.y3b{bottom:144.360045px;}
.y83{bottom:145.080000px;}
.y5e{bottom:157.680000px;}
.y39{bottom:165.600000px;}
.y1e{bottom:165.960000px;}
.y7c{bottom:169.920000px;}
.y26{bottom:173.160000px;}
.y82{bottom:186.480000px;}
.y38{bottom:186.840000px;}
.y5d{bottom:188.640000px;}
.y1d{bottom:196.920000px;}
.y7b{bottom:200.880000px;}
.y25{bottom:204.120000px;}
.y81{bottom:207.360000px;}
.y37{bottom:208.080000px;}
.y5c{bottom:219.960000px;}
.y1c{bottom:227.880000px;}
.y35{bottom:230.760000px;}
.y7a{bottom:231.840000px;}
.y24{bottom:235.080000px;}
.y34{bottom:239.040000px;}
.y80{bottom:248.760000px;}
.y5b{bottom:250.920000px;}
.y1b{bottom:259.200000px;}
.y79{bottom:263.160000px;}
.y23{bottom:266.040000px;}
.y7f{bottom:269.280000px;}
.y33{bottom:270.360000px;}
.y5a{bottom:281.880000px;}
.y22{bottom:289.800000px;}
.y1a{bottom:290.160000px;}
.y78{bottom:294.120000px;}
.y9b{bottom:300.600000px;}
.y32{bottom:301.320000px;}
.y59{bottom:312.840000px;}
.y21{bottom:313.920000px;}
.y54{bottom:318.600000px;}
.y19{bottom:321.120000px;}
.y77{bottom:326.520000px;}
.y31{bottom:332.640000px;}
.y20{bottom:340.920000px;}
.y9a{bottom:342.000000px;}
.y58{bottom:344.160000px;}
.y53{bottom:349.920000px;}
.y18{bottom:352.080000px;}
.y76{bottom:358.200000px;}
.y99{bottom:362.520000px;}
.y30{bottom:363.600000px;}
.y57{bottom:375.120000px;}
.y52{bottom:380.880000px;}
.y17{bottom:383.400000px;}
.y75{bottom:389.160000px;}
.y2f{bottom:394.560000px;}
.y56{bottom:398.880000px;}
.y98{bottom:403.920000px;}
.y51{bottom:411.840000px;}
.y16{bottom:414.360000px;}
.y74{bottom:420.120000px;}
.y55{bottom:422.640000px;}
.y97{bottom:424.800000px;}
.y2e{bottom:425.520000px;}
.y50{bottom:442.800000px;}
.y15{bottom:445.320000px;}
.y2d{bottom:449.640000px;}
.y73{bottom:451.080000px;}
.y96{bottom:466.200000px;}
.y2c{bottom:473.400000px;}
.y4f{bottom:474.120000px;}
.y14{bottom:476.280000px;}
.y72{bottom:482.400000px;}
.y95{bottom:486.720000px;}
.y2b{bottom:497.160000px;}
.y4e{bottom:505.080000px;}
.y13{bottom:507.600000px;}
.y71{bottom:513.360000px;}
.y2a{bottom:520.920000px;}
.y94{bottom:528.120000px;}
.y4d{bottom:536.040000px;}
.y12{bottom:538.560000px;}
.y29{bottom:547.920000px;}
.y93{bottom:549.000000px;}
.y70{bottom:549.360000px;}
.y4c{bottom:567.000000px;}
.y11{bottom:569.520000px;}
.y6f{bottom:569.880000px;}
.y92{bottom:590.400000px;}
.y6e{bottom:590.760000px;}
.y4b{bottom:598.320000px;}
.y10{bottom:600.480000px;}
.y91{bottom:610.920000px;}
.y6d{bottom:611.280000px;}
.y4a{bottom:629.280000px;}
.yf{bottom:631.800000px;}
.y6c{bottom:632.160000px;}
.y90{bottom:652.320000px;}
.y6b{bottom:652.680000px;}
.y49{bottom:660.240000px;}
.ye{bottom:662.760000px;}
.y8f{bottom:673.200000px;}
.y6a{bottom:673.560000px;}
.y48{bottom:691.200000px;}
.yd{bottom:693.720000px;}
.y69{bottom:694.080000px;}
.y8e{bottom:714.600000px;}
.y68{bottom:714.960000px;}
.y47{bottom:722.520000px;}
.yc{bottom:724.680000px;}
.y8d{bottom:735.120000px;}
.y67{bottom:735.480000px;}
.y46{bottom:753.480000px;}
.yb{bottom:756.000000px;}
.y66{bottom:756.360000px;}
.y8c{bottom:776.520000px;}
.y65{bottom:776.880000px;}
.y45{bottom:784.440000px;}
.ya{bottom:786.960000px;}
.y8b{bottom:797.400000px;}
.y64{bottom:797.760000px;}
.y44{bottom:815.400000px;}
.y9{bottom:817.920000px;}
.y62{bottom:818.280000px;}
.y8a{bottom:838.440000px;}
.y61{bottom:839.160000px;}
.y43{bottom:846.720000px;}
.y8{bottom:848.880000px;}
.y89{bottom:859.320000px;}
.y60{bottom:861.480000px;}
.y42{bottom:877.680000px;}
.y7{bottom:879.840000px;}
.y88{bottom:900.720000px;}
.y41{bottom:908.640000px;}
.y6{bottom:911.160000px;}
.y87{bottom:921.240000px;}
.y40{bottom:939.600000px;}
.y5{bottom:942.120000px;}
.y3f{bottom:960.120000px;}
.y86{bottom:962.640000px;}
.y4{bottom:973.080000px;}
.y85{bottom:983.520000px;}
.y3e{bottom:996.480000px;}
.y3{bottom:1004.040000px;}
.y3d{bottom:1017.720000px;}
.y2{bottom:1141.560000px;}
.h6{height:20.519985px;}
.ha{height:20.520000px;}
.he{height:20.520030px;}
.hd{height:20.879970px;}
.h8{height:20.880000px;}
.hf{height:20.880015px;}
.h2{height:31.672266px;}
.hc{height:48.761719px;}
.h3{height:49.289063px;}
.h4{height:63.175781px;}
.h5{height:74.816016px;}
.h9{height:76.302362px;}
.h7{height:76.302422px;}
.hb{height:76.302482px;}
.h1{height:1151.640000px;}
.h0{height:1188.000000px;}
.wa{width:76.680000px;}
.w8{width:77.039985px;}
.w7{width:77.040000px;}
.w9{width:77.040030px;}
.w4{width:109.080000px;}
.w2{width:149.039985px;}
.w6{width:151.200000px;}
.w5{width:189.720000px;}
.w3{width:232.920000px;}
.w1{width:881.640000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:7.228200px;}
.x1b{left:9.515760px;}
.x22{left:11.752350px;}
.x29{left:16.008900px;}
.x1{left:18.000000px;}
.x28{left:22.259700px;}
.x26{left:23.998050px;}
.x1f{left:29.502150px;}
.x24{left:31.005000px;}
.x2e{left:32.659500px;}
.x1e{left:33.760200px;}
.x25{left:36.256350px;}
.x23{left:41.497200px;}
.x14{left:42.988950px;}
.x21{left:45.720000px;}
.x27{left:46.721850px;}
.x1d{left:48.717000px;}
.x1a{left:53.271900px;}
.x1c{left:58.750050px;}
.x36{left:66.502350px;}
.x20{left:67.503900px;}
.x34{left:69.002850px;}
.x35{left:71.002350px;}
.x16{left:87.749550px;}
.x3{left:113.760135px;}
.xc{left:127.510980px;}
.x13{left:131.400000px;}
.x6{left:136.969500px;}
.x11{left:140.760150px;}
.x4{left:168.128100px;}
.xd{left:187.012950px;}
.xa{left:190.247250px;}
.xe{left:213.252750px;}
.x7{left:259.979700px;}
.x2d{left:277.920000px;}
.xb{left:278.972850px;}
.x15{left:280.440000px;}
.x2b{left:331.771800px;}
.x8{left:333.153150px;}
.x2a{left:355.881600px;}
.x5{left:414.107700px;}
.xf{left:418.160850px;}
.x10{left:420.169200px;}
.x2f{left:432.000000px;}
.x9{left:453.659850px;}
.x30{left:509.040000px;}
.x17{left:513.360000px;}
.x31{left:586.080000px;}
.x19{left:622.440000px;}
.x32{left:663.120000px;}
.x2c{left:716.771850px;}
.x33{left:740.160000px;}
.x2{left:793.560000px;}
.x12{left:797.277450px;}
@media print{
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.840000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.002133pt;}
.lse{letter-spacing:0.010133pt;}
.ls15{letter-spacing:0.010240pt;}
.lsc{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.142613pt;}
.ls3{letter-spacing:0.143616pt;}
.ls12{letter-spacing:0.181632pt;}
.ls10{letter-spacing:0.183040pt;}
.ls5{letter-spacing:0.212800pt;}
.ls0{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.253440pt;}
.lsd{letter-spacing:0.325248pt;}
.ls13{letter-spacing:1.300800pt;}
.ls14{letter-spacing:2.873600pt;}
.lsa{letter-spacing:16.716267pt;}
.lsb{letter-spacing:18.868800pt;}
.ls9{letter-spacing:56.895467pt;}
.ws5{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws8{word-spacing:-10.885248pt;}
.wsa{word-spacing:-10.813440pt;}
.ws9{word-spacing:-10.741632pt;}
.ws0{word-spacing:-10.703616pt;}
.ws2{word-spacing:-10.702613pt;}
.ws1{word-spacing:-10.560000pt;}
.ws7{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-8.703947pt;}
._9{margin-left:-0.892320pt;}
._3{width:1.001707pt;}
._1{width:2.131200pt;}
._b{width:3.398400pt;}
._d{width:4.312053pt;}
._2{width:5.241600pt;}
._0{width:6.925920pt;}
._4{width:7.855253pt;}
._c{width:8.915200pt;}
._6{width:9.814987pt;}
._7{width:10.816000pt;}
._16{width:11.734293pt;}
._10{width:12.721653pt;}
._12{width:13.847360pt;}
._e{width:15.001653pt;}
._a{width:16.980693pt;}
._8{width:18.134453pt;}
._f{width:19.623467pt;}
._17{width:20.530720pt;}
._5{width:21.651787pt;}
._15{width:22.841013pt;}
._1a{width:24.966400pt;}
._1b{width:26.611787pt;}
._14{width:27.865600pt;}
._19{width:30.156800pt;}
._13{width:36.729600pt;}
._18{width:176.000053pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:3.200000pt;}
.y3a{bottom:3.520000pt;}
.y63{bottom:3.840000pt;}
.y1{bottom:16.000000pt;}
.y7e{bottom:95.680040pt;}
.y28{bottom:98.560040pt;}
.y3c{bottom:109.760027pt;}
.y84{bottom:110.720027pt;}
.y5f{bottom:112.640040pt;}
.y1f{bottom:120.000000pt;}
.y7d{bottom:123.520000pt;}
.y27{bottom:126.080000pt;}
.y3b{bottom:128.320040pt;}
.y83{bottom:128.960000pt;}
.y5e{bottom:140.160000pt;}
.y39{bottom:147.200000pt;}
.y1e{bottom:147.520000pt;}
.y7c{bottom:151.040000pt;}
.y26{bottom:153.920000pt;}
.y82{bottom:165.760000pt;}
.y38{bottom:166.080000pt;}
.y5d{bottom:167.680000pt;}
.y1d{bottom:175.040000pt;}
.y7b{bottom:178.560000pt;}
.y25{bottom:181.440000pt;}
.y81{bottom:184.320000pt;}
.y37{bottom:184.960000pt;}
.y5c{bottom:195.520000pt;}
.y1c{bottom:202.560000pt;}
.y35{bottom:205.120000pt;}
.y7a{bottom:206.080000pt;}
.y24{bottom:208.960000pt;}
.y34{bottom:212.480000pt;}
.y80{bottom:221.120000pt;}
.y5b{bottom:223.040000pt;}
.y1b{bottom:230.400000pt;}
.y79{bottom:233.920000pt;}
.y23{bottom:236.480000pt;}
.y7f{bottom:239.360000pt;}
.y33{bottom:240.320000pt;}
.y5a{bottom:250.560000pt;}
.y22{bottom:257.600000pt;}
.y1a{bottom:257.920000pt;}
.y78{bottom:261.440000pt;}
.y9b{bottom:267.200000pt;}
.y32{bottom:267.840000pt;}
.y59{bottom:278.080000pt;}
.y21{bottom:279.040000pt;}
.y54{bottom:283.200000pt;}
.y19{bottom:285.440000pt;}
.y77{bottom:290.240000pt;}
.y31{bottom:295.680000pt;}
.y20{bottom:303.040000pt;}
.y9a{bottom:304.000000pt;}
.y58{bottom:305.920000pt;}
.y53{bottom:311.040000pt;}
.y18{bottom:312.960000pt;}
.y76{bottom:318.400000pt;}
.y99{bottom:322.240000pt;}
.y30{bottom:323.200000pt;}
.y57{bottom:333.440000pt;}
.y52{bottom:338.560000pt;}
.y17{bottom:340.800000pt;}
.y75{bottom:345.920000pt;}
.y2f{bottom:350.720000pt;}
.y56{bottom:354.560000pt;}
.y98{bottom:359.040000pt;}
.y51{bottom:366.080000pt;}
.y16{bottom:368.320000pt;}
.y74{bottom:373.440000pt;}
.y55{bottom:375.680000pt;}
.y97{bottom:377.600000pt;}
.y2e{bottom:378.240000pt;}
.y50{bottom:393.600000pt;}
.y15{bottom:395.840000pt;}
.y2d{bottom:399.680000pt;}
.y73{bottom:400.960000pt;}
.y96{bottom:414.400000pt;}
.y2c{bottom:420.800000pt;}
.y4f{bottom:421.440000pt;}
.y14{bottom:423.360000pt;}
.y72{bottom:428.800000pt;}
.y95{bottom:432.640000pt;}
.y2b{bottom:441.920000pt;}
.y4e{bottom:448.960000pt;}
.y13{bottom:451.200000pt;}
.y71{bottom:456.320000pt;}
.y2a{bottom:463.040000pt;}
.y94{bottom:469.440000pt;}
.y4d{bottom:476.480000pt;}
.y12{bottom:478.720000pt;}
.y29{bottom:487.040000pt;}
.y93{bottom:488.000000pt;}
.y70{bottom:488.320000pt;}
.y4c{bottom:504.000000pt;}
.y11{bottom:506.240000pt;}
.y6f{bottom:506.560000pt;}
.y92{bottom:524.800000pt;}
.y6e{bottom:525.120000pt;}
.y4b{bottom:531.840000pt;}
.y10{bottom:533.760000pt;}
.y91{bottom:543.040000pt;}
.y6d{bottom:543.360000pt;}
.y4a{bottom:559.360000pt;}
.yf{bottom:561.600000pt;}
.y6c{bottom:561.920000pt;}
.y90{bottom:579.840000pt;}
.y6b{bottom:580.160000pt;}
.y49{bottom:586.880000pt;}
.ye{bottom:589.120000pt;}
.y8f{bottom:598.400000pt;}
.y6a{bottom:598.720000pt;}
.y48{bottom:614.400000pt;}
.yd{bottom:616.640000pt;}
.y69{bottom:616.960000pt;}
.y8e{bottom:635.200000pt;}
.y68{bottom:635.520000pt;}
.y47{bottom:642.240000pt;}
.yc{bottom:644.160000pt;}
.y8d{bottom:653.440000pt;}
.y67{bottom:653.760000pt;}
.y46{bottom:669.760000pt;}
.yb{bottom:672.000000pt;}
.y66{bottom:672.320000pt;}
.y8c{bottom:690.240000pt;}
.y65{bottom:690.560000pt;}
.y45{bottom:697.280000pt;}
.ya{bottom:699.520000pt;}
.y8b{bottom:708.800000pt;}
.y64{bottom:709.120000pt;}
.y44{bottom:724.800000pt;}
.y9{bottom:727.040000pt;}
.y62{bottom:727.360000pt;}
.y8a{bottom:745.280000pt;}
.y61{bottom:745.920000pt;}
.y43{bottom:752.640000pt;}
.y8{bottom:754.560000pt;}
.y89{bottom:763.840000pt;}
.y60{bottom:765.760000pt;}
.y42{bottom:780.160000pt;}
.y7{bottom:782.080000pt;}
.y88{bottom:800.640000pt;}
.y41{bottom:807.680000pt;}
.y6{bottom:809.920000pt;}
.y87{bottom:818.880000pt;}
.y40{bottom:835.200000pt;}
.y5{bottom:837.440000pt;}
.y3f{bottom:853.440000pt;}
.y86{bottom:855.680000pt;}
.y4{bottom:864.960000pt;}
.y85{bottom:874.240000pt;}
.y3e{bottom:885.760000pt;}
.y3{bottom:892.480000pt;}
.y3d{bottom:904.640000pt;}
.y2{bottom:1014.720000pt;}
.h6{height:18.239987pt;}
.ha{height:18.240000pt;}
.he{height:18.240027pt;}
.hd{height:18.559973pt;}
.h8{height:18.560000pt;}
.hf{height:18.560013pt;}
.h2{height:28.153125pt;}
.hc{height:43.343750pt;}
.h3{height:43.812500pt;}
.h4{height:56.156250pt;}
.h5{height:66.503125pt;}
.h9{height:67.824322pt;}
.h7{height:67.824375pt;}
.hb{height:67.824428pt;}
.h1{height:1023.680000pt;}
.h0{height:1056.000000pt;}
.wa{width:68.160000pt;}
.w8{width:68.479987pt;}
.w7{width:68.480000pt;}
.w9{width:68.480027pt;}
.w4{width:96.960000pt;}
.w2{width:132.479987pt;}
.w6{width:134.400000pt;}
.w5{width:168.640000pt;}
.w3{width:207.040000pt;}
.w1{width:783.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.425067pt;}
.x1b{left:8.458453pt;}
.x22{left:10.446533pt;}
.x29{left:14.230133pt;}
.x1{left:16.000000pt;}
.x28{left:19.786400pt;}
.x26{left:21.331600pt;}
.x1f{left:26.224133pt;}
.x24{left:27.560000pt;}
.x2e{left:29.030667pt;}
.x1e{left:30.009067pt;}
.x25{left:32.227867pt;}
.x23{left:36.886400pt;}
.x14{left:38.212400pt;}
.x21{left:40.640000pt;}
.x27{left:41.530533pt;}
.x1d{left:43.304000pt;}
.x1a{left:47.352800pt;}
.x1c{left:52.222267pt;}
.x36{left:59.113200pt;}
.x20{left:60.003467pt;}
.x34{left:61.335867pt;}
.x35{left:63.113200pt;}
.x16{left:77.999600pt;}
.x3{left:101.120120pt;}
.xc{left:113.343093pt;}
.x13{left:116.800000pt;}
.x6{left:121.750667pt;}
.x11{left:125.120133pt;}
.x4{left:149.447200pt;}
.xd{left:166.233733pt;}
.xa{left:169.108667pt;}
.xe{left:189.558000pt;}
.x7{left:231.093067pt;}
.x2d{left:247.040000pt;}
.xb{left:247.975867pt;}
.x15{left:249.280000pt;}
.x2b{left:294.908267pt;}
.x8{left:296.136133pt;}
.x2a{left:316.339200pt;}
.x5{left:368.095733pt;}
.xf{left:371.698533pt;}
.x10{left:373.483733pt;}
.x2f{left:384.000000pt;}
.x9{left:403.253200pt;}
.x30{left:452.480000pt;}
.x17{left:456.320000pt;}
.x31{left:520.960000pt;}
.x19{left:553.280000pt;}
.x32{left:589.440000pt;}
.x2c{left:637.130533pt;}
.x33{left:657.920000pt;}
.x2{left:705.386667pt;}
.x12{left:708.691067pt;}
}




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