
    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_20c6521108f754c90335eb65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_cda2e14296a58ae6e9ec834a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_ece5482091e7e10e935dd363.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_29934ea7c6379c7781d5d111.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_cbd46f8aab10d0c9fd6704cd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b50dd83e15cb3045e1087b7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_22a1e8d70a1c205226b2c697.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_0deabac974e44f3866929948.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_de7e29f7b3d091e0a399ac0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_f7f591c2022aefef633e59f8.woff2')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.800000px;}
.v3{vertical-align:68.640000px;}
.ls7{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.130200px;}
.ls10{letter-spacing:0.202800px;}
.ls18{letter-spacing:0.583488px;}
.lsf{letter-spacing:1.398240px;}
.lse{letter-spacing:2.118240px;}
.ls6{letter-spacing:53.316000px;}
.ls2{letter-spacing:57.600000px;}
.ls3{letter-spacing:61.833600px;}
.ls1{letter-spacing:61.884000px;}
.ls5{letter-spacing:61.953600px;}
.ls4{letter-spacing:62.004000px;}
.ls13{letter-spacing:65.916000px;}
.ls9{letter-spacing:121.233600px;}
.ls8{letter-spacing:121.284000px;}
.lsd{letter-spacing:129.549600px;}
.lsc{letter-spacing:129.600000px;}
.ls15{letter-spacing:137.865600px;}
.ls14{letter-spacing:137.916000px;}
.ls11{letter-spacing:146.949120px;}
.lsb{letter-spacing:151.953600px;}
.lsa{letter-spacing:152.004000px;}
.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:-46.273680px;}
.ws6{word-spacing:-31.716720px;}
.ws3{word-spacing:-29.232000px;}
.ws10{word-spacing:-26.776512px;}
.ws2{word-spacing:-26.747280px;}
.ws5{word-spacing:-26.051280px;}
.wsc{word-spacing:-25.416864px;}
.wsb{word-spacing:-25.384320px;}
.wse{word-spacing:-24.408720px;}
.wsf{word-spacing:-21.996000px;}
.wsa{word-spacing:-21.844560px;}
.ws9{word-spacing:-21.641760px;}
.wsd{word-spacing:-16.252992px;}
.ws4{word-spacing:-0.239760px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:221.115840px;}
.ws7{word-spacing:226.875840px;}
._b{margin-left:-13.403520px;}
._8{margin-left:-11.724480px;}
._0{margin-left:-9.740160px;}
._7{margin-left:-8.089920px;}
._12{margin-left:-7.061040px;}
._6{margin-left:-5.850432px;}
._2{margin-left:-4.357440px;}
._4{margin-left:-2.947680px;}
._1{margin-left:-1.409760px;}
._3{width:1.409760px;}
._5{width:2.819520px;}
._9{width:4.489200px;}
._e{width:16.081920px;}
._c{width:35.940720px;}
._10{width:98.640000px;}
._d{width:257.403360px;}
._f{width:263.163360px;}
._a{width:1449.752400px;}
._11{width:1648.019520px;}
.fc6{color:transparent;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(234,227,210);}
.fc7{color:rgb(152,153,155);}
.fc1{color:rgb(14,40,65);}
.fc9{color:rgb(232,232,232);}
.fc8{color:rgb(23,23,23);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:72.000000px;}
.fs10{font-size:79.920000px;}
.fs11{font-size:80.064000px;}
.fs14{font-size:95.760000px;}
.fs16{font-size:108.000000px;}
.fs17{font-size:108.144000px;}
.fsf{font-size:112.320000px;}
.fs15{font-size:112.464000px;}
.fs19{font-size:120.240000px;}
.fs1a{font-size:120.384000px;}
.fs0{font-size:128.160000px;}
.fs1{font-size:128.304000px;}
.fs4{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs9{font-size:156.240000px;}
.fsa{font-size:156.384000px;}
.fsd{font-size:167.760000px;}
.fse{font-size:167.904000px;}
.fs13{font-size:192.240000px;}
.fs12{font-size:192.384000px;}
.fsb{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs2{font-size:239.760000px;}
.fs3{font-size:239.904000px;}
.fs18{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:18.504000px;}
.y5b{bottom:30.852000px;}
.y24{bottom:31.752000px;}
.y4d{bottom:40.104000px;}
.y96{bottom:40.608000px;}
.y4c{bottom:61.704000px;}
.yba{bottom:66.204000px;}
.y23{bottom:66.492000px;}
.y36{bottom:68.508000px;}
.y4b{bottom:83.304000px;}
.y18{bottom:84.492000px;}
.y41{bottom:84.708000px;}
.y35{bottom:96.228000px;}
.y22{bottom:101.052000px;}
.y7b{bottom:105.984000px;}
.yc2{bottom:107.172000px;}
.y17{bottom:112.212000px;}
.ya4{bottom:117.288000px;}
.y40{bottom:117.468000px;}
.yb6{bottom:117.720000px;}
.y92{bottom:119.196000px;}
.y34{bottom:123.948000px;}
.y51{bottom:130.464000px;}
.y21{bottom:135.612000px;}
.y7a{bottom:138.384000px;}
.y2f{bottom:138.888000px;}
.y16{bottom:139.968000px;}
.yc1{bottom:140.436000px;}
.yb5{bottom:142.956000px;}
.y91{bottom:143.136000px;}
.y90{bottom:149.904000px;}
.y3f{bottom:150.225000px;}
.ya3{bottom:150.765000px;}
.y33{bottom:151.665000px;}
.y63{bottom:151.920000px;}
.y50{bottom:154.410000px;}
.yb8{bottom:165.885000px;}
.y2e{bottom:166.605000px;}
.y15{bottom:167.685000px;}
.yc0{bottom:168.150000px;}
.y20{bottom:170.205000px;}
.y79{bottom:170.820000px;}
.y69{bottom:175.680000px;}
.y4f{bottom:178.350000px;}
.y32{bottom:179.385000px;}
.y5{bottom:180.540000px;}
.y62{bottom:180.720000px;}
.yb1{bottom:182.595000px;}
.ya2{bottom:182.955000px;}
.y3e{bottom:182.985000px;}
.yb7{bottom:188.565000px;}
.y2d{bottom:194.370000px;}
.y14{bottom:195.405000px;}
.ybf{bottom:195.915000px;}
.y95{bottom:196.200000px;}
.y78{bottom:203.220000px;}
.y68{bottom:204.480000px;}
.y1f{bottom:204.765000px;}
.y31{bottom:207.150000px;}
.y8f{bottom:207.900000px;}
.y61{bottom:209.550000px;}
.y3d{bottom:215.790000px;}
.yb0{bottom:216.255000px;}
.y49{bottom:220.065000px;}
.y2c{bottom:222.090000px;}
.y13{bottom:223.125000px;}
.ybe{bottom:223.635000px;}
.y4{bottom:230.220000px;}
.y8e{bottom:231.840000px;}
.y67{bottom:233.280000px;}
.y5a{bottom:233.385000px;}
.y30{bottom:234.870000px;}
.y77{bottom:237.960000px;}
.y60{bottom:238.350000px;}
.y8d{bottom:238.650000px;}
.y1e{bottom:239.325000px;}
.y3c{bottom:248.550000px;}
.yaf{bottom:249.735000px;}
.y2b{bottom:249.810000px;}
.y12{bottom:250.845000px;}
.ybd{bottom:251.355000px;}
.y66{bottom:262.080000px;}
.ya1{bottom:263.265000px;}
.y3{bottom:264.780000px;}
.y48{bottom:265.470000px;}
.y5f{bottom:267.150000px;}
.y59{bottom:272.310000px;}
.y1d{bottom:273.885000px;}
.y2a{bottom:277.530000px;}
.y11{bottom:278.565000px;}
.ybc{bottom:279.075000px;}
.y94{bottom:279.795000px;}
.y3b{bottom:281.310000px;}
.ya0{bottom:288.465000px;}
.y65{bottom:290.880000px;}
.y8a{bottom:295.350000px;}
.y5e{bottom:295.950000px;}
.y29{bottom:305.250000px;}
.y10{bottom:306.330000px;}
.ybb{bottom:306.795000px;}
.y1c{bottom:308.490000px;}
.y3a{bottom:314.070000px;}
.y2{bottom:314.280000px;}
.y89{bottom:319.320000px;}
.y64{bottom:319.710000px;}
.y5d{bottom:324.750000px;}
.y47{bottom:325.770000px;}
.y7f{bottom:326.085000px;}
.y58{bottom:326.310000px;}
.y9f{bottom:328.785000px;}
.y28{bottom:332.970000px;}
.yf{bottom:334.050000px;}
.yae{bottom:334.335000px;}
.y1b{bottom:343.050000px;}
.y88{bottom:343.260000px;}
.y39{bottom:346.830000px;}
.y1{bottom:348.870000px;}
.yad{bottom:359.535000px;}
.y27{bottom:360.720000px;}
.ye{bottom:361.770000px;}
.y57{bottom:365.190000px;}
.y1a{bottom:377.610000px;}
.yac{bottom:384.735000px;}
.y46{bottom:386.250000px;}
.y87{bottom:387.720000px;}
.y38{bottom:394.560000px;}
.y75{bottom:398.235000px;}
.yb9{bottom:399.930000px;}
.y26{bottom:403.380000px;}
.y56{bottom:404.070000px;}
.yd{bottom:404.430000px;}
.y9e{bottom:409.110000px;}
.yab{bottom:409.935000px;}
.y86{bottom:411.660000px;}
.y7e{bottom:419.070000px;}
.y9{bottom:426.930000px;}
.y19{bottom:427.110000px;}
.y37{bottom:427.320000px;}
.y74{bottom:430.635000px;}
.y25{bottom:431.100000px;}
.yc{bottom:432.150000px;}
.y9d{bottom:434.310000px;}
.yaa{bottom:435.165000px;}
.y85{bottom:435.600000px;}
.y45{bottom:446.580000px;}
.y55{bottom:457.920000px;}
.y9c{bottom:459.510000px;}
.ya9{bottom:460.365000px;}
.y73{bottom:463.035000px;}
.y93{bottom:465.375000px;}
.y84{bottom:476.310000px;}
.ya8{bottom:485.565000px;}
.y8{bottom:491.760000px;}
.y44{bottom:491.940000px;}
.y72{bottom:495.435000px;}
.y54{bottom:496.800000px;}
.y9b{bottom:499.830000px;}
.y83{bottom:500.250000px;}
.y7d{bottom:507.270000px;}
.ya7{bottom:510.765000px;}
.y82{bottom:524.190000px;}
.y9a{bottom:525.060000px;}
.y71{bottom:527.835000px;}
.ya6{bottom:535.965000px;}
.y99{bottom:550.260000px;}
.y7{bottom:556.560000px;}
.y70{bottom:560.265000px;}
.ya5{bottom:561.165000px;}
.y81{bottom:575.460000px;}
.y4a{bottom:578.160000px;}
.y7c{bottom:582.120000px;}
.y98{bottom:590.400000px;}
.y6f{bottom:592.665000px;}
.y80{bottom:599.400000px;}
.yb4{bottom:620.130000px;}
.y6c{bottom:621.255000px;}
.y6{bottom:621.360000px;}
.y6e{bottom:625.065000px;}
.yb{bottom:644.430000px;}
.y43{bottom:649.290000px;}
.y8b{bottom:653.865000px;}
.y53{bottom:654.120000px;}
.y6b{bottom:654.915000px;}
.y6d{bottom:659.805000px;}
.y97{bottom:675.255000px;}
.yb3{bottom:678.450000px;}
.y6a{bottom:688.395000px;}
.y52{bottom:705.990000px;}
.y42{bottom:707.610000px;}
.ya{bottom:709.275000px;}
.y8c{bottom:714.315000px;}
.yb2{bottom:736.770000px;}
.y76{bottom:745.305000px;}
.y5c{bottom:749.415000px;}
.h18{height:52.417969px;}
.hb{height:62.402344px;}
.h14{height:69.266602px;}
.h21{height:69.383672px;}
.h15{height:69.391406px;}
.h1e{height:93.603516px;}
.h1f{height:93.728320px;}
.h2a{height:93.761719px;}
.h1b{height:95.245664px;}
.h29{height:97.347656px;}
.h2b{height:97.472461px;}
.h13{height:97.512187px;}
.h1a{height:98.051133px;}
.h25{height:104.211914px;}
.h28{height:104.336719px;}
.h26{height:104.388047px;}
.h27{height:104.513063px;}
.h1{height:111.076172px;}
.h2{height:111.200977px;}
.h1d{height:111.859945px;}
.h6{height:114.196289px;}
.h7{height:114.321094px;}
.h5{height:114.389297px;}
.h2c{height:114.514313px;}
.h1c{height:115.007344px;}
.h9{height:124.804688px;}
.ha{height:124.929492px;}
.h8{height:125.015625px;}
.hd{height:135.413086px;}
.he{height:135.537891px;}
.hc{height:135.641953px;}
.h22{height:138.023672px;}
.h23{height:138.047672px;}
.h11{height:145.397461px;}
.h12{height:145.522266px;}
.h19{height:147.445312px;}
.h17{height:162.484102px;}
.h16{height:162.605813px;}
.h20{height:166.614258px;}
.hf{height:182.566406px;}
.h10{height:182.688117px;}
.h3{height:202.648711px;}
.h4{height:202.770422px;}
.h24{height:223.339570px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:38.267979px;}
.x26{left:43.163979px;}
.x1{left:78.263979px;}
.x2{left:79.739979px;}
.x28{left:82.727979px;}
.x18{left:87.335979px;}
.xe{left:95.183979px;}
.x14{left:96.623979px;}
.x16{left:102.095979px;}
.x3{left:105.803979px;}
.x17{left:110.555979px;}
.xd{left:123.803979px;}
.x13{left:127.295979px;}
.x2a{left:133.487979px;}
.x19{left:144.035979px;}
.x1a{left:184.529979px;}
.x10{left:445.469979px;}
.x11{left:452.489979px;}
.xf{left:469.769979px;}
.x9{left:521.099979px;}
.x4{left:531.794979px;}
.x29{left:540.689979px;}
.x1c{left:544.574979px;}
.x1b{left:545.654979px;}
.xa{left:548.129979px;}
.x5{left:558.794979px;}
.x1d{left:573.014979px;}
.x1e{left:576.974979px;}
.x20{left:586.334979px;}
.x1f{left:590.474979px;}
.x12{left:603.509979px;}
.x21{left:673.994979px;}
.x31{left:694.154979px;}
.x33{left:709.124979px;}
.x27{left:925.124979px;}
.x2b{left:985.709979px;}
.x32{left:995.114979px;}
.x6{left:1004.399979px;}
.x2d{left:1020.854979px;}
.x22{left:1026.179979px;}
.x7{left:1031.399979px;}
.xb{left:1038.749979px;}
.x2e{left:1047.854979px;}
.x24{left:1053.539979px;}
.x2c{left:1056.059979px;}
.xc{left:1065.749979px;}
.x30{left:1068.044979px;}
.x23{left:1081.619979px;}
.x25{left:1119.239979px;}
.x2f{left:1311.089979px;}
.x8{left:1320.659979px;}
@media print{
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.600000pt;}
.v3{vertical-align:61.013333pt;}
.ls7{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.115733pt;}
.ls10{letter-spacing:0.180267pt;}
.ls18{letter-spacing:0.518656pt;}
.lsf{letter-spacing:1.242880pt;}
.lse{letter-spacing:1.882880pt;}
.ls6{letter-spacing:47.392000pt;}
.ls2{letter-spacing:51.200000pt;}
.ls3{letter-spacing:54.963200pt;}
.ls1{letter-spacing:55.008000pt;}
.ls5{letter-spacing:55.069867pt;}
.ls4{letter-spacing:55.114667pt;}
.ls13{letter-spacing:58.592000pt;}
.ls9{letter-spacing:107.763200pt;}
.ls8{letter-spacing:107.808000pt;}
.lsd{letter-spacing:115.155200pt;}
.lsc{letter-spacing:115.200000pt;}
.ls15{letter-spacing:122.547200pt;}
.ls14{letter-spacing:122.592000pt;}
.ls11{letter-spacing:130.621440pt;}
.lsb{letter-spacing:135.069867pt;}
.lsa{letter-spacing:135.114667pt;}
.ws0{word-spacing:-41.132160pt;}
.ws6{word-spacing:-28.192640pt;}
.ws3{word-spacing:-25.984000pt;}
.ws10{word-spacing:-23.801344pt;}
.ws2{word-spacing:-23.775360pt;}
.ws5{word-spacing:-23.156693pt;}
.wsc{word-spacing:-22.592768pt;}
.wsb{word-spacing:-22.563840pt;}
.wse{word-spacing:-21.696640pt;}
.wsf{word-spacing:-19.552000pt;}
.wsa{word-spacing:-19.417387pt;}
.ws9{word-spacing:-19.237120pt;}
.wsd{word-spacing:-14.447104pt;}
.ws4{word-spacing:-0.213120pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:196.547413pt;}
.ws7{word-spacing:201.667413pt;}
._b{margin-left:-11.914240pt;}
._8{margin-left:-10.421760pt;}
._0{margin-left:-8.657920pt;}
._7{margin-left:-7.191040pt;}
._12{margin-left:-6.276480pt;}
._6{margin-left:-5.200384pt;}
._2{margin-left:-3.873280pt;}
._4{margin-left:-2.620160pt;}
._1{margin-left:-1.253120pt;}
._3{width:1.253120pt;}
._5{width:2.506240pt;}
._9{width:3.990400pt;}
._e{width:14.295040pt;}
._c{width:31.947307pt;}
._10{width:87.680000pt;}
._d{width:228.802987pt;}
._f{width:233.922987pt;}
._a{width:1288.668800pt;}
._11{width:1464.906240pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:71.040000pt;}
.fs11{font-size:71.168000pt;}
.fs14{font-size:85.120000pt;}
.fs16{font-size:96.000000pt;}
.fs17{font-size:96.128000pt;}
.fsf{font-size:99.840000pt;}
.fs15{font-size:99.968000pt;}
.fs19{font-size:106.880000pt;}
.fs1a{font-size:107.008000pt;}
.fs0{font-size:113.920000pt;}
.fs1{font-size:114.048000pt;}
.fs4{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs9{font-size:138.880000pt;}
.fsa{font-size:139.008000pt;}
.fsd{font-size:149.120000pt;}
.fse{font-size:149.248000pt;}
.fs13{font-size:170.880000pt;}
.fs12{font-size:171.008000pt;}
.fsb{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs2{font-size:213.120000pt;}
.fs3{font-size:213.248000pt;}
.fs18{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:16.448000pt;}
.y5b{bottom:27.424000pt;}
.y24{bottom:28.224000pt;}
.y4d{bottom:35.648000pt;}
.y96{bottom:36.096000pt;}
.y4c{bottom:54.848000pt;}
.yba{bottom:58.848000pt;}
.y23{bottom:59.104000pt;}
.y36{bottom:60.896000pt;}
.y4b{bottom:74.048000pt;}
.y18{bottom:75.104000pt;}
.y41{bottom:75.296000pt;}
.y35{bottom:85.536000pt;}
.y22{bottom:89.824000pt;}
.y7b{bottom:94.208000pt;}
.yc2{bottom:95.264000pt;}
.y17{bottom:99.744000pt;}
.ya4{bottom:104.256000pt;}
.y40{bottom:104.416000pt;}
.yb6{bottom:104.640000pt;}
.y92{bottom:105.952000pt;}
.y34{bottom:110.176000pt;}
.y51{bottom:115.968000pt;}
.y21{bottom:120.544000pt;}
.y7a{bottom:123.008000pt;}
.y2f{bottom:123.456000pt;}
.y16{bottom:124.416000pt;}
.yc1{bottom:124.832000pt;}
.yb5{bottom:127.072000pt;}
.y91{bottom:127.232000pt;}
.y90{bottom:133.248000pt;}
.y3f{bottom:133.533333pt;}
.ya3{bottom:134.013333pt;}
.y33{bottom:134.813333pt;}
.y63{bottom:135.040000pt;}
.y50{bottom:137.253333pt;}
.yb8{bottom:147.453333pt;}
.y2e{bottom:148.093333pt;}
.y15{bottom:149.053333pt;}
.yc0{bottom:149.466667pt;}
.y20{bottom:151.293333pt;}
.y79{bottom:151.840000pt;}
.y69{bottom:156.160000pt;}
.y4f{bottom:158.533333pt;}
.y32{bottom:159.453333pt;}
.y5{bottom:160.480000pt;}
.y62{bottom:160.640000pt;}
.yb1{bottom:162.306667pt;}
.ya2{bottom:162.626667pt;}
.y3e{bottom:162.653333pt;}
.yb7{bottom:167.613333pt;}
.y2d{bottom:172.773333pt;}
.y14{bottom:173.693333pt;}
.ybf{bottom:174.146667pt;}
.y95{bottom:174.400000pt;}
.y78{bottom:180.640000pt;}
.y68{bottom:181.760000pt;}
.y1f{bottom:182.013333pt;}
.y31{bottom:184.133333pt;}
.y8f{bottom:184.800000pt;}
.y61{bottom:186.266667pt;}
.y3d{bottom:191.813333pt;}
.yb0{bottom:192.226667pt;}
.y49{bottom:195.613333pt;}
.y2c{bottom:197.413333pt;}
.y13{bottom:198.333333pt;}
.ybe{bottom:198.786667pt;}
.y4{bottom:204.640000pt;}
.y8e{bottom:206.080000pt;}
.y67{bottom:207.360000pt;}
.y5a{bottom:207.453333pt;}
.y30{bottom:208.773333pt;}
.y77{bottom:211.520000pt;}
.y60{bottom:211.866667pt;}
.y8d{bottom:212.133333pt;}
.y1e{bottom:212.733333pt;}
.y3c{bottom:220.933333pt;}
.yaf{bottom:221.986667pt;}
.y2b{bottom:222.053333pt;}
.y12{bottom:222.973333pt;}
.ybd{bottom:223.426667pt;}
.y66{bottom:232.960000pt;}
.ya1{bottom:234.013333pt;}
.y3{bottom:235.360000pt;}
.y48{bottom:235.973333pt;}
.y5f{bottom:237.466667pt;}
.y59{bottom:242.053333pt;}
.y1d{bottom:243.453333pt;}
.y2a{bottom:246.693333pt;}
.y11{bottom:247.613333pt;}
.ybc{bottom:248.066667pt;}
.y94{bottom:248.706667pt;}
.y3b{bottom:250.053333pt;}
.ya0{bottom:256.413333pt;}
.y65{bottom:258.560000pt;}
.y8a{bottom:262.533333pt;}
.y5e{bottom:263.066667pt;}
.y29{bottom:271.333333pt;}
.y10{bottom:272.293333pt;}
.ybb{bottom:272.706667pt;}
.y1c{bottom:274.213333pt;}
.y3a{bottom:279.173333pt;}
.y2{bottom:279.360000pt;}
.y89{bottom:283.840000pt;}
.y64{bottom:284.186667pt;}
.y5d{bottom:288.666667pt;}
.y47{bottom:289.573333pt;}
.y7f{bottom:289.853333pt;}
.y58{bottom:290.053333pt;}
.y9f{bottom:292.253333pt;}
.y28{bottom:295.973333pt;}
.yf{bottom:296.933333pt;}
.yae{bottom:297.186667pt;}
.y1b{bottom:304.933333pt;}
.y88{bottom:305.120000pt;}
.y39{bottom:308.293333pt;}
.y1{bottom:310.106667pt;}
.yad{bottom:319.586667pt;}
.y27{bottom:320.640000pt;}
.ye{bottom:321.573333pt;}
.y57{bottom:324.613333pt;}
.y1a{bottom:335.653333pt;}
.yac{bottom:341.986667pt;}
.y46{bottom:343.333333pt;}
.y87{bottom:344.640000pt;}
.y38{bottom:350.720000pt;}
.y75{bottom:353.986667pt;}
.yb9{bottom:355.493333pt;}
.y26{bottom:358.560000pt;}
.y56{bottom:359.173333pt;}
.yd{bottom:359.493333pt;}
.y9e{bottom:363.653333pt;}
.yab{bottom:364.386667pt;}
.y86{bottom:365.920000pt;}
.y7e{bottom:372.506667pt;}
.y9{bottom:379.493333pt;}
.y19{bottom:379.653333pt;}
.y37{bottom:379.840000pt;}
.y74{bottom:382.786667pt;}
.y25{bottom:383.200000pt;}
.yc{bottom:384.133333pt;}
.y9d{bottom:386.053333pt;}
.yaa{bottom:386.813333pt;}
.y85{bottom:387.200000pt;}
.y45{bottom:396.960000pt;}
.y55{bottom:407.040000pt;}
.y9c{bottom:408.453333pt;}
.ya9{bottom:409.213333pt;}
.y73{bottom:411.586667pt;}
.y93{bottom:413.666667pt;}
.y84{bottom:423.386667pt;}
.ya8{bottom:431.613333pt;}
.y8{bottom:437.120000pt;}
.y44{bottom:437.280000pt;}
.y72{bottom:440.386667pt;}
.y54{bottom:441.600000pt;}
.y9b{bottom:444.293333pt;}
.y83{bottom:444.666667pt;}
.y7d{bottom:450.906667pt;}
.ya7{bottom:454.013333pt;}
.y82{bottom:465.946667pt;}
.y9a{bottom:466.720000pt;}
.y71{bottom:469.186667pt;}
.ya6{bottom:476.413333pt;}
.y99{bottom:489.120000pt;}
.y7{bottom:494.720000pt;}
.y70{bottom:498.013333pt;}
.ya5{bottom:498.813333pt;}
.y81{bottom:511.520000pt;}
.y4a{bottom:513.920000pt;}
.y7c{bottom:517.440000pt;}
.y98{bottom:524.800000pt;}
.y6f{bottom:526.813333pt;}
.y80{bottom:532.800000pt;}
.yb4{bottom:551.226667pt;}
.y6c{bottom:552.226667pt;}
.y6{bottom:552.320000pt;}
.y6e{bottom:555.613333pt;}
.yb{bottom:572.826667pt;}
.y43{bottom:577.146667pt;}
.y8b{bottom:581.213333pt;}
.y53{bottom:581.440000pt;}
.y6b{bottom:582.146667pt;}
.y6d{bottom:586.493333pt;}
.y97{bottom:600.226667pt;}
.yb3{bottom:603.066667pt;}
.y6a{bottom:611.906667pt;}
.y52{bottom:627.546667pt;}
.y42{bottom:628.986667pt;}
.ya{bottom:630.466667pt;}
.y8c{bottom:634.946667pt;}
.yb2{bottom:654.906667pt;}
.y76{bottom:662.493333pt;}
.y5c{bottom:666.146667pt;}
.h18{height:46.593750pt;}
.hb{height:55.468750pt;}
.h14{height:61.570312pt;}
.h21{height:61.674375pt;}
.h15{height:61.681250pt;}
.h1e{height:83.203125pt;}
.h1f{height:83.314062pt;}
.h2a{height:83.343750pt;}
.h1b{height:84.662813pt;}
.h29{height:86.531250pt;}
.h2b{height:86.642187pt;}
.h13{height:86.677500pt;}
.h1a{height:87.156562pt;}
.h25{height:92.632812pt;}
.h28{height:92.743750pt;}
.h26{height:92.789375pt;}
.h27{height:92.900500pt;}
.h1{height:98.734375pt;}
.h2{height:98.845312pt;}
.h1d{height:99.431062pt;}
.h6{height:101.507812pt;}
.h7{height:101.618750pt;}
.h5{height:101.679375pt;}
.h2c{height:101.790500pt;}
.h1c{height:102.228750pt;}
.h9{height:110.937500pt;}
.ha{height:111.048437pt;}
.h8{height:111.125000pt;}
.hd{height:120.367188pt;}
.he{height:120.478125pt;}
.hc{height:120.570625pt;}
.h22{height:122.687708pt;}
.h23{height:122.709042pt;}
.h11{height:129.242188pt;}
.h12{height:129.353125pt;}
.h19{height:131.062500pt;}
.h17{height:144.430312pt;}
.h16{height:144.538500pt;}
.h20{height:148.101562pt;}
.hf{height:162.281250pt;}
.h10{height:162.389438pt;}
.h3{height:180.132187pt;}
.h4{height:180.240375pt;}
.h24{height:198.524062pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:34.015981pt;}
.x26{left:38.367981pt;}
.x1{left:69.567981pt;}
.x2{left:70.879981pt;}
.x28{left:73.535981pt;}
.x18{left:77.631981pt;}
.xe{left:84.607981pt;}
.x14{left:85.887981pt;}
.x16{left:90.751981pt;}
.x3{left:94.047981pt;}
.x17{left:98.271981pt;}
.xd{left:110.047981pt;}
.x13{left:113.151981pt;}
.x2a{left:118.655981pt;}
.x19{left:128.031981pt;}
.x1a{left:164.026648pt;}
.x10{left:395.973314pt;}
.x11{left:402.213314pt;}
.xf{left:417.573314pt;}
.x9{left:463.199981pt;}
.x4{left:472.706648pt;}
.x29{left:480.613314pt;}
.x1c{left:484.066648pt;}
.x1b{left:485.026648pt;}
.xa{left:487.226648pt;}
.x5{left:496.706648pt;}
.x1d{left:509.346648pt;}
.x1e{left:512.866648pt;}
.x20{left:521.186648pt;}
.x1f{left:524.866648pt;}
.x12{left:536.453314pt;}
.x21{left:599.106648pt;}
.x31{left:617.026648pt;}
.x33{left:630.333314pt;}
.x27{left:822.333314pt;}
.x2b{left:876.186648pt;}
.x32{left:884.546648pt;}
.x6{left:892.799981pt;}
.x2d{left:907.426648pt;}
.x22{left:912.159981pt;}
.x7{left:916.799981pt;}
.xb{left:923.333314pt;}
.x2e{left:931.426648pt;}
.x24{left:936.479981pt;}
.x2c{left:938.719981pt;}
.xc{left:947.333314pt;}
.x30{left:949.373314pt;}
.x23{left:961.439981pt;}
.x25{left:994.879981pt;}
.x2f{left:1165.413314pt;}
.x8{left:1173.919981pt;}
}




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