
    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_6e7cdf16781c5ef641692228.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_05331b5376b6c15af7181f96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_8f996494f26b3c7dfc3d7720.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085000;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_82f31a536921be7b374cc1b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.085000;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_dd7938a07834ec49a221e05e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_ff09a0f5877381c1308ef215.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.101000;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;}
.m2{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,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;}
.ls1e{letter-spacing:-0.150000px;}
.ls8{letter-spacing:-0.118200px;}
.ls10{letter-spacing:-0.115800px;}
.ls17{letter-spacing:-0.069600px;}
.ls16{letter-spacing:-0.069000px;}
.ls1f{letter-spacing:-0.030960px;}
.ls7{letter-spacing:-0.026640px;}
.ls20{letter-spacing:-0.015480px;}
.ls11{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.019440px;}
.ls22{letter-spacing:0.027720px;}
.ls5{letter-spacing:0.028800px;}
.ls19{letter-spacing:0.062400px;}
.ls6{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.075600px;}
.ls1b{letter-spacing:0.082200px;}
.lsf{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.108600px;}
.ls1a{letter-spacing:0.121800px;}
.ls1{letter-spacing:0.130800px;}
.ls15{letter-spacing:0.132000px;}
.lsa{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.154200px;}
.ls12{letter-spacing:0.155400px;}
.ls13{letter-spacing:0.174000px;}
.lsc{letter-spacing:0.177600px;}
.ls1d{letter-spacing:0.180600px;}
.ls21{letter-spacing:0.328800px;}
.lsd{letter-spacing:0.379200px;}
.ls18{letter-spacing:0.425400px;}
.lse{letter-spacing:0.537600px;}
.ls1c{letter-spacing:4.304520px;}
.ls14{letter-spacing:2610.405000px;}
.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;}
}
.wse{word-spacing:-56.880000px;}
.ws1b{word-spacing:-47.880000px;}
.ws18{word-spacing:-18.581520px;}
.wsb{word-spacing:-15.952080px;}
.ws16{word-spacing:-15.793680px;}
.ws9{word-spacing:-15.592080px;}
.ws10{word-spacing:-15.588480px;}
.wsf{word-spacing:-15.569880px;}
.ws4{word-spacing:-15.568680px;}
.ws5{word-spacing:-15.558480px;}
.ws13{word-spacing:-15.546480px;}
.ws2{word-spacing:-15.545280px;}
.ws6{word-spacing:-15.523080px;}
.ws8{word-spacing:-15.490080px;}
.ws15{word-spacing:-15.476880px;}
.ws7{word-spacing:-15.433920px;}
.wsa{word-spacing:-15.414480px;}
.ws11{word-spacing:-15.410160px;}
.ws1{word-spacing:-15.387840px;}
.ws12{word-spacing:-15.345480px;}
.ws14{word-spacing:-15.344880px;}
.wsd{word-spacing:-15.298680px;}
.ws3{word-spacing:-15.296280px;}
.ws17{word-spacing:-13.366800px;}
.ws1e{word-spacing:-13.304280px;}
.ws1d{word-spacing:-13.156080px;}
.ws19{word-spacing:-13.057680px;}
.ws1a{word-spacing:-12.975480px;}
.ws1c{word-spacing:-12.944520px;}
.wsc{word-spacing:-12.285000px;}
.ws1f{word-spacing:-11.279520px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.194480px;}
._0{width:1.198800px;}
._4{width:2.282280px;}
._2{width:2557.125000px;}
._3{width:3398.465520px;}
.fc3{color:rgb(0,71,120);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.120000px;}
.fs9{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.yac{bottom:2.520000px;}
.ya9{bottom:3.240000px;}
.y29{bottom:3.870000px;}
.ya8{bottom:19.710000px;}
.yaa{bottom:34.020000px;}
.y6{bottom:35.925007px;}
.y4d{bottom:54.900000px;}
.ya6{bottom:56.250000px;}
.y25{bottom:56.610000px;}
.y5{bottom:66.525004px;}
.ya5{bottom:72.720000px;}
.ya4{bottom:89.280000px;}
.y4{bottom:97.125005px;}
.y4c{bottom:112.950000px;}
.yab{bottom:114.840000px;}
.ya3{bottom:122.220000px;}
.y4b{bottom:126.450000px;}
.ya2{bottom:138.780000px;}
.y23{bottom:139.264499px;}
.ya1{bottom:155.250000px;}
.y7d{bottom:165.780000px;}
.ya7{bottom:165.870000px;}
.y4a{bottom:166.320000px;}
.ya0{bottom:171.720000px;}
.y7c{bottom:185.310000px;}
.y49{bottom:185.850000px;}
.y9f{bottom:188.280000px;}
.y1a{bottom:196.933500px;}
.y9e{bottom:204.750000px;}
.y7b{bottom:204.840000px;}
.y48{bottom:205.290000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y83{bottom:223.320000px;}
.y7a{bottom:224.310000px;}
.y47{bottom:224.850000px;}
.y27{bottom:228.810000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y9d{bottom:237.780000px;}
.y79{bottom:243.840000px;}
.y46{bottom:244.380000px;}
.y9c{bottom:254.250000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y78{bottom:263.370000px;}
.y45{bottom:263.820000px;}
.y9b{bottom:270.720000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y77{bottom:282.810000px;}
.y44{bottom:283.350000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y9a{bottom:287.280000px;}
.y76{bottom:302.340000px;}
.y43{bottom:302.880000px;}
.y99{bottom:303.750000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y98{bottom:320.220000px;}
.y75{bottom:321.870000px;}
.y42{bottom:322.320000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y74{bottom:341.310000px;}
.y41{bottom:341.850000px;}
.y11{bottom:348.133500px;}
.y97{bottom:353.250000px;}
.y73{bottom:360.840000px;}
.y40{bottom:361.380000px;}
.y96{bottom:369.720000px;}
.y72{bottom:380.370000px;}
.y3f{bottom:380.820000px;}
.y95{bottom:386.280000px;}
.y10{bottom:386.785499px;}
.y71{bottom:399.810000px;}
.y3e{bottom:400.350000px;}
.y94{bottom:402.750000px;}
.yf{bottom:408.044999px;}
.y93{bottom:419.250000px;}
.y70{bottom:419.340000px;}
.y82{bottom:419.430000px;}
.y3d{bottom:419.880000px;}
.y92{bottom:435.810000px;}
.y80{bottom:438.870000px;}
.y3c{bottom:439.320000px;}
.y91{bottom:452.280000px;}
.y6f{bottom:458.310000px;}
.y3b{bottom:458.850000px;}
.y90{bottom:468.750000px;}
.y7f{bottom:477.840000px;}
.y3a{bottom:478.380000px;}
.y8f{bottom:485.310000px;}
.y7e{bottom:497.370000px;}
.y39{bottom:497.820000px;}
.y8e{bottom:501.780000px;}
.ye{bottom:502.864502px;}
.y6e{bottom:516.810000px;}
.y38{bottom:517.350000px;}
.yd{bottom:520.864502px;}
.y8d{bottom:534.810000px;}
.y6d{bottom:536.340000px;}
.y37{bottom:536.880000px;}
.yc{bottom:538.864499px;}
.y8c{bottom:551.280000px;}
.y6c{bottom:555.870000px;}
.y36{bottom:556.320000px;}
.yb{bottom:556.864499px;}
.y8b{bottom:567.750000px;}
.y6b{bottom:575.310000px;}
.y35{bottom:575.850000px;}
.y8a{bottom:584.310000px;}
.y6a{bottom:594.840000px;}
.y34{bottom:595.380000px;}
.y69{bottom:614.370000px;}
.y33{bottom:614.820000px;}
.y89{bottom:617.250000px;}
.ya{bottom:626.610001px;}
.y88{bottom:633.810000px;}
.y68{bottom:633.840000px;}
.y32{bottom:634.380000px;}
.y9{bottom:645.510000px;}
.y87{bottom:650.280000px;}
.y67{bottom:653.370000px;}
.y31{bottom:653.910000px;}
.y8{bottom:666.771000px;}
.y66{bottom:672.900000px;}
.y30{bottom:673.350000px;}
.y86{bottom:682.950000px;}
.y65{bottom:692.340000px;}
.y2f{bottom:692.880000px;}
.y85{bottom:699.690000px;}
.y64{bottom:711.870000px;}
.y2e{bottom:712.410000px;}
.y84{bottom:713.460000px;}
.y7{bottom:726.298500px;}
.y63{bottom:731.400000px;}
.y62{bottom:750.840000px;}
.y3{bottom:752.599495px;}
.y2d{bottom:754.350000px;}
.y61{bottom:770.370000px;}
.y2c{bottom:773.880000px;}
.y60{bottom:789.900000px;}
.y2b{bottom:801.240000px;}
.y5f{bottom:809.340000px;}
.y5e{bottom:828.870000px;}
.y2a{bottom:837.240000px;}
.y5d{bottom:848.400000px;}
.y5c{bottom:867.840000px;}
.y2{bottom:879.369000px;}
.y5b{bottom:887.370000px;}
.y28{bottom:891.690000px;}
.y5a{bottom:906.900000px;}
.y26{bottom:912.030000px;}
.y59{bottom:926.340000px;}
.y58{bottom:945.870000px;}
.y81{bottom:945.960000px;}
.y57{bottom:965.400000px;}
.y1{bottom:966.726000px;}
.y56{bottom:984.840000px;}
.y55{bottom:1004.370000px;}
.y54{bottom:1023.900000px;}
.y53{bottom:1043.340000px;}
.y52{bottom:1062.900000px;}
.y51{bottom:1082.430000px;}
.y50{bottom:1101.870000px;}
.y4f{bottom:1121.400000px;}
.y4e{bottom:1140.930000px;}
.y24{bottom:1203.390000px;}
.hc{height:19.530000px;}
.h7{height:32.130000px;}
.h15{height:32.940000px;}
.h19{height:34.020003px;}
.h18{height:35.212320px;}
.h12{height:38.565000px;}
.h11{height:39.060000px;}
.h16{height:40.027680px;}
.h14{height:41.033160px;}
.h9{height:41.559840px;}
.h6{height:45.900000px;}
.h10{height:47.551680px;}
.h3{height:48.195000px;}
.hf{height:48.746160px;}
.ha{height:49.371840px;}
.h2{height:55.080000px;}
.hd{height:59.235840px;}
.h5{height:78.030000px;}
.he{height:102.737160px;}
.h4{height:119.055004px;}
.h17{height:131.850000px;}
.hb{height:244.470000px;}
.h13{height:732.090000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:0.449985px;}
.wa{width:0.450000px;}
.w7{width:19.740000px;}
.w6{width:25.470000px;}
.w8{width:132.660000px;}
.wb{width:174.360000px;}
.wc{width:178.680000px;}
.wd{width:578.400000px;}
.w5{width:599.760000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-63.720013px;}
.x0{left:0.000000px;}
.x8{left:10.710000px;}
.x19{left:49.680000px;}
.x18{left:51.030000px;}
.x7{left:65.880000px;}
.x5{left:76.589987px;}
.xc{left:89.730000px;}
.x17{left:93.599987px;}
.x14{left:97.829987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.800000px;}
.xd{left:155.999987px;}
.xe{left:157.619987px;}
.xf{left:160.679987px;}
.x10{left:162.389987px;}
.x4{left:203.484001px;}
.x13{left:238.169987px;}
.xa{left:254.460000px;}
.xb{left:255.810000px;}
.x11{left:374.189987px;}
.x12{left:391.199987px;}
.x3{left:454.959000px;}
.x15{left:535.739987px;}
.x16{left:552.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.133333pt;}
.ls8{letter-spacing:-0.105067pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls17{letter-spacing:-0.061867pt;}
.ls16{letter-spacing:-0.061333pt;}
.ls1f{letter-spacing:-0.027520pt;}
.ls7{letter-spacing:-0.023680pt;}
.ls20{letter-spacing:-0.013760pt;}
.ls11{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017280pt;}
.ls22{letter-spacing:0.024640pt;}
.ls5{letter-spacing:0.025600pt;}
.ls19{letter-spacing:0.055467pt;}
.ls6{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.067200pt;}
.ls1b{letter-spacing:0.073067pt;}
.lsf{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.096533pt;}
.ls1a{letter-spacing:0.108267pt;}
.ls1{letter-spacing:0.116267pt;}
.ls15{letter-spacing:0.117333pt;}
.lsa{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.137067pt;}
.ls12{letter-spacing:0.138133pt;}
.ls13{letter-spacing:0.154667pt;}
.lsc{letter-spacing:0.157867pt;}
.ls1d{letter-spacing:0.160533pt;}
.ls21{letter-spacing:0.292267pt;}
.lsd{letter-spacing:0.337067pt;}
.ls18{letter-spacing:0.378133pt;}
.lse{letter-spacing:0.477867pt;}
.ls1c{letter-spacing:3.826240pt;}
.ls14{letter-spacing:2320.360000pt;}
.wse{word-spacing:-50.560000pt;}
.ws1b{word-spacing:-42.560000pt;}
.ws18{word-spacing:-16.516907pt;}
.wsb{word-spacing:-14.179627pt;}
.ws16{word-spacing:-14.038827pt;}
.ws9{word-spacing:-13.859627pt;}
.ws10{word-spacing:-13.856427pt;}
.wsf{word-spacing:-13.839893pt;}
.ws4{word-spacing:-13.838827pt;}
.ws5{word-spacing:-13.829760pt;}
.ws13{word-spacing:-13.819093pt;}
.ws2{word-spacing:-13.818027pt;}
.ws6{word-spacing:-13.798293pt;}
.ws8{word-spacing:-13.768960pt;}
.ws15{word-spacing:-13.757227pt;}
.ws7{word-spacing:-13.719040pt;}
.wsa{word-spacing:-13.701760pt;}
.ws11{word-spacing:-13.697920pt;}
.ws1{word-spacing:-13.678080pt;}
.ws12{word-spacing:-13.640427pt;}
.ws14{word-spacing:-13.639893pt;}
.wsd{word-spacing:-13.598827pt;}
.ws3{word-spacing:-13.596693pt;}
.ws17{word-spacing:-11.881600pt;}
.ws1e{word-spacing:-11.826027pt;}
.ws1d{word-spacing:-11.694293pt;}
.ws19{word-spacing:-11.606827pt;}
.ws1a{word-spacing:-11.533760pt;}
.ws1c{word-spacing:-11.506240pt;}
.wsc{word-spacing:-10.920000pt;}
.ws1f{word-spacing:-10.026240pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.061760pt;}
._0{width:1.065600pt;}
._4{width:2.028693pt;}
._2{width:2273.000000pt;}
._3{width:3020.858240pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.440000pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:2.240000pt;}
.ya9{bottom:2.880000pt;}
.y29{bottom:3.440000pt;}
.ya8{bottom:17.520000pt;}
.yaa{bottom:30.240000pt;}
.y6{bottom:31.933340pt;}
.y4d{bottom:48.800000pt;}
.ya6{bottom:50.000000pt;}
.y25{bottom:50.320000pt;}
.y5{bottom:59.133337pt;}
.ya5{bottom:64.640000pt;}
.ya4{bottom:79.360000pt;}
.y4{bottom:86.333337pt;}
.y4c{bottom:100.400000pt;}
.yab{bottom:102.080000pt;}
.ya3{bottom:108.640000pt;}
.y4b{bottom:112.400000pt;}
.ya2{bottom:123.360000pt;}
.y23{bottom:123.790666pt;}
.ya1{bottom:138.000000pt;}
.y7d{bottom:147.360000pt;}
.ya7{bottom:147.440000pt;}
.y4a{bottom:147.840000pt;}
.ya0{bottom:152.640000pt;}
.y7c{bottom:164.720000pt;}
.y49{bottom:165.200000pt;}
.y9f{bottom:167.360000pt;}
.y1a{bottom:175.052000pt;}
.y9e{bottom:182.000000pt;}
.y7b{bottom:182.080000pt;}
.y48{bottom:182.480000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y83{bottom:198.506667pt;}
.y7a{bottom:199.386667pt;}
.y47{bottom:199.866667pt;}
.y27{bottom:203.386667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y9d{bottom:211.360000pt;}
.y79{bottom:216.746667pt;}
.y46{bottom:217.226667pt;}
.y9c{bottom:226.000000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y78{bottom:234.106667pt;}
.y45{bottom:234.506667pt;}
.y9b{bottom:240.640000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y77{bottom:251.386667pt;}
.y44{bottom:251.866667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y9a{bottom:255.360000pt;}
.y76{bottom:268.746667pt;}
.y43{bottom:269.226667pt;}
.y99{bottom:270.000000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y98{bottom:284.640000pt;}
.y75{bottom:286.106667pt;}
.y42{bottom:286.506667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y74{bottom:303.386667pt;}
.y41{bottom:303.866667pt;}
.y11{bottom:309.452000pt;}
.y97{bottom:314.000000pt;}
.y73{bottom:320.746667pt;}
.y40{bottom:321.226667pt;}
.y96{bottom:328.640000pt;}
.y72{bottom:338.106667pt;}
.y3f{bottom:338.506667pt;}
.y95{bottom:343.360000pt;}
.y10{bottom:343.809333pt;}
.y71{bottom:355.386667pt;}
.y3e{bottom:355.866667pt;}
.y94{bottom:358.000000pt;}
.yf{bottom:362.706666pt;}
.y93{bottom:372.666667pt;}
.y70{bottom:372.746667pt;}
.y82{bottom:372.826667pt;}
.y3d{bottom:373.226667pt;}
.y92{bottom:387.386667pt;}
.y80{bottom:390.106667pt;}
.y3c{bottom:390.506667pt;}
.y91{bottom:402.026667pt;}
.y6f{bottom:407.386667pt;}
.y3b{bottom:407.866667pt;}
.y90{bottom:416.666667pt;}
.y7f{bottom:424.746667pt;}
.y3a{bottom:425.226667pt;}
.y8f{bottom:431.386667pt;}
.y7e{bottom:442.106667pt;}
.y39{bottom:442.506667pt;}
.y8e{bottom:446.026667pt;}
.ye{bottom:446.990669pt;}
.y6e{bottom:459.386667pt;}
.y38{bottom:459.866667pt;}
.yd{bottom:462.990669pt;}
.y8d{bottom:475.386667pt;}
.y6d{bottom:476.746667pt;}
.y37{bottom:477.226667pt;}
.yc{bottom:478.990666pt;}
.y8c{bottom:490.026667pt;}
.y6c{bottom:494.106667pt;}
.y36{bottom:494.506667pt;}
.yb{bottom:494.990666pt;}
.y8b{bottom:504.666667pt;}
.y6b{bottom:511.386667pt;}
.y35{bottom:511.866667pt;}
.y8a{bottom:519.386667pt;}
.y6a{bottom:528.746667pt;}
.y34{bottom:529.226667pt;}
.y69{bottom:546.106667pt;}
.y33{bottom:546.506667pt;}
.y89{bottom:548.666667pt;}
.ya{bottom:556.986668pt;}
.y88{bottom:563.386667pt;}
.y68{bottom:563.413333pt;}
.y32{bottom:563.893333pt;}
.y9{bottom:573.786667pt;}
.y87{bottom:578.026667pt;}
.y67{bottom:580.773333pt;}
.y31{bottom:581.253333pt;}
.y8{bottom:592.685334pt;}
.y66{bottom:598.133333pt;}
.y30{bottom:598.533333pt;}
.y86{bottom:607.066667pt;}
.y65{bottom:615.413333pt;}
.y2f{bottom:615.893333pt;}
.y85{bottom:621.946667pt;}
.y64{bottom:632.773333pt;}
.y2e{bottom:633.253333pt;}
.y84{bottom:634.186667pt;}
.y7{bottom:645.598667pt;}
.y63{bottom:650.133333pt;}
.y62{bottom:667.413333pt;}
.y3{bottom:668.977329pt;}
.y2d{bottom:670.533333pt;}
.y61{bottom:684.773333pt;}
.y2c{bottom:687.893333pt;}
.y60{bottom:702.133333pt;}
.y2b{bottom:712.213333pt;}
.y5f{bottom:719.413333pt;}
.y5e{bottom:736.773333pt;}
.y2a{bottom:744.213333pt;}
.y5d{bottom:754.133333pt;}
.y5c{bottom:771.413333pt;}
.y2{bottom:781.661334pt;}
.y5b{bottom:788.773333pt;}
.y28{bottom:792.613333pt;}
.y5a{bottom:806.133333pt;}
.y26{bottom:810.693333pt;}
.y59{bottom:823.413333pt;}
.y58{bottom:840.773333pt;}
.y81{bottom:840.853333pt;}
.y57{bottom:858.133333pt;}
.y1{bottom:859.312000pt;}
.y56{bottom:875.413333pt;}
.y55{bottom:892.773333pt;}
.y54{bottom:910.133333pt;}
.y53{bottom:927.413333pt;}
.y52{bottom:944.800000pt;}
.y51{bottom:962.160000pt;}
.y50{bottom:979.440000pt;}
.y4f{bottom:996.800000pt;}
.y4e{bottom:1014.160000pt;}
.y24{bottom:1069.680000pt;}
.hc{height:17.360000pt;}
.h7{height:28.560000pt;}
.h15{height:29.280000pt;}
.h19{height:30.240003pt;}
.h18{height:31.299840pt;}
.h12{height:34.280000pt;}
.h11{height:34.720000pt;}
.h16{height:35.580160pt;}
.h14{height:36.473920pt;}
.h9{height:36.942080pt;}
.h6{height:40.800000pt;}
.h10{height:42.268160pt;}
.h3{height:42.840000pt;}
.hf{height:43.329920pt;}
.ha{height:43.886080pt;}
.h2{height:48.960000pt;}
.hd{height:52.654080pt;}
.h5{height:69.360000pt;}
.he{height:91.321920pt;}
.h4{height:105.826671pt;}
.h17{height:117.200000pt;}
.hb{height:217.306667pt;}
.h13{height:650.746667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:0.399987pt;}
.wa{width:0.400000pt;}
.w7{width:17.546667pt;}
.w6{width:22.640000pt;}
.w8{width:117.920000pt;}
.wb{width:154.986667pt;}
.wc{width:158.826667pt;}
.wd{width:514.133333pt;}
.w5{width:533.120000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-56.640012pt;}
.x0{left:0.000000pt;}
.x8{left:9.520000pt;}
.x19{left:44.160000pt;}
.x18{left:45.360000pt;}
.x7{left:58.560000pt;}
.x5{left:68.079988pt;}
.xc{left:79.760000pt;}
.x17{left:83.199988pt;}
.x14{left:86.959988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.266667pt;}
.xd{left:138.666655pt;}
.xe{left:140.106655pt;}
.xf{left:142.826655pt;}
.x10{left:144.346655pt;}
.x4{left:180.874667pt;}
.x13{left:211.706655pt;}
.xa{left:226.186667pt;}
.xb{left:227.386667pt;}
.x11{left:332.613322pt;}
.x12{left:347.733322pt;}
.x3{left:404.408000pt;}
.x15{left:476.213322pt;}
.x16{left:491.333322pt;}
}




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