
    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_25089ce316ae0cb1192d9f7b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_1017b54a14461583e5ab17ab.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_af996ff73c08973ef34b6308.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_d6fbb1bbe3c511c230812693.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_260999b8bd5937e73e88375e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_250149855e1c511d7a9ccea3.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_73936a70cb6f0650c4981858.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d1124e248e7f2f1096b20751.woff')format("woff");}.ff8{font-family:ff8;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8ab8f305e38a449ec18f705.woff')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.516000px;}
.ls3{letter-spacing:-0.492000px;}
.ls8{letter-spacing:-0.468000px;}
.ls4{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.120000px;}
.lse{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.372000px;}
.ls9{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.516000px;}
.lsb{letter-spacing:1.500000px;}
.ls6{letter-spacing:2572.020000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-108.024000px;}
.wsc{word-spacing:-72.000000px;}
.ws1{word-spacing:-27.036000px;}
.ws2{word-spacing:-27.024000px;}
.ws9{word-spacing:-27.000000px;}
.wsb{word-spacing:-18.516000px;}
.wsa{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.024000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.532000px;}
.ws4{word-spacing:-17.508000px;}
.ws6{word-spacing:-17.484000px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-9.306000px;}
._8{margin-left:-8.208000px;}
._6{margin-left:-7.158000px;}
._7{margin-left:-5.940000px;}
._5{margin-left:-4.662000px;}
._4{margin-left:-2.754000px;}
._1{margin-left:-1.368000px;}
._0{width:1.098000px;}
._2{width:2.358000px;}
._3{width:3.822000px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:112.537500px;}
.y1b{bottom:117.037500px;}
.y32{bottom:126.412500px;}
.yb5{bottom:145.537500px;}
.yd4{bottom:146.287500px;}
.y31{bottom:147.037500px;}
.y97{bottom:150.420000px;}
.y74{bottom:152.295000px;}
.y4c{bottom:160.170000px;}
.y43{bottom:166.545000px;}
.y30{bottom:167.655000px;}
.y1a{bottom:169.170000px;}
.yd3{bottom:170.295000px;}
.y96{bottom:171.405000px;}
.y73{bottom:172.920000px;}
.y51{bottom:177.045000px;}
.yb4{bottom:178.155000px;}
.y4b{bottom:180.795000px;}
.y42{bottom:187.200000px;}
.y2f{bottom:188.325000px;}
.y95{bottom:192.075000px;}
.yd2{bottom:194.325000px;}
.y4a{bottom:197.700000px;}
.yb3{bottom:198.825000px;}
.y41{bottom:204.075000px;}
.y94{bottom:212.700000px;}
.y72{bottom:214.950000px;}
.y19{bottom:219.075000px;}
.yd1{bottom:224.325000px;}
.y2e{bottom:230.325000px;}
.yb2{bottom:232.575000px;}
.y93{bottom:233.325000px;}
.y50{bottom:235.575000px;}
.y18{bottom:239.700000px;}
.yd0{bottom:248.325000px;}
.y2d{bottom:250.950000px;}
.y71{bottom:256.200000px;}
.y17{bottom:256.575000px;}
.y2c{bottom:271.575000px;}
.ycf{bottom:272.325000px;}
.y3c{bottom:272.700000px;}
.y92{bottom:274.950000px;}
.y70{bottom:276.825000px;}
.yb1{bottom:291.825000px;}
.y2b{bottom:292.200000px;}
.y3b{bottom:293.325000px;}
.y91{bottom:295.950000px;}
.y6f{bottom:297.450000px;}
.yce{bottom:302.325000px;}
.yb0{bottom:315.870000px;}
.y90{bottom:316.605000px;}
.y6e{bottom:318.495000px;}
.ycd{bottom:326.370000px;}
.y3a{bottom:331.245000px;}
.y2a{bottom:333.870000px;}
.y8f{bottom:337.245000px;}
.y6d{bottom:339.120000px;}
.yaf{bottom:339.870000px;}
.ycc{bottom:350.370000px;}
.y29{bottom:354.870000px;}
.y8e{bottom:357.870000px;}
.y6c{bottom:359.745000px;}
.yae{bottom:373.620000px;}
.y28{bottom:375.495000px;}
.y8d{bottom:378.495000px;}
.ycb{bottom:380.370000px;}
.y27{bottom:396.120000px;}
.y8c{bottom:399.495000px;}
.y6b{bottom:401.370000px;}
.yca{bottom:404.370000px;}
.y8b{bottom:420.120000px;}
.y6a{bottom:422.025000px;}
.yad{bottom:432.525000px;}
.yc9{bottom:434.400000px;}
.y26{bottom:437.775000px;}
.y8a{bottom:440.775000px;}
.y69{bottom:443.025000px;}
.yac{bottom:456.525000px;}
.yc8{bottom:458.400000px;}
.y89{bottom:461.400000px;}
.y68{bottom:463.650000px;}
.y16{bottom:471.150000px;}
.y25{bottom:479.400000px;}
.yab{bottom:480.525000px;}
.y67{bottom:484.275000px;}
.yc7{bottom:488.025000px;}
.y24{bottom:496.275000px;}
.y88{bottom:503.025000px;}
.yaa{bottom:504.525000px;}
.y66{bottom:504.900000px;}
.yc6{bottom:512.025000px;}
.y15{bottom:512.775000px;}
.y87{bottom:524.025000px;}
.y65{bottom:525.525000px;}
.ya9{bottom:528.525000px;}
.y14{bottom:533.400000px;}
.yc5{bottom:536.025000px;}
.y86{bottom:544.695000px;}
.y64{bottom:546.570000px;}
.y46{bottom:550.320000px;}
.y13{bottom:554.445000px;}
.ya8{bottom:562.320000px;}
.y85{bottom:565.320000px;}
.yc4{bottom:566.070000px;}
.y45{bottom:570.945000px;}
.y12{bottom:575.070000px;}
.y49{bottom:581.445000px;}
.y84{bottom:585.945000px;}
.y44{bottom:587.820000px;}
.y63{bottom:590.070000px;}
.y11{bottom:595.695000px;}
.y48{bottom:602.070000px;}
.y83{bottom:606.570000px;}
.yc3{bottom:614.070000px;}
.y40{bottom:614.445000px;}
.y47{bottom:618.945000px;}
.ya7{bottom:621.570000px;}
.y82{bottom:627.195000px;}
.y3f{bottom:635.445000px;}
.y10{bottom:637.320000px;}
.y62{bottom:640.320000px;}
.yc2{bottom:644.070000px;}
.y81{bottom:648.195000px;}
.y3e{bottom:656.070000px;}
.yf{bottom:657.945000px;}
.y61{bottom:660.975000px;}
.ya6{bottom:663.225000px;}
.yc1{bottom:668.100000px;}
.y3d{bottom:672.975000px;}
.ye{bottom:678.975000px;}
.y60{bottom:681.600000px;}
.ya5{bottom:683.850000px;}
.y80{bottom:689.850000px;}
.y4f{bottom:691.350000px;}
.yc0{bottom:698.100000px;}
.y5f{bottom:702.225000px;}
.ya4{bottom:704.850000px;}
.y7f{bottom:710.475000px;}
.y4e{bottom:711.975000px;}
.yd{bottom:720.600000px;}
.ybf{bottom:722.100000px;}
.y5e{bottom:722.850000px;}
.ya3{bottom:725.475000px;}
.y7e{bottom:731.100000px;}
.yc{bottom:741.225000px;}
.y5d{bottom:743.475000px;}
.ya2{bottom:746.100000px;}
.y4d{bottom:749.850000px;}
.y7d{bottom:751.725000px;}
.yda{bottom:757.350000px;}
.yb{bottom:761.850000px;}
.ya1{bottom:766.725000px;}
.y7c{bottom:772.725000px;}
.ybe{bottom:776.100000px;}
.ya{bottom:782.505000px;}
.y5c{bottom:785.505000px;}
.ya0{bottom:787.395000px;}
.y7b{bottom:793.380000px;}
.ybd{bottom:800.130000px;}
.y9{bottom:803.505000px;}
.y5b{bottom:806.130000px;}
.y9f{bottom:808.380000px;}
.y7a{bottom:814.005000px;}
.y8{bottom:824.130000px;}
.y39{bottom:824.505000px;}
.y5a{bottom:826.755000px;}
.yd9{bottom:829.380000px;}
.ybc{bottom:833.880000px;}
.y79{bottom:834.630000px;}
.y7{bottom:844.755000px;}
.y23{bottom:845.130000px;}
.y59{bottom:847.380000px;}
.y9e{bottom:853.380000px;}
.y78{bottom:855.255000px;}
.y6{bottom:865.380000px;}
.y22{bottom:865.755000px;}
.y58{bottom:868.005000px;}
.y9d{bottom:877.005000px;}
.yd8{bottom:883.005000px;}
.y21{bottom:886.380000px;}
.ybb{bottom:893.130000px;}
.y77{bottom:897.300000px;}
.y9c{bottom:901.050000px;}
.y20{bottom:907.050000px;}
.y5{bottom:909.300000px;}
.y57{bottom:913.050000px;}
.y76{bottom:917.925000px;}
.y9b{bottom:925.050000px;}
.yba{bottom:928.800000px;}
.y38{bottom:930.300000px;}
.yd7{bottom:931.050000px;}
.y56{bottom:937.050000px;}
.y75{bottom:938.550000px;}
.y1f{bottom:949.050000px;}
.y4{bottom:959.175000px;}
.y55{bottom:961.050000px;}
.yb9{bottom:964.800000px;}
.y1e{bottom:969.675000px;}
.y9a{bottom:973.050000px;}
.y3{bottom:979.800000px;}
.y37{bottom:980.175000px;}
.y54{bottom:985.050000px;}
.y1d{bottom:990.300000px;}
.y99{bottom:997.050000px;}
.yb8{bottom:997.800000px;}
.y36{bottom:1000.800000px;}
.y53{bottom:1009.050000px;}
.y1c{bottom:1010.925000px;}
.yd6{bottom:1015.080000px;}
.y98{bottom:1021.080000px;}
.y35{bottom:1021.830000px;}
.y2{bottom:1023.705000px;}
.yb7{bottom:1030.455000px;}
.y52{bottom:1033.080000px;}
.yd5{bottom:1039.080000px;}
.y34{bottom:1042.455000px;}
.y1{bottom:1054.830000px;}
.y33{bottom:1063.080000px;}
.h2{height:50.273438px;}
.h4{height:59.343750px;}
.h3{height:75.410156px;}
.h1{height:76.201172px;}
.h5{height:77.581055px;}
.h7{height:79.866211px;}
.h6{height:101.425781px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.037486px;}
.x5{left:144.449986px;}
.x2{left:552.599986px;}
.x3{left:619.754986px;}
.x4{left:810.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.458667pt;}
.ls3{letter-spacing:-0.437333pt;}
.ls8{letter-spacing:-0.416000pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.330667pt;}
.ls9{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.458667pt;}
.lsb{letter-spacing:1.333333pt;}
.ls6{letter-spacing:2286.240000pt;}
.ws0{word-spacing:-96.021333pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1{word-spacing:-24.032000pt;}
.ws2{word-spacing:-24.021333pt;}
.ws9{word-spacing:-24.000000pt;}
.wsb{word-spacing:-16.458667pt;}
.wsa{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.021333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.584000pt;}
.ws4{word-spacing:-15.562667pt;}
.ws6{word-spacing:-15.541333pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-8.272000pt;}
._8{margin-left:-7.296000pt;}
._6{margin-left:-6.362667pt;}
._7{margin-left:-5.280000pt;}
._5{margin-left:-4.144000pt;}
._4{margin-left:-2.448000pt;}
._1{margin-left:-1.216000pt;}
._0{width:0.976000pt;}
._2{width:2.096000pt;}
._3{width:3.397333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:100.033333pt;}
.y1b{bottom:104.033333pt;}
.y32{bottom:112.366667pt;}
.yb5{bottom:129.366667pt;}
.yd4{bottom:130.033333pt;}
.y31{bottom:130.700000pt;}
.y97{bottom:133.706667pt;}
.y74{bottom:135.373333pt;}
.y4c{bottom:142.373333pt;}
.y43{bottom:148.040000pt;}
.y30{bottom:149.026667pt;}
.y1a{bottom:150.373333pt;}
.yd3{bottom:151.373333pt;}
.y96{bottom:152.360000pt;}
.y73{bottom:153.706667pt;}
.y51{bottom:157.373333pt;}
.yb4{bottom:158.360000pt;}
.y4b{bottom:160.706667pt;}
.y42{bottom:166.400000pt;}
.y2f{bottom:167.400000pt;}
.y95{bottom:170.733333pt;}
.yd2{bottom:172.733333pt;}
.y4a{bottom:175.733333pt;}
.yb3{bottom:176.733333pt;}
.y41{bottom:181.400000pt;}
.y94{bottom:189.066667pt;}
.y72{bottom:191.066667pt;}
.y19{bottom:194.733333pt;}
.yd1{bottom:199.400000pt;}
.y2e{bottom:204.733333pt;}
.yb2{bottom:206.733333pt;}
.y93{bottom:207.400000pt;}
.y50{bottom:209.400000pt;}
.y18{bottom:213.066667pt;}
.yd0{bottom:220.733333pt;}
.y2d{bottom:223.066667pt;}
.y71{bottom:227.733333pt;}
.y17{bottom:228.066667pt;}
.y2c{bottom:241.400000pt;}
.ycf{bottom:242.066667pt;}
.y3c{bottom:242.400000pt;}
.y92{bottom:244.400000pt;}
.y70{bottom:246.066667pt;}
.yb1{bottom:259.400000pt;}
.y2b{bottom:259.733333pt;}
.y3b{bottom:260.733333pt;}
.y91{bottom:263.066667pt;}
.y6f{bottom:264.400000pt;}
.yce{bottom:268.733333pt;}
.yb0{bottom:280.773333pt;}
.y90{bottom:281.426667pt;}
.y6e{bottom:283.106667pt;}
.ycd{bottom:290.106667pt;}
.y3a{bottom:294.440000pt;}
.y2a{bottom:296.773333pt;}
.y8f{bottom:299.773333pt;}
.y6d{bottom:301.440000pt;}
.yaf{bottom:302.106667pt;}
.ycc{bottom:311.440000pt;}
.y29{bottom:315.440000pt;}
.y8e{bottom:318.106667pt;}
.y6c{bottom:319.773333pt;}
.yae{bottom:332.106667pt;}
.y28{bottom:333.773333pt;}
.y8d{bottom:336.440000pt;}
.ycb{bottom:338.106667pt;}
.y27{bottom:352.106667pt;}
.y8c{bottom:355.106667pt;}
.y6b{bottom:356.773333pt;}
.yca{bottom:359.440000pt;}
.y8b{bottom:373.440000pt;}
.y6a{bottom:375.133333pt;}
.yad{bottom:384.466667pt;}
.yc9{bottom:386.133333pt;}
.y26{bottom:389.133333pt;}
.y8a{bottom:391.800000pt;}
.y69{bottom:393.800000pt;}
.yac{bottom:405.800000pt;}
.yc8{bottom:407.466667pt;}
.y89{bottom:410.133333pt;}
.y68{bottom:412.133333pt;}
.y16{bottom:418.800000pt;}
.y25{bottom:426.133333pt;}
.yab{bottom:427.133333pt;}
.y67{bottom:430.466667pt;}
.yc7{bottom:433.800000pt;}
.y24{bottom:441.133333pt;}
.y88{bottom:447.133333pt;}
.yaa{bottom:448.466667pt;}
.y66{bottom:448.800000pt;}
.yc6{bottom:455.133333pt;}
.y15{bottom:455.800000pt;}
.y87{bottom:465.800000pt;}
.y65{bottom:467.133333pt;}
.ya9{bottom:469.800000pt;}
.y14{bottom:474.133333pt;}
.yc5{bottom:476.466667pt;}
.y86{bottom:484.173333pt;}
.y64{bottom:485.840000pt;}
.y46{bottom:489.173333pt;}
.y13{bottom:492.840000pt;}
.ya8{bottom:499.840000pt;}
.y85{bottom:502.506667pt;}
.yc4{bottom:503.173333pt;}
.y45{bottom:507.506667pt;}
.y12{bottom:511.173333pt;}
.y49{bottom:516.840000pt;}
.y84{bottom:520.840000pt;}
.y44{bottom:522.506667pt;}
.y63{bottom:524.506667pt;}
.y11{bottom:529.506667pt;}
.y48{bottom:535.173333pt;}
.y83{bottom:539.173333pt;}
.yc3{bottom:545.840000pt;}
.y40{bottom:546.173333pt;}
.y47{bottom:550.173333pt;}
.ya7{bottom:552.506667pt;}
.y82{bottom:557.506667pt;}
.y3f{bottom:564.840000pt;}
.y10{bottom:566.506667pt;}
.y62{bottom:569.173333pt;}
.yc2{bottom:572.506667pt;}
.y81{bottom:576.173333pt;}
.y3e{bottom:583.173333pt;}
.yf{bottom:584.840000pt;}
.y61{bottom:587.533333pt;}
.ya6{bottom:589.533333pt;}
.yc1{bottom:593.866667pt;}
.y3d{bottom:598.200000pt;}
.ye{bottom:603.533333pt;}
.y60{bottom:605.866667pt;}
.ya5{bottom:607.866667pt;}
.y80{bottom:613.200000pt;}
.y4f{bottom:614.533333pt;}
.yc0{bottom:620.533333pt;}
.y5f{bottom:624.200000pt;}
.ya4{bottom:626.533333pt;}
.y7f{bottom:631.533333pt;}
.y4e{bottom:632.866667pt;}
.yd{bottom:640.533333pt;}
.ybf{bottom:641.866667pt;}
.y5e{bottom:642.533333pt;}
.ya3{bottom:644.866667pt;}
.y7e{bottom:649.866667pt;}
.yc{bottom:658.866667pt;}
.y5d{bottom:660.866667pt;}
.ya2{bottom:663.200000pt;}
.y4d{bottom:666.533333pt;}
.y7d{bottom:668.200000pt;}
.yda{bottom:673.200000pt;}
.yb{bottom:677.200000pt;}
.ya1{bottom:681.533333pt;}
.y7c{bottom:686.866667pt;}
.ybe{bottom:689.866667pt;}
.ya{bottom:695.560000pt;}
.y5c{bottom:698.226667pt;}
.ya0{bottom:699.906667pt;}
.y7b{bottom:705.226667pt;}
.ybd{bottom:711.226667pt;}
.y9{bottom:714.226667pt;}
.y5b{bottom:716.560000pt;}
.y9f{bottom:718.560000pt;}
.y7a{bottom:723.560000pt;}
.y8{bottom:732.560000pt;}
.y39{bottom:732.893333pt;}
.y5a{bottom:734.893333pt;}
.yd9{bottom:737.226667pt;}
.ybc{bottom:741.226667pt;}
.y79{bottom:741.893333pt;}
.y7{bottom:750.893333pt;}
.y23{bottom:751.226667pt;}
.y59{bottom:753.226667pt;}
.y9e{bottom:758.560000pt;}
.y78{bottom:760.226667pt;}
.y6{bottom:769.226667pt;}
.y22{bottom:769.560000pt;}
.y58{bottom:771.560000pt;}
.y9d{bottom:779.560000pt;}
.yd8{bottom:784.893333pt;}
.y21{bottom:787.893333pt;}
.ybb{bottom:793.893333pt;}
.y77{bottom:797.600000pt;}
.y9c{bottom:800.933333pt;}
.y20{bottom:806.266667pt;}
.y5{bottom:808.266667pt;}
.y57{bottom:811.600000pt;}
.y76{bottom:815.933333pt;}
.y9b{bottom:822.266667pt;}
.yba{bottom:825.600000pt;}
.y38{bottom:826.933333pt;}
.yd7{bottom:827.600000pt;}
.y56{bottom:832.933333pt;}
.y75{bottom:834.266667pt;}
.y1f{bottom:843.600000pt;}
.y4{bottom:852.600000pt;}
.y55{bottom:854.266667pt;}
.yb9{bottom:857.600000pt;}
.y1e{bottom:861.933333pt;}
.y9a{bottom:864.933333pt;}
.y3{bottom:870.933333pt;}
.y37{bottom:871.266667pt;}
.y54{bottom:875.600000pt;}
.y1d{bottom:880.266667pt;}
.y99{bottom:886.266667pt;}
.yb8{bottom:886.933333pt;}
.y36{bottom:889.600000pt;}
.y53{bottom:896.933333pt;}
.y1c{bottom:898.600000pt;}
.yd6{bottom:902.293333pt;}
.y98{bottom:907.626667pt;}
.y35{bottom:908.293333pt;}
.y2{bottom:909.960000pt;}
.yb7{bottom:915.960000pt;}
.y52{bottom:918.293333pt;}
.yd5{bottom:923.626667pt;}
.y34{bottom:926.626667pt;}
.y1{bottom:937.626667pt;}
.y33{bottom:944.960000pt;}
.h2{height:44.687500pt;}
.h4{height:52.750000pt;}
.h3{height:67.031250pt;}
.h1{height:67.734375pt;}
.h5{height:68.960938pt;}
.h7{height:70.992188pt;}
.h6{height:90.156250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.033321pt;}
.x5{left:128.399988pt;}
.x2{left:491.199988pt;}
.x3{left:550.893321pt;}
.x4{left:720.306655pt;}
}




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