
    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_f194394ee111663786430378.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.717285;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_29d894f964515be65ae1d18a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_eff419442ec2c83348e094ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_8a582756320319bcfcf402c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ce1da41df3238aca4640b92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_c1ceb6ba6fb71cf31b04079b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_50fef580e682aa21e294eda2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998047;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_7161cbbcb1284a026cc8f373.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e4552e18e651c35512a105c0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3d04df625acbb4a249b464d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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);}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.870000px;}
.lsf{letter-spacing:-0.852000px;}
.ls4{letter-spacing:-0.414000px;}
.ls9{letter-spacing:-0.384000px;}
.lsd{letter-spacing:-0.348000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.264000px;}
.lsa{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.348000px;}
.ls5{letter-spacing:0.474000px;}
.lse{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.528000px;}
.ls7{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.720000px;}
.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;}
}
.ws7{word-spacing:-66.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.280000px;}
.wsa{word-spacing:-17.100000px;}
.wsb{word-spacing:-17.028000px;}
.ws9{word-spacing:-17.004000px;}
.ws6{word-spacing:-16.974000px;}
.ws8{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.086000px;}
.ws4{word-spacing:-15.630000px;}
.ws2{word-spacing:-1.296000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-5.076000px;}
._1{margin-left:-3.866400px;}
._1f{margin-left:-2.696400px;}
._2{margin-left:-1.324800px;}
._4{width:1.087200px;}
._5{width:2.131266px;}
._8{width:3.403134px;}
._0{width:4.680000px;}
._10{width:5.910066px;}
._e{width:7.115988px;}
._d{width:8.184000px;}
._14{width:9.402012px;}
._13{width:10.428000px;}
._c{width:11.563200px;}
._9{width:13.398000px;}
._18{width:15.412800px;}
._16{width:17.556000px;}
._15{width:19.206000px;}
._17{width:20.590830px;}
._b{width:22.185600px;}
._a{width:23.430000px;}
._f{width:24.692400px;}
._6{width:26.334000px;}
._7{width:27.588000px;}
._20{width:29.336400px;}
._19{width:32.830800px;}
._1a{width:34.386000px;}
._1e{width:36.630000px;}
._1d{width:37.818000px;}
._1c{width:45.049200px;}
._1b{width:46.076400px;}
._12{width:67.689600px;}
._11{width:68.917200px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(5,6,6);}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fsa{font-size:66.000000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:115.729800px;}
.fs1{font-size:132.000000px;}
.fs0{font-size:156.000000px;}
.fs3{font-size:180.000000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:112.895550px;}
.y33{bottom:126.540000px;}
.y5d{bottom:135.937500px;}
.ya9{bottom:136.237500px;}
.yc{bottom:144.395550px;}
.y32{bottom:146.340000px;}
.y7e{bottom:148.537500px;}
.ya8{bottom:155.130000px;}
.y5c{bottom:158.430000px;}
.y31{bottom:165.780000px;}
.yb{bottom:175.895550px;}
.y7d{bottom:176.775000px;}
.y5b{bottom:180.675000px;}
.ya7{bottom:183.375000px;}
.y30{bottom:189.210000px;}
.ya6{bottom:202.275000px;}
.y5a{bottom:202.875000px;}
.y7c{bottom:204.675000px;}
.ya{bottom:207.395550px;}
.y2f{bottom:208.110000px;}
.y7b{bottom:223.575000px;}
.y59{bottom:225.075000px;}
.y2e{bottom:227.010000px;}
.ya5{bottom:230.175000px;}
.y9{bottom:238.895550px;}
.y2d{bottom:246.090000px;}
.y58{bottom:247.275000px;}
.ya4{bottom:249.075000px;}
.y7a{bottom:251.475000px;}
.ybb{bottom:256.875000px;}
.y2c{bottom:264.990000px;}
.y79{bottom:270.675000px;}
.ya3{bottom:277.275000px;}
.y57{bottom:278.775000px;}
.y2b{bottom:284.070000px;}
.yba{bottom:287.175000px;}
.ya2{bottom:296.175000px;}
.y78{bottom:298.575000px;}
.y56{bottom:300.975000px;}
.y2a{bottom:302.970000px;}
.yb9{bottom:315.075000px;}
.y77{bottom:317.475000px;}
.y29{bottom:322.050000px;}
.y55{bottom:323.175000px;}
.ya1{bottom:324.075000px;}
.ya0{bottom:343.005000px;}
.y54{bottom:345.405000px;}
.y76{bottom:364.620000px;}
.y53{bottom:367.620000px;}
.y9f{bottom:371.205000px;}
.y28{bottom:380.190000px;}
.y9e{bottom:390.120000px;}
.y75{bottom:392.505000px;}
.y52{bottom:399.120000px;}
.ye{bottom:403.205550px;}
.y74{bottom:411.405000px;}
.y9d{bottom:418.005000px;}
.y27{bottom:420.195000px;}
.y51{bottom:421.320000px;}
.y9c{bottom:436.905000px;}
.y73{bottom:439.320000px;}
.y26{bottom:439.815000px;}
.y50{bottom:443.505000px;}
.yb8{bottom:445.905000px;}
.y72{bottom:458.505000px;}
.y25{bottom:459.255000px;}
.y9b{bottom:465.120000px;}
.y4f{bottom:465.705000px;}
.y24{bottom:478.695000px;}
.y71{bottom:486.405000px;}
.y9a{bottom:493.005000px;}
.y8{bottom:497.143050px;}
.y4e{bottom:497.205000px;}
.y23{bottom:499.035000px;}
.y70{bottom:505.350000px;}
.y99{bottom:511.950000px;}
.y22{bottom:518.475000px;}
.y4d{bottom:519.450000px;}
.yb7{bottom:530.850000px;}
.y6f{bottom:533.250000px;}
.y21{bottom:538.455000px;}
.y98{bottom:539.850000px;}
.y4c{bottom:541.650000px;}
.y7{bottom:551.143050px;}
.y6e{bottom:552.450000px;}
.y20{bottom:558.075000px;}
.y97{bottom:559.050000px;}
.y4b{bottom:563.850000px;}
.y1f{bottom:576.795000px;}
.yb6{bottom:577.950000px;}
.y6d{bottom:580.350000px;}
.y96{bottom:586.950000px;}
.y4a{bottom:595.050000px;}
.y1e{bottom:596.235000px;}
.y6c{bottom:599.250000px;}
.y3{bottom:600.000000px;}
.y6{bottom:605.143050px;}
.y95{bottom:605.850000px;}
.y49{bottom:617.550000px;}
.y6b{bottom:627.150000px;}
.y94{bottom:633.750000px;}
.y48{bottom:639.750000px;}
.y6a{bottom:646.350000px;}
.y1d{bottom:649.335000px;}
.y93{bottom:652.950000px;}
.y5{bottom:659.143050px;}
.y47{bottom:661.950000px;}
.y92{bottom:671.880000px;}
.y69{bottom:674.280000px;}
.yb5{bottom:680.880000px;}
.y46{bottom:684.195000px;}
.y68{bottom:693.195000px;}
.y91{bottom:699.780000px;}
.y1c{bottom:700.665000px;}
.y45{bottom:715.380000px;}
.y90{bottom:718.695000px;}
.y1b{bottom:720.285000px;}
.y67{bottom:721.080000px;}
.y2{bottom:726.006000px;}
.yb4{bottom:727.695000px;}
.y44{bottom:737.880000px;}
.y1a{bottom:739.725000px;}
.y66{bottom:740.280000px;}
.y8f{bottom:746.880000px;}
.y19{bottom:759.165000px;}
.y43{bottom:760.080000px;}
.y8e{bottom:765.780000px;}
.y65{bottom:769.080000px;}
.y4{bottom:772.115550px;}
.yb3{bottom:774.795000px;}
.y1{bottom:778.500000px;}
.y42{bottom:782.295000px;}
.y8d{bottom:793.695000px;}
.y18{bottom:797.325000px;}
.y64{bottom:800.295000px;}
.y8c{bottom:812.580000px;}
.y41{bottom:813.480000px;}
.yb2{bottom:821.580000px;}
.y63{bottom:831.480000px;}
.y17{bottom:835.485000px;}
.y40{bottom:835.695000px;}
.y8b{bottom:840.825000px;}
.yb1{bottom:849.825000px;}
.y62{bottom:853.725000px;}
.y8a{bottom:859.725000px;}
.y3f{bottom:867.225000px;}
.yb0{bottom:868.725000px;}
.y16{bottom:873.645000px;}
.y61{bottom:876.225000px;}
.y89{bottom:887.625000px;}
.y3e{bottom:889.425000px;}
.yaf{bottom:896.625000px;}
.y60{bottom:898.425000px;}
.y15{bottom:911.850000px;}
.y88{bottom:915.525000px;}
.y3d{bottom:920.625000px;}
.y5f{bottom:929.625000px;}
.y87{bottom:934.725000px;}
.y14{bottom:950.190000px;}
.y3c{bottom:951.825000px;}
.y86{bottom:962.625000px;}
.y3b{bottom:974.025000px;}
.y85{bottom:981.525000px;}
.y13{bottom:988.350000px;}
.y3a{bottom:996.525000px;}
.y84{bottom:1000.425000px;}
.y5e{bottom:1005.525000px;}
.yae{bottom:1009.455000px;}
.y83{bottom:1019.670000px;}
.y12{bottom:1026.510000px;}
.y39{bottom:1027.755000px;}
.yad{bottom:1028.670000px;}
.y82{bottom:1047.570000px;}
.y38{bottom:1049.955000px;}
.yac{bottom:1056.570000px;}
.y11{bottom:1064.670000px;}
.y81{bottom:1066.455000px;}
.y37{bottom:1072.155000px;}
.yab{bottom:1075.455000px;}
.y36{bottom:1094.370000px;}
.y10{bottom:1102.830000px;}
.yaa{bottom:1103.370000px;}
.y35{bottom:1116.870000px;}
.y80{bottom:1122.570000px;}
.y34{bottom:1139.070000px;}
.yf{bottom:1140.990000px;}
.y7f{bottom:1141.455000px;}
.h9{height:45.184219px;}
.hd{height:52.998047px;}
.h6{height:60.609375px;}
.hf{height:61.037109px;}
.ha{height:62.184375px;}
.hb{height:62.850937px;}
.h11{height:64.743164px;}
.h10{height:64.775391px;}
.hc{height:65.010937px;}
.h3{height:94.681641px;}
.h7{height:97.420984px;}
.h2{height:111.896484px;}
.h5{height:123.222656px;}
.h4{height:181.828125px;}
.he{height:1262.700000px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w3{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:95.671200px;}
.xb{left:127.656000px;}
.xe{left:148.837500px;}
.x6{left:153.530550px;}
.x5{left:160.235550px;}
.x7{left:169.775550px;}
.x8{left:200.420550px;}
.x4{left:210.739800px;}
.xa{left:299.417700px;}
.xd{left:309.855000px;}
.xc{left:370.515000px;}
.x2{left:435.862950px;}
.x1{left:605.356950px;}
.x3{left:669.856950px;}
@media print{
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.773333pt;}
.lsf{letter-spacing:-0.757333pt;}
.ls4{letter-spacing:-0.368000pt;}
.ls9{letter-spacing:-0.341333pt;}
.lsd{letter-spacing:-0.309333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.234667pt;}
.lsa{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.309333pt;}
.ls5{letter-spacing:0.421333pt;}
.lse{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.469333pt;}
.ls7{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.640000pt;}
.ws7{word-spacing:-58.666667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.360000pt;}
.wsa{word-spacing:-15.200000pt;}
.wsb{word-spacing:-15.136000pt;}
.ws9{word-spacing:-15.114667pt;}
.ws6{word-spacing:-15.088000pt;}
.ws8{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.298667pt;}
.ws4{word-spacing:-13.893333pt;}
.ws2{word-spacing:-1.152000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-4.512000pt;}
._1{margin-left:-3.436800pt;}
._1f{margin-left:-2.396800pt;}
._2{margin-left:-1.177600pt;}
._4{width:0.966400pt;}
._5{width:1.894459pt;}
._8{width:3.025008pt;}
._0{width:4.160000pt;}
._10{width:5.253392pt;}
._e{width:6.325323pt;}
._d{width:7.274667pt;}
._14{width:8.357344pt;}
._13{width:9.269333pt;}
._c{width:10.278400pt;}
._9{width:11.909333pt;}
._18{width:13.700267pt;}
._16{width:15.605333pt;}
._15{width:17.072000pt;}
._17{width:18.302960pt;}
._b{width:19.720533pt;}
._a{width:20.826667pt;}
._f{width:21.948800pt;}
._6{width:23.408000pt;}
._7{width:24.522667pt;}
._20{width:26.076800pt;}
._19{width:29.182933pt;}
._1a{width:30.565333pt;}
._1e{width:32.560000pt;}
._1d{width:33.616000pt;}
._1c{width:40.043733pt;}
._1b{width:40.956800pt;}
._12{width:60.168533pt;}
._11{width:61.259733pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fsa{font-size:58.666667pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:102.870933pt;}
.fs1{font-size:117.333333pt;}
.fs0{font-size:138.666667pt;}
.fs3{font-size:160.000000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:100.351600pt;}
.y33{bottom:112.480000pt;}
.y5d{bottom:120.833333pt;}
.ya9{bottom:121.100000pt;}
.yc{bottom:128.351600pt;}
.y32{bottom:130.080000pt;}
.y7e{bottom:132.033333pt;}
.ya8{bottom:137.893333pt;}
.y5c{bottom:140.826667pt;}
.y31{bottom:147.360000pt;}
.yb{bottom:156.351600pt;}
.y7d{bottom:157.133333pt;}
.y5b{bottom:160.600000pt;}
.ya7{bottom:163.000000pt;}
.y30{bottom:168.186667pt;}
.ya6{bottom:179.800000pt;}
.y5a{bottom:180.333333pt;}
.y7c{bottom:181.933333pt;}
.ya{bottom:184.351600pt;}
.y2f{bottom:184.986667pt;}
.y7b{bottom:198.733333pt;}
.y59{bottom:200.066667pt;}
.y2e{bottom:201.786667pt;}
.ya5{bottom:204.600000pt;}
.y9{bottom:212.351600pt;}
.y2d{bottom:218.746667pt;}
.y58{bottom:219.800000pt;}
.ya4{bottom:221.400000pt;}
.y7a{bottom:223.533333pt;}
.ybb{bottom:228.333333pt;}
.y2c{bottom:235.546667pt;}
.y79{bottom:240.600000pt;}
.ya3{bottom:246.466667pt;}
.y57{bottom:247.800000pt;}
.y2b{bottom:252.506667pt;}
.yba{bottom:255.266667pt;}
.ya2{bottom:263.266667pt;}
.y78{bottom:265.400000pt;}
.y56{bottom:267.533333pt;}
.y2a{bottom:269.306667pt;}
.yb9{bottom:280.066667pt;}
.y77{bottom:282.200000pt;}
.y29{bottom:286.266667pt;}
.y55{bottom:287.266667pt;}
.ya1{bottom:288.066667pt;}
.ya0{bottom:304.893333pt;}
.y54{bottom:307.026667pt;}
.y76{bottom:324.106667pt;}
.y53{bottom:326.773333pt;}
.y9f{bottom:329.960000pt;}
.y28{bottom:337.946667pt;}
.y9e{bottom:346.773333pt;}
.y75{bottom:348.893333pt;}
.y52{bottom:354.773333pt;}
.ye{bottom:358.404933pt;}
.y74{bottom:365.693333pt;}
.y9d{bottom:371.560000pt;}
.y27{bottom:373.506667pt;}
.y51{bottom:374.506667pt;}
.y9c{bottom:388.360000pt;}
.y73{bottom:390.506667pt;}
.y26{bottom:390.946667pt;}
.y50{bottom:394.226667pt;}
.yb8{bottom:396.360000pt;}
.y72{bottom:407.560000pt;}
.y25{bottom:408.226667pt;}
.y9b{bottom:413.440000pt;}
.y4f{bottom:413.960000pt;}
.y24{bottom:425.506667pt;}
.y71{bottom:432.360000pt;}
.y9a{bottom:438.226667pt;}
.y8{bottom:441.904933pt;}
.y4e{bottom:441.960000pt;}
.y23{bottom:443.586667pt;}
.y70{bottom:449.200000pt;}
.y99{bottom:455.066667pt;}
.y22{bottom:460.866667pt;}
.y4d{bottom:461.733333pt;}
.yb7{bottom:471.866667pt;}
.y6f{bottom:474.000000pt;}
.y21{bottom:478.626667pt;}
.y98{bottom:479.866667pt;}
.y4c{bottom:481.466667pt;}
.y7{bottom:489.904933pt;}
.y6e{bottom:491.066667pt;}
.y20{bottom:496.066667pt;}
.y97{bottom:496.933333pt;}
.y4b{bottom:501.200000pt;}
.y1f{bottom:512.706667pt;}
.yb6{bottom:513.733333pt;}
.y6d{bottom:515.866667pt;}
.y96{bottom:521.733333pt;}
.y4a{bottom:528.933333pt;}
.y1e{bottom:529.986667pt;}
.y6c{bottom:532.666667pt;}
.y3{bottom:533.333333pt;}
.y6{bottom:537.904933pt;}
.y95{bottom:538.533333pt;}
.y49{bottom:548.933333pt;}
.y6b{bottom:557.466667pt;}
.y94{bottom:563.333333pt;}
.y48{bottom:568.666667pt;}
.y6a{bottom:574.533333pt;}
.y1d{bottom:577.186667pt;}
.y93{bottom:580.400000pt;}
.y5{bottom:585.904933pt;}
.y47{bottom:588.400000pt;}
.y92{bottom:597.226667pt;}
.y69{bottom:599.360000pt;}
.yb5{bottom:605.226667pt;}
.y46{bottom:608.173333pt;}
.y68{bottom:616.173333pt;}
.y91{bottom:622.026667pt;}
.y1c{bottom:622.813333pt;}
.y45{bottom:635.893333pt;}
.y90{bottom:638.840000pt;}
.y1b{bottom:640.253333pt;}
.y67{bottom:640.960000pt;}
.y2{bottom:645.338667pt;}
.yb4{bottom:646.840000pt;}
.y44{bottom:655.893333pt;}
.y1a{bottom:657.533333pt;}
.y66{bottom:658.026667pt;}
.y8f{bottom:663.893333pt;}
.y19{bottom:674.813333pt;}
.y43{bottom:675.626667pt;}
.y8e{bottom:680.693333pt;}
.y65{bottom:683.626667pt;}
.y4{bottom:686.324933pt;}
.yb3{bottom:688.706667pt;}
.y1{bottom:692.000000pt;}
.y42{bottom:695.373333pt;}
.y8d{bottom:705.506667pt;}
.y18{bottom:708.733333pt;}
.y64{bottom:711.373333pt;}
.y8c{bottom:722.293333pt;}
.y41{bottom:723.093333pt;}
.yb2{bottom:730.293333pt;}
.y63{bottom:739.093333pt;}
.y17{bottom:742.653333pt;}
.y40{bottom:742.840000pt;}
.y8b{bottom:747.400000pt;}
.yb1{bottom:755.400000pt;}
.y62{bottom:758.866667pt;}
.y8a{bottom:764.200000pt;}
.y3f{bottom:770.866667pt;}
.yb0{bottom:772.200000pt;}
.y16{bottom:776.573333pt;}
.y61{bottom:778.866667pt;}
.y89{bottom:789.000000pt;}
.y3e{bottom:790.600000pt;}
.yaf{bottom:797.000000pt;}
.y60{bottom:798.600000pt;}
.y15{bottom:810.533333pt;}
.y88{bottom:813.800000pt;}
.y3d{bottom:818.333333pt;}
.y5f{bottom:826.333333pt;}
.y87{bottom:830.866667pt;}
.y14{bottom:844.613333pt;}
.y3c{bottom:846.066667pt;}
.y86{bottom:855.666667pt;}
.y3b{bottom:865.800000pt;}
.y85{bottom:872.466667pt;}
.y13{bottom:878.533333pt;}
.y3a{bottom:885.800000pt;}
.y84{bottom:889.266667pt;}
.y5e{bottom:893.800000pt;}
.yae{bottom:897.293333pt;}
.y83{bottom:906.373333pt;}
.y12{bottom:912.453333pt;}
.y39{bottom:913.560000pt;}
.yad{bottom:914.373333pt;}
.y82{bottom:931.173333pt;}
.y38{bottom:933.293333pt;}
.yac{bottom:939.173333pt;}
.y11{bottom:946.373333pt;}
.y81{bottom:947.960000pt;}
.y37{bottom:953.026667pt;}
.yab{bottom:955.960000pt;}
.y36{bottom:972.773333pt;}
.y10{bottom:980.293333pt;}
.yaa{bottom:980.773333pt;}
.y35{bottom:992.773333pt;}
.y80{bottom:997.840000pt;}
.y34{bottom:1012.506667pt;}
.yf{bottom:1014.213333pt;}
.y7f{bottom:1014.626667pt;}
.h9{height:40.163750pt;}
.hd{height:47.109375pt;}
.h6{height:53.875000pt;}
.hf{height:54.255208pt;}
.ha{height:55.275000pt;}
.hb{height:55.867500pt;}
.h11{height:57.549479pt;}
.h10{height:57.578125pt;}
.hc{height:57.787500pt;}
.h3{height:84.161458pt;}
.h7{height:86.596430pt;}
.h2{height:99.463542pt;}
.h5{height:109.531250pt;}
.h4{height:161.625000pt;}
.he{height:1122.400000pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w3{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:85.041067pt;}
.xb{left:113.472000pt;}
.xe{left:132.300000pt;}
.x6{left:136.471600pt;}
.x5{left:142.431600pt;}
.x7{left:150.911600pt;}
.x8{left:178.151600pt;}
.x4{left:187.324267pt;}
.xa{left:266.149067pt;}
.xd{left:275.426667pt;}
.xc{left:329.346667pt;}
.x2{left:387.433733pt;}
.x1{left:538.095067pt;}
.x3{left:595.428400pt;}
}




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