
    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_1c7966403ef6824769963647.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_726b31447bc654f36603ec79.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_d9f18edcc4cfd832dfd8dcca.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_de52a2f3c5fc813dc64d804c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_545be4c8a02b3948576c21ec.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1aa5aeac7a7cc2e0f47e9077.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_55b8d6927d2cdf46f6bcfab4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b8d0e9e60c44224dac7eb6e8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5623dad7355e0b13e16edd81.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls13{letter-spacing:-5.628000px;}
.ls21{letter-spacing:-3.270000px;}
.ls10{letter-spacing:-2.250000px;}
.lsf{letter-spacing:-2.034000px;}
.ls19{letter-spacing:-1.740000px;}
.ls14{letter-spacing:-1.524000px;}
.ls16{letter-spacing:-1.230000px;}
.lse{letter-spacing:-1.128000px;}
.ls4{letter-spacing:-0.876000px;}
.ls12{letter-spacing:-0.870000px;}
.ls18{letter-spacing:-0.358200px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.180000px;}
.ls3{letter-spacing:1.128000px;}
.ls5{letter-spacing:1.230000px;}
.ls1e{letter-spacing:1.465500px;}
.ls20{letter-spacing:1.495500px;}
.ls11{letter-spacing:1.524000px;}
.lsb{letter-spacing:1.525500px;}
.lsc{letter-spacing:1.645500px;}
.ls15{letter-spacing:1.705500px;}
.ls1{letter-spacing:2.034000px;}
.ls1b{letter-spacing:2.142000px;}
.lsd{letter-spacing:2.250000px;}
.ls1d{letter-spacing:2.430000px;}
.ls1a{letter-spacing:3.378000px;}
.ls17{letter-spacing:3.420000px;}
.ls0{letter-spacing:7.875000px;}
.ls8{letter-spacing:12.495000px;}
.lsa{letter-spacing:16.875000px;}
.ls9{letter-spacing:16.995000px;}
.ls6{letter-spacing:25.875000px;}
.ls1f{letter-spacing:46.203000px;}
.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;}
}
.wsb{word-spacing:-22.545000px;}
.ws4{word-spacing:-21.375000px;}
.wse{word-spacing:-21.267000px;}
.ws7{word-spacing:-20.649000px;}
.ws9{word-spacing:-20.355000px;}
.ws1{word-spacing:-19.125000px;}
.wsc{word-spacing:-18.766800px;}
.ws6{word-spacing:-18.255000px;}
.wsa{word-spacing:-17.895000px;}
.ws8{word-spacing:-17.601000px;}
.wsd{word-spacing:-17.385000px;}
.ws3{word-spacing:-17.091000px;}
.ws5{word-spacing:-16.875000px;}
.wsf{word-spacing:-15.855000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._12{margin-left:-6.426750px;}
._5{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._4{width:2.646300px;}
._a{width:4.122150px;}
._14{width:5.856000px;}
._16{width:7.481100px;}
._13{width:8.637600px;}
._23{width:9.947250px;}
._6{width:11.668950px;}
._15{width:13.103250px;}
._22{width:14.417250px;}
._8{width:16.728900px;}
._19{width:17.821200px;}
._9{width:20.504850px;}
._7{width:21.649800px;}
._28{width:23.105100px;}
._e{width:24.958500px;}
._c{width:26.343900px;}
._25{width:27.736050px;}
._21{width:29.132250px;}
._b{width:30.996600px;}
._26{width:32.707500px;}
._11{width:34.425750px;}
._f{width:35.488350px;}
._10{width:37.011750px;}
._24{width:39.989550px;}
._29{width:41.068350px;}
._20{width:42.880800px;}
._1f{width:44.198100px;}
._1b{width:47.799450px;}
._1a{width:49.094850px;}
._1c{width:53.700900px;}
._18{width:57.053400px;}
._17{width:58.181700px;}
._1d{width:61.517250px;}
._1e{width:62.520750px;}
._d{width:66.490800px;}
._27{width:68.030700px;}
._2a{width:80.643750px;}
._2c{width:84.674700px;}
._2b{width:86.538900px;}
._2e{width:88.610400px;}
._2d{width:89.779500px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y33{bottom:6.780000px;}
.y3d{bottom:7.875000px;}
.y53{bottom:7.890000px;}
.y39{bottom:7.905000px;}
.y59{bottom:7.912500px;}
.y5{bottom:14.662500px;}
.y50{bottom:20.250000px;}
.y30{bottom:20.280000px;}
.y56{bottom:21.375000px;}
.y5e{bottom:21.390000px;}
.y36{bottom:21.405000px;}
.y5a{bottom:21.412500px;}
.y41{bottom:21.420000px;}
.y31{bottom:32.655000px;}
.y3{bottom:32.662500px;}
.y52{bottom:33.750000px;}
.y5d{bottom:33.765000px;}
.y38{bottom:33.780000px;}
.y58{bottom:33.787500px;}
.y44{bottom:33.795000px;}
.y4f{bottom:46.170000px;}
.y2f{bottom:46.185000px;}
.y3e{bottom:47.280000px;}
.y43{bottom:47.295000px;}
.y35{bottom:47.325000px;}
.y32{bottom:58.560000px;}
.y3b{bottom:59.655000px;}
.y51{bottom:59.670000px;}
.y37{bottom:59.700000px;}
.y4{bottom:61.912500px;}
.y3c{bottom:85.575000px;}
.y57{bottom:113.700000px;}
.y2d{bottom:130.612500px;}
.y7e{bottom:136.237500px;}
.y2c{bottom:156.480000px;}
.y7d{bottom:162.150000px;}
.y55{bottom:171.150000px;}
.y2b{bottom:182.400000px;}
.y7c{bottom:188.025000px;}
.y2a{bottom:208.320000px;}
.y81{bottom:212.820000px;}
.y7b{bottom:213.945000px;}
.y54{bottom:229.695000px;}
.y29{bottom:234.195000px;}
.y80{bottom:238.695000px;}
.y7a{bottom:239.820000px;}
.y28{bottom:260.100000px;}
.y7f{bottom:262.350000px;}
.y79{bottom:265.725000px;}
.y27{bottom:286.005000px;}
.y4e{bottom:287.130000px;}
.y78{bottom:291.645000px;}
.y26{bottom:311.895000px;}
.y77{bottom:316.380000px;}
.y25{bottom:336.675000px;}
.y76{bottom:342.300000px;}
.y24{bottom:362.550000px;}
.y75{bottom:368.205000px;}
.y4d{bottom:376.095000px;}
.y23{bottom:388.455000px;}
.y74{bottom:394.080000px;}
.y4c{bottom:401.955000px;}
.y22{bottom:414.375000px;}
.y73{bottom:420.000000px;}
.y4b{bottom:427.875000px;}
.y21{bottom:440.250000px;}
.y72{bottom:445.875000px;}
.y4a{bottom:453.795000px;}
.y20{bottom:466.170000px;}
.y71{bottom:471.780000px;}
.y49{bottom:479.670000px;}
.y1f{bottom:492.075000px;}
.y70{bottom:497.700000px;}
.y48{bottom:505.575000px;}
.y1e{bottom:517.950000px;}
.y6f{bottom:523.575000px;}
.y47{bottom:531.450000px;}
.y1d{bottom:543.870000px;}
.y6e{bottom:549.495000px;}
.y46{bottom:557.370000px;}
.y1c{bottom:569.745000px;}
.y6d{bottom:575.400000px;}
.y45{bottom:583.275000px;}
.y1b{bottom:595.650000px;}
.y6c{bottom:601.275000px;}
.y42{bottom:604.650000px;}
.y1a{bottom:621.570000px;}
.y6b{bottom:626.070000px;}
.y19{bottom:646.320000px;}
.y6a{bottom:651.945000px;}
.y18{bottom:672.225000px;}
.y69{bottom:677.850000px;}
.y40{bottom:687.975000px;}
.y17{bottom:698.100000px;}
.y68{bottom:703.755000px;}
.y16{bottom:724.005000px;}
.y67{bottom:729.645000px;}
.y15{bottom:749.925000px;}
.y66{bottom:755.550000px;}
.y3f{bottom:771.300000px;}
.y14{bottom:775.800000px;}
.y65{bottom:781.425000px;}
.y13{bottom:801.705000px;}
.y64{bottom:807.330000px;}
.y12{bottom:827.625000px;}
.y63{bottom:833.250000px;}
.y11{bottom:853.500000px;}
.y62{bottom:859.125000px;}
.y10{bottom:879.420000px;}
.y3a{bottom:880.545000px;}
.y61{bottom:885.045000px;}
.yf{bottom:905.295000px;}
.y60{bottom:910.950000px;}
.ye{bottom:931.200000px;}
.y5f{bottom:936.825000px;}
.yd{bottom:957.120000px;}
.y5c{bottom:958.230000px;}
.yc{bottom:981.870000px;}
.y34{bottom:989.745000px;}
.yb{bottom:1007.775000px;}
.y5b{bottom:1015.650000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y2e{bottom:1074.195000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h5{height:40.537500px;}
.h12{height:51.787500px;}
.h13{height:51.825000px;}
.hb{height:53.415527px;}
.hd{height:53.975830px;}
.ha{height:55.918213px;}
.h16{height:67.137451px;}
.h3{height:68.027344px;}
.h15{height:69.114990px;}
.h8{height:75.043213px;}
.h9{height:75.080566px;}
.hc{height:76.575000px;}
.h7{height:77.097656px;}
.h11{height:77.662500px;}
.he{height:77.700000px;}
.h14{height:78.629945px;}
.h2{height:86.319141px;}
.h4{height:95.389453px;}
.hf{height:103.575000px;}
.h10{height:103.612500px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w4{width:97.987500px;}
.wc{width:113.775000px;}
.w8{width:114.900000px;}
.w9{width:121.650000px;}
.w3{width:122.775000px;}
.w7{width:123.937500px;}
.wa{width:132.900000px;}
.w6{width:161.055000px;}
.w5{width:161.100000px;}
.wb{width:180.225000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x1a{left:1.125000px;}
.x3b{left:3.375000px;}
.x2c{left:4.500000px;}
.x2f{left:5.655000px;}
.x1f{left:6.780000px;}
.x1d{left:7.860000px;}
.x29{left:10.125000px;}
.x20{left:13.530000px;}
.x2e{left:14.655000px;}
.x1c{left:15.735000px;}
.x31{left:16.875000px;}
.x19{left:19.155000px;}
.x10{left:20.280000px;}
.x27{left:21.405000px;}
.x21{left:24.780000px;}
.xc{left:25.912500px;}
.x15{left:27.030000px;}
.x17{left:28.170000px;}
.x16{left:29.295000px;}
.x30{left:30.412500px;}
.xf{left:31.545000px;}
.xd{left:32.662500px;}
.x2b{left:33.787500px;}
.x25{left:34.920000px;}
.x2d{left:36.075000px;}
.x3e{left:37.155000px;}
.x35{left:38.280000px;}
.x1b{left:39.405000px;}
.x18{left:40.537500px;}
.x12{left:41.700000px;}
.x23{left:43.950000px;}
.x33{left:46.200000px;}
.x39{left:49.575000px;}
.x22{left:50.700000px;}
.x2a{left:51.825000px;}
.x26{left:55.185000px;}
.x24{left:56.325000px;}
.x28{left:57.450000px;}
.x34{left:58.560000px;}
.x32{left:60.825000px;}
.x1e{left:66.480000px;}
.x3c{left:82.185000px;}
.x3f{left:83.325000px;}
.xb{left:107.025000px;}
.x1{left:108.149987px;}
.x9{left:129.524987px;}
.x36{left:132.937487px;}
.x5{left:176.849987px;}
.xa{left:185.849987px;}
.x4{left:211.769987px;}
.x37{left:226.425000px;}
.xe{left:233.175000px;}
.x8{left:290.624987px;}
.x7{left:315.419987px;}
.x11{left:334.545000px;}
.x40{left:346.949987px;}
.x38{left:351.450000px;}
.x6{left:457.319987px;}
.x3a{left:488.895000px;}
.x13{left:499.020000px;}
.x14{left:663.450000px;}
.x3d{left:673.620000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-5.002667pt;}
.ls21{letter-spacing:-2.906667pt;}
.ls10{letter-spacing:-2.000000pt;}
.lsf{letter-spacing:-1.808000pt;}
.ls19{letter-spacing:-1.546667pt;}
.ls14{letter-spacing:-1.354667pt;}
.ls16{letter-spacing:-1.093333pt;}
.lse{letter-spacing:-1.002667pt;}
.ls4{letter-spacing:-0.778667pt;}
.ls12{letter-spacing:-0.773333pt;}
.ls18{letter-spacing:-0.318400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls3{letter-spacing:1.002667pt;}
.ls5{letter-spacing:1.093333pt;}
.ls1e{letter-spacing:1.302667pt;}
.ls20{letter-spacing:1.329333pt;}
.ls11{letter-spacing:1.354667pt;}
.lsb{letter-spacing:1.356000pt;}
.lsc{letter-spacing:1.462667pt;}
.ls15{letter-spacing:1.516000pt;}
.ls1{letter-spacing:1.808000pt;}
.ls1b{letter-spacing:1.904000pt;}
.lsd{letter-spacing:2.000000pt;}
.ls1d{letter-spacing:2.160000pt;}
.ls1a{letter-spacing:3.002667pt;}
.ls17{letter-spacing:3.040000pt;}
.ls0{letter-spacing:7.000000pt;}
.ls8{letter-spacing:11.106667pt;}
.lsa{letter-spacing:15.000000pt;}
.ls9{letter-spacing:15.106667pt;}
.ls6{letter-spacing:23.000000pt;}
.ls1f{letter-spacing:41.069333pt;}
.wsb{word-spacing:-20.040000pt;}
.ws4{word-spacing:-19.000000pt;}
.wse{word-spacing:-18.904000pt;}
.ws7{word-spacing:-18.354667pt;}
.ws9{word-spacing:-18.093333pt;}
.ws1{word-spacing:-17.000000pt;}
.wsc{word-spacing:-16.681600pt;}
.ws6{word-spacing:-16.226667pt;}
.wsa{word-spacing:-15.906667pt;}
.ws8{word-spacing:-15.645333pt;}
.wsd{word-spacing:-15.453333pt;}
.ws3{word-spacing:-15.192000pt;}
.ws5{word-spacing:-15.000000pt;}
.wsf{word-spacing:-14.093333pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._12{margin-left:-5.712667pt;}
._5{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._4{width:2.352267pt;}
._a{width:3.664133pt;}
._14{width:5.205333pt;}
._16{width:6.649867pt;}
._13{width:7.677867pt;}
._23{width:8.842000pt;}
._6{width:10.372400pt;}
._15{width:11.647333pt;}
._22{width:12.815333pt;}
._8{width:14.870133pt;}
._19{width:15.841067pt;}
._9{width:18.226533pt;}
._7{width:19.244267pt;}
._28{width:20.537867pt;}
._e{width:22.185333pt;}
._c{width:23.416800pt;}
._25{width:24.654267pt;}
._21{width:25.895333pt;}
._b{width:27.552533pt;}
._26{width:29.073333pt;}
._11{width:30.600667pt;}
._f{width:31.545200pt;}
._10{width:32.899333pt;}
._24{width:35.546267pt;}
._29{width:36.505200pt;}
._20{width:38.116267pt;}
._1f{width:39.287200pt;}
._1b{width:42.488400pt;}
._1a{width:43.639867pt;}
._1c{width:47.734133pt;}
._18{width:50.714133pt;}
._17{width:51.717067pt;}
._1d{width:54.682000pt;}
._1e{width:55.574000pt;}
._d{width:59.102933pt;}
._27{width:60.471733pt;}
._2a{width:71.683333pt;}
._2c{width:75.266400pt;}
._2b{width:76.923467pt;}
._2e{width:78.764800pt;}
._2d{width:79.804000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:6.026667pt;}
.y3d{bottom:7.000000pt;}
.y53{bottom:7.013333pt;}
.y39{bottom:7.026667pt;}
.y59{bottom:7.033333pt;}
.y5{bottom:13.033333pt;}
.y50{bottom:18.000000pt;}
.y30{bottom:18.026667pt;}
.y56{bottom:19.000000pt;}
.y5e{bottom:19.013333pt;}
.y36{bottom:19.026667pt;}
.y5a{bottom:19.033333pt;}
.y41{bottom:19.040000pt;}
.y31{bottom:29.026667pt;}
.y3{bottom:29.033333pt;}
.y52{bottom:30.000000pt;}
.y5d{bottom:30.013333pt;}
.y38{bottom:30.026667pt;}
.y58{bottom:30.033333pt;}
.y44{bottom:30.040000pt;}
.y4f{bottom:41.040000pt;}
.y2f{bottom:41.053333pt;}
.y3e{bottom:42.026667pt;}
.y43{bottom:42.040000pt;}
.y35{bottom:42.066667pt;}
.y32{bottom:52.053333pt;}
.y3b{bottom:53.026667pt;}
.y51{bottom:53.040000pt;}
.y37{bottom:53.066667pt;}
.y4{bottom:55.033333pt;}
.y3c{bottom:76.066667pt;}
.y57{bottom:101.066667pt;}
.y2d{bottom:116.100000pt;}
.y7e{bottom:121.100000pt;}
.y2c{bottom:139.093333pt;}
.y7d{bottom:144.133333pt;}
.y55{bottom:152.133333pt;}
.y2b{bottom:162.133333pt;}
.y7c{bottom:167.133333pt;}
.y2a{bottom:185.173333pt;}
.y81{bottom:189.173333pt;}
.y7b{bottom:190.173333pt;}
.y54{bottom:204.173333pt;}
.y29{bottom:208.173333pt;}
.y80{bottom:212.173333pt;}
.y7a{bottom:213.173333pt;}
.y28{bottom:231.200000pt;}
.y7f{bottom:233.200000pt;}
.y79{bottom:236.200000pt;}
.y27{bottom:254.226667pt;}
.y4e{bottom:255.226667pt;}
.y78{bottom:259.240000pt;}
.y26{bottom:277.240000pt;}
.y77{bottom:281.226667pt;}
.y25{bottom:299.266667pt;}
.y76{bottom:304.266667pt;}
.y24{bottom:322.266667pt;}
.y75{bottom:327.293333pt;}
.y4d{bottom:334.306667pt;}
.y23{bottom:345.293333pt;}
.y74{bottom:350.293333pt;}
.y4c{bottom:357.293333pt;}
.y22{bottom:368.333333pt;}
.y73{bottom:373.333333pt;}
.y4b{bottom:380.333333pt;}
.y21{bottom:391.333333pt;}
.y72{bottom:396.333333pt;}
.y4a{bottom:403.373333pt;}
.y20{bottom:414.373333pt;}
.y71{bottom:419.360000pt;}
.y49{bottom:426.373333pt;}
.y1f{bottom:437.400000pt;}
.y70{bottom:442.400000pt;}
.y48{bottom:449.400000pt;}
.y1e{bottom:460.400000pt;}
.y6f{bottom:465.400000pt;}
.y47{bottom:472.400000pt;}
.y1d{bottom:483.440000pt;}
.y6e{bottom:488.440000pt;}
.y46{bottom:495.440000pt;}
.y1c{bottom:506.440000pt;}
.y6d{bottom:511.466667pt;}
.y45{bottom:518.466667pt;}
.y1b{bottom:529.466667pt;}
.y6c{bottom:534.466667pt;}
.y42{bottom:537.466667pt;}
.y1a{bottom:552.506667pt;}
.y6b{bottom:556.506667pt;}
.y19{bottom:574.506667pt;}
.y6a{bottom:579.506667pt;}
.y18{bottom:597.533333pt;}
.y69{bottom:602.533333pt;}
.y40{bottom:611.533333pt;}
.y17{bottom:620.533333pt;}
.y68{bottom:625.560000pt;}
.y16{bottom:643.560000pt;}
.y67{bottom:648.573333pt;}
.y15{bottom:666.600000pt;}
.y66{bottom:671.600000pt;}
.y3f{bottom:685.600000pt;}
.y14{bottom:689.600000pt;}
.y65{bottom:694.600000pt;}
.y13{bottom:712.626667pt;}
.y64{bottom:717.626667pt;}
.y12{bottom:735.666667pt;}
.y63{bottom:740.666667pt;}
.y11{bottom:758.666667pt;}
.y62{bottom:763.666667pt;}
.y10{bottom:781.706667pt;}
.y3a{bottom:782.706667pt;}
.y61{bottom:786.706667pt;}
.yf{bottom:804.706667pt;}
.y60{bottom:809.733333pt;}
.ye{bottom:827.733333pt;}
.y5f{bottom:832.733333pt;}
.yd{bottom:850.773333pt;}
.y5c{bottom:851.760000pt;}
.yc{bottom:872.773333pt;}
.y34{bottom:879.773333pt;}
.yb{bottom:895.800000pt;}
.y5b{bottom:902.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y2e{bottom:954.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h5{height:36.033333pt;}
.h12{height:46.033333pt;}
.h13{height:46.066667pt;}
.hb{height:47.480469pt;}
.hd{height:47.978516pt;}
.ha{height:49.705078pt;}
.h16{height:59.677734pt;}
.h3{height:60.468750pt;}
.h15{height:61.435547pt;}
.h8{height:66.705078pt;}
.h9{height:66.738281pt;}
.hc{height:68.066667pt;}
.h7{height:68.531250pt;}
.h11{height:69.033333pt;}
.he{height:69.066667pt;}
.h14{height:69.893285pt;}
.h2{height:76.728125pt;}
.h4{height:84.790625pt;}
.hf{height:92.066667pt;}
.h10{height:92.100000pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w4{width:87.100000pt;}
.wc{width:101.133333pt;}
.w8{width:102.133333pt;}
.w9{width:108.133333pt;}
.w3{width:109.133333pt;}
.w7{width:110.166667pt;}
.wa{width:118.133333pt;}
.w6{width:143.160000pt;}
.w5{width:143.200000pt;}
.wb{width:160.200000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.000000pt;}
.x3b{left:3.000000pt;}
.x2c{left:4.000000pt;}
.x2f{left:5.026667pt;}
.x1f{left:6.026667pt;}
.x1d{left:6.986667pt;}
.x29{left:9.000000pt;}
.x20{left:12.026667pt;}
.x2e{left:13.026667pt;}
.x1c{left:13.986667pt;}
.x31{left:15.000000pt;}
.x19{left:17.026667pt;}
.x10{left:18.026667pt;}
.x27{left:19.026667pt;}
.x21{left:22.026667pt;}
.xc{left:23.033333pt;}
.x15{left:24.026667pt;}
.x17{left:25.040000pt;}
.x16{left:26.040000pt;}
.x30{left:27.033333pt;}
.xf{left:28.040000pt;}
.xd{left:29.033333pt;}
.x2b{left:30.033333pt;}
.x25{left:31.040000pt;}
.x2d{left:32.066667pt;}
.x3e{left:33.026667pt;}
.x35{left:34.026667pt;}
.x1b{left:35.026667pt;}
.x18{left:36.033333pt;}
.x12{left:37.066667pt;}
.x23{left:39.066667pt;}
.x33{left:41.066667pt;}
.x39{left:44.066667pt;}
.x22{left:45.066667pt;}
.x2a{left:46.066667pt;}
.x26{left:49.053333pt;}
.x24{left:50.066667pt;}
.x28{left:51.066667pt;}
.x34{left:52.053333pt;}
.x32{left:54.066667pt;}
.x1e{left:59.093333pt;}
.x3c{left:73.053333pt;}
.x3f{left:74.066667pt;}
.xb{left:95.133333pt;}
.x1{left:96.133322pt;}
.x9{left:115.133322pt;}
.x36{left:118.166655pt;}
.x5{left:157.199988pt;}
.xa{left:165.199988pt;}
.x4{left:188.239988pt;}
.x37{left:201.266667pt;}
.xe{left:207.266667pt;}
.x8{left:258.333322pt;}
.x7{left:280.373322pt;}
.x11{left:297.373333pt;}
.x40{left:308.399988pt;}
.x38{left:312.400000pt;}
.x6{left:406.506655pt;}
.x3a{left:434.573333pt;}
.x13{left:443.573333pt;}
.x14{left:589.733333pt;}
.x3d{left:598.773333pt;}
.x2{left:712.893333pt;}
}




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