
    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_f435a17178521c02a674ca6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.758789;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_f580834e66922231fcc9c17f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c2377cb3a48e5a185059c94.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7ec60ff53886097c74c80700.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_803c753013c7c48358b6e7da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.196289;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_3cf57d16e94cd71e021e14e9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4a1dd139af58a2d5da247334.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061035;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_0570901acaca1d74bd6b65db.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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);}
.v9{vertical-align:-38.160000px;}
.v8{vertical-align:-22.320000px;}
.v1{vertical-align:-19.440000px;}
.vc{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.880000px;}
.v3{vertical-align:10.500000px;}
.v7{vertical-align:20.160000px;}
.v5{vertical-align:23.040000px;}
.v4{vertical-align:28.800000px;}
.v2{vertical-align:35.280000px;}
.vb{vertical-align:41.040000px;}
.va{vertical-align:56.160000px;}
.ls28{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.231600px;}
.ls20{letter-spacing:-0.093000px;}
.ls25{letter-spacing:-0.092400px;}
.ls1c{letter-spacing:-0.050400px;}
.ls1f{letter-spacing:-0.036720px;}
.ls1d{letter-spacing:-0.015840px;}
.ls1{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.083520px;}
.ls27{letter-spacing:0.116352px;}
.ls21{letter-spacing:0.159000px;}
.ls1a{letter-spacing:0.159120px;}
.lsf{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.228000px;}
.ls10{letter-spacing:0.229200px;}
.ls32{letter-spacing:0.278400px;}
.ls19{letter-spacing:0.355680px;}
.ls2c{letter-spacing:0.558000px;}
.ls2f{letter-spacing:3.744000px;}
.ls24{letter-spacing:13.266720px;}
.lsa{letter-spacing:16.819200px;}
.ls9{letter-spacing:17.539200px;}
.ls12{letter-spacing:19.310400px;}
.ls1b{letter-spacing:19.467360px;}
.ls15{letter-spacing:19.658880px;}
.ls13{letter-spacing:20.030400px;}
.ls23{letter-spacing:20.621280px;}
.ls16{letter-spacing:20.907360px;}
.ls2b{letter-spacing:22.067280px;}
.ls29{letter-spacing:24.019200px;}
.ls17{letter-spacing:24.739200px;}
.ls22{letter-spacing:24.919200px;}
.lse{letter-spacing:26.720640px;}
.ls2d{letter-spacing:30.651840px;}
.ls4{letter-spacing:43.200000px;}
.ls8{letter-spacing:49.219200px;}
.ls2e{letter-spacing:49.427280px;}
.ls3{letter-spacing:50.263200px;}
.lsb{letter-spacing:77.623200px;}
.ls26{letter-spacing:83.910096px;}
.ls30{letter-spacing:84.014400px;}
.ls6{letter-spacing:84.038400px;}
.lsc{letter-spacing:84.050400px;}
.ls33{letter-spacing:90.441600px;}
.ls7{letter-spacing:90.453600px;}
.ls0{letter-spacing:104.263200px;}
.ls2a{letter-spacing:106.442640px;}
.ls14{letter-spacing:767.662320px;}
.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;}
}
.ws1c{word-spacing:-120.240000px;}
.ws5{word-spacing:-95.989200px;}
.wsd{word-spacing:-95.760000px;}
.wse{word-spacing:-95.723280px;}
.ws21{word-spacing:-76.811040px;}
.ws6{word-spacing:-75.371040px;}
.ws9{word-spacing:-73.931040px;}
.ws7{word-spacing:-69.840000px;}
.ws20{word-spacing:-68.652720px;}
.ws4{word-spacing:-37.871520px;}
.ws8{word-spacing:-37.124880px;}
.wsa{word-spacing:-24.636720px;}
.wsb{word-spacing:-21.924000px;}
.ws1f{word-spacing:-19.468512px;}
.wsc{word-spacing:-19.439280px;}
.ws12{word-spacing:-19.423440px;}
.ws10{word-spacing:-19.375512px;}
.ws22{word-spacing:-17.100720px;}
.ws2{word-spacing:-14.616000px;}
.ws1e{word-spacing:-14.328000px;}
.ws1a{word-spacing:-13.475952px;}
.ws19{word-spacing:-13.446720px;}
.ws11{word-spacing:-13.008240px;}
.ws1b{word-spacing:-10.962000px;}
.ws3{word-spacing:-0.252000px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.196560px;}
.ws16{word-spacing:1.445040px;}
.wsf{word-spacing:1.565040px;}
.ws15{word-spacing:174.681120px;}
.ws23{word-spacing:390.696000px;}
.ws1d{word-spacing:392.136000px;}
.ws14{word-spacing:405.945120px;}
.ws1{word-spacing:410.856000px;}
.ws18{word-spacing:775.251360px;}
.ws13{word-spacing:844.450080px;}
._c{margin-left:-7.768224px;}
._8{margin-left:-6.486480px;}
._5{margin-left:-4.968000px;}
._1{margin-left:-3.672000px;}
._d{margin-left:-2.646000px;}
._0{margin-left:-1.620000px;}
._2{width:1.017120px;}
._3{width:2.342880px;}
._7{width:3.850800px;}
._6{width:15.960000px;}
._b{width:18.130800px;}
._9{width:22.099200px;}
._4{width:23.798880px;}
._a{width:26.879760px;}
._f{width:30.093120px;}
._e{width:40.280400px;}
.fc3{color:rgb(16,72,98);}
.fc2{color:rgb(24,30,43);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(216,96,78);}
.fs12{font-size:43.920000px;}
.fs9{font-size:50.400000px;}
.fs13{font-size:54.000000px;}
.fs7{font-size:57.600000px;}
.fs15{font-size:57.744000px;}
.fse{font-size:64.080000px;}
.fs0{font-size:64.800000px;}
.fs10{font-size:66.240000px;}
.fs11{font-size:66.384000px;}
.fsd{font-size:69.840000px;}
.fs6{font-size:72.000000px;}
.fs14{font-size:79.920000px;}
.fsb{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs8{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fsc{font-size:120.240000px;}
.fs3{font-size:192.240000px;}
.fs4{font-size:192.384000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:33.264000px;}
.ye{bottom:35.568000px;}
.y40{bottom:92.805000px;}
.y2d{bottom:92.955000px;}
.y38{bottom:92.985000px;}
.y2a{bottom:93.030000px;}
.y24{bottom:93.060000px;}
.y32{bottom:93.090000px;}
.y27{bottom:93.135000px;}
.y21{bottom:94.752000px;}
.y1f{bottom:100.512000px;}
.y22{bottom:103.680000px;}
.y18{bottom:110.628000px;}
.y45{bottom:120.204000px;}
.yd{bottom:164.880000px;}
.y42{bottom:165.600000px;}
.y3f{bottom:209.520000px;}
.yc{bottom:221.040000px;}
.y78{bottom:227.550000px;}
.y43{bottom:258.690000px;}
.y55{bottom:261.360000px;}
.y3c{bottom:265.500000px;}
.y77{bottom:268.590000px;}
.y31{bottom:272.520000px;}
.yb{bottom:277.050000px;}
.y19{bottom:278.970000px;}
.y2{bottom:286.200000px;}
.y4b{bottom:286.380000px;}
.y54{bottom:290.160000px;}
.y46{bottom:293.250000px;}
.y51{bottom:301.785000px;}
.y41{bottom:302.325000px;}
.y59{bottom:303.810000px;}
.y76{bottom:309.450000px;}
.y4a{bottom:315.180000px;}
.y2f{bottom:317.520000px;}
.y3a{bottom:322.560000px;}
.y50{bottom:330.585000px;}
.ya{bottom:333.210000px;}
.y1{bottom:333.750000px;}
.y49{bottom:343.980000px;}
.y3e{bottom:344.235000px;}
.y75{bottom:350.310000px;}
.y58{bottom:357.300000px;}
.y2c{bottom:362.340000px;}
.y37{bottom:367.200000px;}
.y33{bottom:368.280000px;}
.y53{bottom:371.985000px;}
.y3d{bottom:373.035000px;}
.y8c{bottom:374.475000px;}
.y7d{bottom:379.770000px;}
.y57{bottom:386.100000px;}
.y7c{bottom:391.830000px;}
.y9{bottom:396.750000px;}
.y5a{bottom:400.290000px;}
.y52{bottom:400.830000px;}
.y29{bottom:407.340000px;}
.y3b{bottom:409.785000px;}
.y3{bottom:411.915000px;}
.y30{bottom:413.025000px;}
.y56{bottom:414.900000px;}
.y8b{bottom:419.835000px;}
.y69{bottom:421.635000px;}
.y34{bottom:423.180000px;}
.y15{bottom:423.330000px;}
.y60{bottom:430.125000px;}
.y7a{bottom:440.430000px;}
.y68{bottom:441.435000px;}
.y6d{bottom:448.125000px;}
.y5f{bottom:449.925000px;}
.y7b{bottom:449.970000px;}
.y65{bottom:450.645000px;}
.y26{bottom:452.160000px;}
.y8{bottom:452.955000px;}
.y14{bottom:453.600000px;}
.y2e{bottom:455.295000px;}
.y39{bottom:460.185000px;}
.y1e{bottom:460.290000px;}
.y4f{bottom:463.605000px;}
.y48{bottom:464.550000px;}
.y8a{bottom:465.225000px;}
.y5e{bottom:469.725000px;}
.y64{bottom:470.445000px;}
.y74{bottom:473.115000px;}
.y4d{bottom:477.435000px;}
.y71{bottom:479.775000px;}
.y79{bottom:482.370000px;}
.y13{bottom:484.560000px;}
.y5d{bottom:489.525000px;}
.y6c{bottom:490.935000px;}
.y4e{bottom:492.450000px;}
.y47{bottom:493.350000px;}
.y1d{bottom:493.950000px;}
.y23{bottom:497.160000px;}
.y84{bottom:498.675000px;}
.y67{bottom:501.090000px;}
.y36{bottom:501.870000px;}
.y6e{bottom:502.455000px;}
.y2b{bottom:503.025000px;}
.y4c{bottom:506.235000px;}
.y6b{bottom:510.765000px;}
.y89{bottom:513.645000px;}
.y73{bottom:514.155000px;}
.y7{bottom:516.495000px;}
.y70{bottom:517.395000px;}
.y66{bottom:520.890000px;}
.y80{bottom:523.440000px;}
.y12{bottom:525.600000px;}
.y6{bottom:527.505000px;}
.y1c{bottom:528.330000px;}
.y6a{bottom:530.565000px;}
.y35{bottom:530.715000px;}
.y83{bottom:539.535000px;}
.y28{bottom:547.950000px;}
.y6f{bottom:555.015000px;}
.y72{bottom:555.045000px;}
.y63{bottom:556.950000px;}
.y86{bottom:559.110000px;}
.y7f{bottom:564.510000px;}
.y11{bottom:566.460000px;}
.y5c{bottom:567.510000px;}
.y88{bottom:570.855000px;}
.y1b{bottom:572.475000px;}
.y20{bottom:574.740000px;}
.y62{bottom:576.750000px;}
.y82{bottom:580.575000px;}
.y5{bottom:585.150000px;}
.y5b{bottom:587.310000px;}
.y25{bottom:592.890000px;}
.y61{bottom:596.550000px;}
.y7e{bottom:605.370000px;}
.y87{bottom:614.625000px;}
.y1a{bottom:616.575000px;}
.y85{bottom:617.115000px;}
.y17{bottom:618.690000px;}
.y81{bottom:621.465000px;}
.y44{bottom:624.315000px;}
.y4{bottom:642.750000px;}
.yf{bottom:659.850000px;}
.y16{bottom:707.910000px;}
.h1b{height:46.959961px;}
.h21{height:47.998828px;}
.h18{height:57.604219px;}
.h19{height:57.729445px;}
.h1a{height:58.354102px;}
.h1f{height:58.859297px;}
.h8{height:62.507812px;}
.h17{height:62.613281px;}
.h7{height:73.002656px;}
.hb{height:73.257539px;}
.ha{height:73.382766px;}
.h1e{height:80.703984px;}
.hf{height:83.135391px;}
.h1d{height:83.260406px;}
.h9{height:83.275664px;}
.h16{height:83.400891px;}
.h14{height:83.805820px;}
.h11{height:84.525820px;}
.h15{height:89.155664px;}
.h12{height:92.535820px;}
.h5{height:93.761719px;}
.h10{height:93.775664px;}
.h1{height:93.919922px;}
.h6{height:94.045148px;}
.hd{height:94.139297px;}
.hc{height:104.388047px;}
.h1c{height:105.383672px;}
.h13{height:106.315664px;}
.h20{height:115.019297px;}
.h3{height:166.895859px;}
.h4{height:167.020875px;}
.h2{height:187.523438px;}
.he{height:201.780000px;}
.h0{height:810.000000px;}
.w3{width:200.700000px;}
.w2{width:201.240000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:10.836000px;}
.xb{left:70.811979px;}
.x4e{left:73.511979px;}
.x2{left:81.575979px;}
.x36{left:84.095979px;}
.x38{left:86.723979px;}
.x6{left:91.115979px;}
.x1{left:93.995979px;}
.x39{left:96.983979px;}
.x37{left:101.195979px;}
.x23{left:103.535979px;}
.x49{left:104.975979px;}
.x11{left:115.380000px;}
.x4f{left:118.907979px;}
.xc{left:124.811979px;}
.x4c{left:127.295979px;}
.x7{left:136.439979px;}
.x16{left:148.355979px;}
.x4a{left:153.569979px;}
.x4b{left:165.884979px;}
.x3{left:179.279979px;}
.x47{left:190.229979px;}
.xd{left:207.509979px;}
.x24{left:230.789979px;}
.x4{left:233.279979px;}
.x27{left:242.969979px;}
.x25{left:273.959979px;}
.x28{left:293.189979px;}
.x3d{left:294.299979px;}
.xa{left:296.669979px;}
.x26{left:298.079979px;}
.x3e{left:300.959979px;}
.x3f{left:304.094979px;}
.x3c{left:323.099979px;}
.x17{left:343.874979px;}
.x10{left:345.494979px;}
.x13{left:368.714979px;}
.x15{left:373.784979px;}
.x14{left:375.764979px;}
.x18{left:384.584979px;}
.x34{left:435.854979px;}
.x43{left:486.719979px;}
.x42{left:488.879979px;}
.x41{left:496.769979px;}
.x40{left:499.469979px;}
.x3b{left:504.539979px;}
.x3a{left:510.839979px;}
.x2b{left:566.639979px;}
.x2c{left:593.639979px;}
.x2d{left:598.529979px;}
.x44{left:701.174979px;}
.x46{left:714.494979px;}
.x45{left:744.014979px;}
.x4d{left:799.664979px;}
.x9{left:814.214979px;}
.x22{left:842.864979px;}
.x31{left:867.809979px;}
.x30{left:870.869979px;}
.x48{left:875.669979px;}
.x2f{left:882.824979px;}
.x2e{left:887.144979px;}
.x2a{left:893.879979px;}
.x29{left:902.699979px;}
.xf{left:926.639979px;}
.x19{left:948.780000px;}
.x1d{left:974.879979px;}
.x21{left:1009.829979px;}
.x35{left:1020.959979px;}
.x20{left:1028.189979px;}
.x8{left:1119.389979px;}
.x5{left:1125.509979px;}
.x1f{left:1185.224979px;}
.x1a{left:1189.364979px;}
.x1b{left:1196.384979px;}
.x33{left:1203.194979px;}
.x1e{left:1210.244979px;}
.x1c{left:1218.524979px;}
.xe{left:1219.529979px;}
.x32{left:1246.394979px;}
@media print{
.v9{vertical-align:-33.920000pt;}
.v8{vertical-align:-19.840000pt;}
.v1{vertical-align:-17.280000pt;}
.vc{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.226667pt;}
.v3{vertical-align:9.333333pt;}
.v7{vertical-align:17.920000pt;}
.v5{vertical-align:20.480000pt;}
.v4{vertical-align:25.600000pt;}
.v2{vertical-align:31.360000pt;}
.vb{vertical-align:36.480000pt;}
.va{vertical-align:49.920000pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.205867pt;}
.ls20{letter-spacing:-0.082667pt;}
.ls25{letter-spacing:-0.082133pt;}
.ls1c{letter-spacing:-0.044800pt;}
.ls1f{letter-spacing:-0.032640pt;}
.ls1d{letter-spacing:-0.014080pt;}
.ls1{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.074240pt;}
.ls27{letter-spacing:0.103424pt;}
.ls21{letter-spacing:0.141333pt;}
.ls1a{letter-spacing:0.141440pt;}
.lsf{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.202667pt;}
.ls10{letter-spacing:0.203733pt;}
.ls32{letter-spacing:0.247467pt;}
.ls19{letter-spacing:0.316160pt;}
.ls2c{letter-spacing:0.496000pt;}
.ls2f{letter-spacing:3.328000pt;}
.ls24{letter-spacing:11.792640pt;}
.lsa{letter-spacing:14.950400pt;}
.ls9{letter-spacing:15.590400pt;}
.ls12{letter-spacing:17.164800pt;}
.ls1b{letter-spacing:17.304320pt;}
.ls15{letter-spacing:17.474560pt;}
.ls13{letter-spacing:17.804800pt;}
.ls23{letter-spacing:18.330027pt;}
.ls16{letter-spacing:18.584320pt;}
.ls2b{letter-spacing:19.615360pt;}
.ls29{letter-spacing:21.350400pt;}
.ls17{letter-spacing:21.990400pt;}
.ls22{letter-spacing:22.150400pt;}
.lse{letter-spacing:23.751680pt;}
.ls2d{letter-spacing:27.246080pt;}
.ls4{letter-spacing:38.400000pt;}
.ls8{letter-spacing:43.750400pt;}
.ls2e{letter-spacing:43.935360pt;}
.ls3{letter-spacing:44.678400pt;}
.lsb{letter-spacing:68.998400pt;}
.ls26{letter-spacing:74.586752pt;}
.ls30{letter-spacing:74.679467pt;}
.ls6{letter-spacing:74.700800pt;}
.lsc{letter-spacing:74.711467pt;}
.ls33{letter-spacing:80.392533pt;}
.ls7{letter-spacing:80.403200pt;}
.ls0{letter-spacing:92.678400pt;}
.ls2a{letter-spacing:94.615680pt;}
.ls14{letter-spacing:682.366507pt;}
.ws1c{word-spacing:-106.880000pt;}
.ws5{word-spacing:-85.323733pt;}
.wsd{word-spacing:-85.120000pt;}
.wse{word-spacing:-85.087360pt;}
.ws21{word-spacing:-68.276480pt;}
.ws6{word-spacing:-66.996480pt;}
.ws9{word-spacing:-65.716480pt;}
.ws7{word-spacing:-62.080000pt;}
.ws20{word-spacing:-61.024640pt;}
.ws4{word-spacing:-33.663573pt;}
.ws8{word-spacing:-32.999893pt;}
.wsa{word-spacing:-21.899307pt;}
.wsb{word-spacing:-19.488000pt;}
.ws1f{word-spacing:-17.305344pt;}
.wsc{word-spacing:-17.279360pt;}
.ws12{word-spacing:-17.265280pt;}
.ws10{word-spacing:-17.222677pt;}
.ws22{word-spacing:-15.200640pt;}
.ws2{word-spacing:-12.992000pt;}
.ws1e{word-spacing:-12.736000pt;}
.ws1a{word-spacing:-11.978624pt;}
.ws19{word-spacing:-11.952640pt;}
.ws11{word-spacing:-11.562880pt;}
.ws1b{word-spacing:-9.744000pt;}
.ws3{word-spacing:-0.224000pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.174720pt;}
.ws16{word-spacing:1.284480pt;}
.wsf{word-spacing:1.391147pt;}
.ws15{word-spacing:155.272107pt;}
.ws23{word-spacing:347.285333pt;}
.ws1d{word-spacing:348.565333pt;}
.ws14{word-spacing:360.840107pt;}
.ws1{word-spacing:365.205333pt;}
.ws18{word-spacing:689.112320pt;}
.ws13{word-spacing:750.622293pt;}
._c{margin-left:-6.905088pt;}
._8{margin-left:-5.765760pt;}
._5{margin-left:-4.416000pt;}
._1{margin-left:-3.264000pt;}
._d{margin-left:-2.352000pt;}
._0{margin-left:-1.440000pt;}
._2{width:0.904107pt;}
._3{width:2.082560pt;}
._7{width:3.422933pt;}
._6{width:14.186667pt;}
._b{width:16.116267pt;}
._9{width:19.643733pt;}
._4{width:21.154560pt;}
._a{width:23.893120pt;}
._f{width:26.749440pt;}
._e{width:35.804800pt;}
.fs12{font-size:39.040000pt;}
.fs9{font-size:44.800000pt;}
.fs13{font-size:48.000000pt;}
.fs7{font-size:51.200000pt;}
.fs15{font-size:51.328000pt;}
.fse{font-size:56.960000pt;}
.fs0{font-size:57.600000pt;}
.fs10{font-size:58.880000pt;}
.fs11{font-size:59.008000pt;}
.fsd{font-size:62.080000pt;}
.fs6{font-size:64.000000pt;}
.fs14{font-size:71.040000pt;}
.fsb{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs8{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fsc{font-size:106.880000pt;}
.fs3{font-size:170.880000pt;}
.fs4{font-size:171.008000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:29.568000pt;}
.ye{bottom:31.616000pt;}
.y40{bottom:82.493333pt;}
.y2d{bottom:82.626667pt;}
.y38{bottom:82.653333pt;}
.y2a{bottom:82.693333pt;}
.y24{bottom:82.720000pt;}
.y32{bottom:82.746667pt;}
.y27{bottom:82.786667pt;}
.y21{bottom:84.224000pt;}
.y1f{bottom:89.344000pt;}
.y22{bottom:92.160000pt;}
.y18{bottom:98.336000pt;}
.y45{bottom:106.848000pt;}
.yd{bottom:146.560000pt;}
.y42{bottom:147.200000pt;}
.y3f{bottom:186.240000pt;}
.yc{bottom:196.480000pt;}
.y78{bottom:202.266667pt;}
.y43{bottom:229.946667pt;}
.y55{bottom:232.320000pt;}
.y3c{bottom:236.000000pt;}
.y77{bottom:238.746667pt;}
.y31{bottom:242.240000pt;}
.yb{bottom:246.266667pt;}
.y19{bottom:247.973333pt;}
.y2{bottom:254.400000pt;}
.y4b{bottom:254.560000pt;}
.y54{bottom:257.920000pt;}
.y46{bottom:260.666667pt;}
.y51{bottom:268.253333pt;}
.y41{bottom:268.733333pt;}
.y59{bottom:270.053333pt;}
.y76{bottom:275.066667pt;}
.y4a{bottom:280.160000pt;}
.y2f{bottom:282.240000pt;}
.y3a{bottom:286.720000pt;}
.y50{bottom:293.853333pt;}
.ya{bottom:296.186667pt;}
.y1{bottom:296.666667pt;}
.y49{bottom:305.760000pt;}
.y3e{bottom:305.986667pt;}
.y75{bottom:311.386667pt;}
.y58{bottom:317.600000pt;}
.y2c{bottom:322.080000pt;}
.y37{bottom:326.400000pt;}
.y33{bottom:327.360000pt;}
.y53{bottom:330.653333pt;}
.y3d{bottom:331.586667pt;}
.y8c{bottom:332.866667pt;}
.y7d{bottom:337.573333pt;}
.y57{bottom:343.200000pt;}
.y7c{bottom:348.293333pt;}
.y9{bottom:352.666667pt;}
.y5a{bottom:355.813333pt;}
.y52{bottom:356.293333pt;}
.y29{bottom:362.080000pt;}
.y3b{bottom:364.253333pt;}
.y3{bottom:366.146667pt;}
.y30{bottom:367.133333pt;}
.y56{bottom:368.800000pt;}
.y8b{bottom:373.186667pt;}
.y69{bottom:374.786667pt;}
.y34{bottom:376.160000pt;}
.y15{bottom:376.293333pt;}
.y60{bottom:382.333333pt;}
.y7a{bottom:391.493333pt;}
.y68{bottom:392.386667pt;}
.y6d{bottom:398.333333pt;}
.y5f{bottom:399.933333pt;}
.y7b{bottom:399.973333pt;}
.y65{bottom:400.573333pt;}
.y26{bottom:401.920000pt;}
.y8{bottom:402.626667pt;}
.y14{bottom:403.200000pt;}
.y2e{bottom:404.706667pt;}
.y39{bottom:409.053333pt;}
.y1e{bottom:409.146667pt;}
.y4f{bottom:412.093333pt;}
.y48{bottom:412.933333pt;}
.y8a{bottom:413.533333pt;}
.y5e{bottom:417.533333pt;}
.y64{bottom:418.173333pt;}
.y74{bottom:420.546667pt;}
.y4d{bottom:424.386667pt;}
.y71{bottom:426.466667pt;}
.y79{bottom:428.773333pt;}
.y13{bottom:430.720000pt;}
.y5d{bottom:435.133333pt;}
.y6c{bottom:436.386667pt;}
.y4e{bottom:437.733333pt;}
.y47{bottom:438.533333pt;}
.y1d{bottom:439.066667pt;}
.y23{bottom:441.920000pt;}
.y84{bottom:443.266667pt;}
.y67{bottom:445.413333pt;}
.y36{bottom:446.106667pt;}
.y6e{bottom:446.626667pt;}
.y2b{bottom:447.133333pt;}
.y4c{bottom:449.986667pt;}
.y6b{bottom:454.013333pt;}
.y89{bottom:456.573333pt;}
.y73{bottom:457.026667pt;}
.y7{bottom:459.106667pt;}
.y70{bottom:459.906667pt;}
.y66{bottom:463.013333pt;}
.y80{bottom:465.280000pt;}
.y12{bottom:467.200000pt;}
.y6{bottom:468.893333pt;}
.y1c{bottom:469.626667pt;}
.y6a{bottom:471.613333pt;}
.y35{bottom:471.746667pt;}
.y83{bottom:479.586667pt;}
.y28{bottom:487.066667pt;}
.y6f{bottom:493.346667pt;}
.y72{bottom:493.373333pt;}
.y63{bottom:495.066667pt;}
.y86{bottom:496.986667pt;}
.y7f{bottom:501.786667pt;}
.y11{bottom:503.520000pt;}
.y5c{bottom:504.453333pt;}
.y88{bottom:507.426667pt;}
.y1b{bottom:508.866667pt;}
.y20{bottom:510.880000pt;}
.y62{bottom:512.666667pt;}
.y82{bottom:516.066667pt;}
.y5{bottom:520.133333pt;}
.y5b{bottom:522.053333pt;}
.y25{bottom:527.013333pt;}
.y61{bottom:530.266667pt;}
.y7e{bottom:538.106667pt;}
.y87{bottom:546.333333pt;}
.y1a{bottom:548.066667pt;}
.y85{bottom:548.546667pt;}
.y17{bottom:549.946667pt;}
.y81{bottom:552.413333pt;}
.y44{bottom:554.946667pt;}
.y4{bottom:571.333333pt;}
.yf{bottom:586.533333pt;}
.y16{bottom:629.253333pt;}
.h1b{height:41.742188pt;}
.h21{height:42.665625pt;}
.h18{height:51.203750pt;}
.h19{height:51.315062pt;}
.h1a{height:51.870313pt;}
.h1f{height:52.319375pt;}
.h8{height:55.562500pt;}
.h17{height:55.656250pt;}
.h7{height:64.891250pt;}
.hb{height:65.117812pt;}
.ha{height:65.229125pt;}
.h1e{height:71.736875pt;}
.hf{height:73.898125pt;}
.h1d{height:74.009250pt;}
.h9{height:74.022813pt;}
.h16{height:74.134125pt;}
.h14{height:74.494062pt;}
.h11{height:75.134062pt;}
.h15{height:79.249479pt;}
.h12{height:82.254062pt;}
.h5{height:83.343750pt;}
.h10{height:83.356146pt;}
.h1{height:83.484375pt;}
.h6{height:83.595687pt;}
.hd{height:83.679375pt;}
.hc{height:92.789375pt;}
.h1c{height:93.674375pt;}
.h13{height:94.502812pt;}
.h20{height:102.239375pt;}
.h3{height:148.351875pt;}
.h4{height:148.463000pt;}
.h2{height:166.687500pt;}
.he{height:179.360000pt;}
.h0{height:720.000000pt;}
.w3{width:178.400000pt;}
.w2{width:178.880000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.632000pt;}
.xb{left:62.943981pt;}
.x4e{left:65.343981pt;}
.x2{left:72.511981pt;}
.x36{left:74.751981pt;}
.x38{left:77.087981pt;}
.x6{left:80.991981pt;}
.x1{left:83.551981pt;}
.x39{left:86.207981pt;}
.x37{left:89.951981pt;}
.x23{left:92.031981pt;}
.x49{left:93.311981pt;}
.x11{left:102.560000pt;}
.x4f{left:105.695981pt;}
.xc{left:110.943981pt;}
.x4c{left:113.151981pt;}
.x7{left:121.279981pt;}
.x16{left:131.871981pt;}
.x4a{left:136.506648pt;}
.x4b{left:147.453314pt;}
.x3{left:159.359981pt;}
.x47{left:169.093314pt;}
.xd{left:184.453314pt;}
.x24{left:205.146648pt;}
.x4{left:207.359981pt;}
.x27{left:215.973314pt;}
.x25{left:243.519981pt;}
.x28{left:260.613314pt;}
.x3d{left:261.599981pt;}
.xa{left:263.706648pt;}
.x26{left:264.959981pt;}
.x3e{left:267.519981pt;}
.x3f{left:270.306648pt;}
.x3c{left:287.199981pt;}
.x17{left:305.666648pt;}
.x10{left:307.106648pt;}
.x13{left:327.746648pt;}
.x15{left:332.253314pt;}
.x14{left:334.013314pt;}
.x18{left:341.853314pt;}
.x34{left:387.426648pt;}
.x43{left:432.639981pt;}
.x42{left:434.559981pt;}
.x41{left:441.573314pt;}
.x40{left:443.973314pt;}
.x3b{left:448.479981pt;}
.x3a{left:454.079981pt;}
.x2b{left:503.679981pt;}
.x2c{left:527.679981pt;}
.x2d{left:532.026648pt;}
.x44{left:623.266648pt;}
.x46{left:635.106648pt;}
.x45{left:661.346648pt;}
.x4d{left:710.813314pt;}
.x9{left:723.746648pt;}
.x22{left:749.213314pt;}
.x31{left:771.386648pt;}
.x30{left:774.106648pt;}
.x48{left:778.373314pt;}
.x2f{left:784.733314pt;}
.x2e{left:788.573314pt;}
.x2a{left:794.559981pt;}
.x29{left:802.399981pt;}
.xf{left:823.679981pt;}
.x19{left:843.360000pt;}
.x1d{left:866.559981pt;}
.x21{left:897.626648pt;}
.x35{left:907.519981pt;}
.x20{left:913.946648pt;}
.x8{left:995.013314pt;}
.x5{left:1000.453314pt;}
.x1f{left:1053.533314pt;}
.x1a{left:1057.213314pt;}
.x1b{left:1063.453314pt;}
.x33{left:1069.506648pt;}
.x1e{left:1075.773314pt;}
.x1c{left:1083.133314pt;}
.xe{left:1084.026648pt;}
.x32{left:1107.906648pt;}
}




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