
    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_344b4156faaa25e92d7d9c2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_036c1041d4df8dfb37c58214.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_d37aca3cb658b51d120049a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_15335bfda97fcb7bd3cd2906.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_41aed6d579824813491a955e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_9d74b96964d411e65cb03979.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_1ade7215fe4b7d259de74ea4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_3f1974cd64175c95728a156b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_7752dc780515224585293c68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_8459fdfb1d8face37f65916c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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);}
.v1{vertical-align:-47.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:31.968000px;}
.v3{vertical-align:54.000000px;}
.v2{vertical-align:60.768000px;}
.v5{vertical-align:85.824000px;}
.ls10{letter-spacing:-16.380000px;}
.ls21{letter-spacing:-2.598000px;}
.ls25{letter-spacing:-0.864000px;}
.ls1{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.361200px;}
.lsa{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.256200px;}
.ls7{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.109200px;}
.ls1e{letter-spacing:-0.094200px;}
.lsd{letter-spacing:-0.060600px;}
.lsc{letter-spacing:-0.033120px;}
.ls13{letter-spacing:-0.031680px;}
.ls6{letter-spacing:-0.027960px;}
.ls8{letter-spacing:-0.013680px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.030240px;}
.ls19{letter-spacing:0.039600px;}
.ls2b{letter-spacing:0.071400px;}
.ls1c{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.076800px;}
.ls9{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.234000px;}
.lse{letter-spacing:0.246240px;}
.ls2{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.288600px;}
.ls23{letter-spacing:0.329616px;}
.ls29{letter-spacing:0.437040px;}
.ls18{letter-spacing:0.900000px;}
.ls1b{letter-spacing:0.966240px;}
.ls12{letter-spacing:1.902000px;}
.ls1f{letter-spacing:2.406000px;}
.ls16{letter-spacing:60.984000px;}
.ls11{letter-spacing:80.028000px;}
.ls2a{letter-spacing:94.665600px;}
.ls3{letter-spacing:94.716000px;}
.ls28{letter-spacing:98.949600px;}
.ls27{letter-spacing:99.000000px;}
.ls14{letter-spacing:99.144000px;}
.ls1a{letter-spacing:103.284000px;}
.ls5{letter-spacing:107.316000px;}
.ls1d{letter-spacing:537.372000px;}
.ls4{letter-spacing:1384.881216px;}
.lsf{letter-spacing:1571.321760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-167.760000px;}
.wsa{word-spacing:-131.760000px;}
.ws12{word-spacing:-65.120544px;}
.ws15{word-spacing:-59.750784px;}
.ws17{word-spacing:-43.523040px;}
.wsb{word-spacing:-40.860000px;}
.ws16{word-spacing:-40.680000px;}
.ws6{word-spacing:-37.946304px;}
.ws10{word-spacing:-37.944000px;}
.ws5{word-spacing:-37.913760px;}
.wse{word-spacing:-37.819560px;}
.wsf{word-spacing:-35.315760px;}
.ws2{word-spacing:-35.310240px;}
.ws8{word-spacing:-32.544000px;}
.ws13{word-spacing:-32.256000px;}
.ws4{word-spacing:-32.252544px;}
.ws9{word-spacing:-29.777760px;}
.wsc{word-spacing:-27.213840px;}
.ws18{word-spacing:-27.174240px;}
.ws11{word-spacing:-24.408000px;}
.ws7{word-spacing:-21.566304px;}
.ws0{word-spacing:-21.047760px;}
.ws19{word-spacing:-19.038240px;}
.ws3{word-spacing:-16.272000px;}
.ws14{word-spacing:-14.210160px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-14.905440px;}
._9{margin-left:-13.368384px;}
._1{margin-left:-11.918880px;}
._7{margin-left:-10.898592px;}
._4{margin-left:-9.312000px;}
._e{margin-left:-8.279760px;}
._b{margin-left:-7.227360px;}
._c{margin-left:-5.930880px;}
._6{margin-left:-4.670640px;}
._2{margin-left:-3.273408px;}
._0{margin-left:-1.922400px;}
._3{width:1.308000px;}
._8{width:3.165168px;}
._5{width:4.235040px;}
._a{width:17.293440px;}
._f{width:917.569248px;}
.fc8{color:rgb(0,0,255);}
.fcc{color:rgb(255,0,0);}
.fc7{color:rgb(146,208,80);}
.fc6{color:rgb(228,108,10);}
.fc5{color:rgb(79,129,189);}
.fca{color:rgb(64,64,64);}
.fc9{color:rgb(0,176,80);}
.fc4{color:rgb(137,137,137);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fcb{color:rgb(0,112,192);}
.fc0{color:rgb(31,73,125);}
.fs16{font-size:63.360000px;}
.fs7{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs11{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fsf{font-size:131.760000px;}
.fs10{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs8{font-size:156.240000px;}
.fs9{font-size:156.384000px;}
.fs14{font-size:162.000000px;}
.fs15{font-size:162.144000px;}
.fsc{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fs12{font-size:180.000000px;}
.fs17{font-size:180.144000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fsb{font-size:239.904000px;}
.fs6{font-size:264.384000px;}
.fs13{font-size:288.144000px;}
.y54{bottom:-16.092000px;}
.y63{bottom:-12.492000px;}
.y0{bottom:0.000000px;}
.y94{bottom:9.936000px;}
.y24{bottom:10.224000px;}
.y7a{bottom:12.528000px;}
.y28{bottom:14.472000px;}
.y41{bottom:16.200000px;}
.y55{bottom:17.028000px;}
.yb{bottom:21.672000px;}
.y6d{bottom:23.400000px;}
.y23{bottom:31.392000px;}
.y53{bottom:31.428000px;}
.y16{bottom:43.380000px;}
.y32{bottom:46.368000px;}
.y62{bottom:46.908000px;}
.ya{bottom:50.472000px;}
.y40{bottom:52.020000px;}
.y27{bottom:59.292000px;}
.y7f{bottom:59.508000px;}
.y22{bottom:67.500000px;}
.y89{bottom:71.136000px;}
.y52{bottom:78.948000px;}
.y9{bottom:79.272000px;}
.y31{bottom:89.568000px;}
.y79{bottom:91.476000px;}
.y3f{bottom:102.456000px;}
.y26{bottom:102.492000px;}
.y61{bottom:105.984000px;}
.y6c{bottom:111.708000px;}
.y15{bottom:112.536000px;}
.y21{bottom:114.336000px;}
.y51{bottom:118.548000px;}
.y88{bottom:119.736000px;}
.y30{bottom:132.768000px;}
.y78{bottom:140.076000px;}
.y25{bottom:145.692000px;}
.y8{bottom:149.580000px;}
.y3e{bottom:152.850000px;}
.y60{bottom:154.950000px;}
.y50{bottom:158.190000px;}
.y20{bottom:161.130000px;}
.y87{bottom:168.330000px;}
.y14{bottom:170.130000px;}
.y2f{bottom:176.010000px;}
.y77{bottom:188.670000px;}
.y7{bottom:192.780000px;}
.y29{bottom:198.750000px;}
.y8e{bottom:201.810000px;}
.y3d{bottom:203.250000px;}
.y4f{bottom:205.710000px;}
.y5f{bottom:214.350000px;}
.y86{bottom:216.930000px;}
.y1f{bottom:217.290000px;}
.y2e{bottom:219.210000px;}
.y13{bottom:227.775000px;}
.y76{bottom:237.315000px;}
.y4e{bottom:245.310000px;}
.y3c{bottom:253.695000px;}
.y2d{bottom:262.410000px;}
.y5e{bottom:262.620000px;}
.y1e{bottom:264.135000px;}
.y85{bottom:265.575000px;}
.y8d{bottom:270.975000px;}
.y12{bottom:285.375000px;}
.y75{bottom:285.915000px;}
.y4d{bottom:292.830000px;}
.y2c{bottom:305.610000px;}
.y1d{bottom:310.935000px;}
.y3b{bottom:314.175000px;}
.y5d{bottom:322.380000px;}
.y8c{bottom:328.575000px;}
.y4c{bottom:332.460000px;}
.y74{bottom:334.515000px;}
.y2b{bottom:348.840000px;}
.y11{bottom:351.435000px;}
.y6b{bottom:359.925000px;}
.y84{bottom:362.775000px;}
.y1c{bottom:367.095000px;}
.y3a{bottom:374.655000px;}
.y4b{bottom:379.980000px;}
.y5c{bottom:381.780000px;}
.y73{bottom:383.115000px;}
.y8b{bottom:386.175000px;}
.y10{bottom:397.725000px;}
.y33{bottom:405.000000px;}
.y1b{bottom:413.925000px;}
.y4a{bottom:419.580000px;}
.y6a{bottom:420.450000px;}
.y83{bottom:422.205000px;}
.y39{bottom:425.085000px;}
.y72{bottom:431.745000px;}
.y5b{bottom:441.210000px;}
.yf{bottom:455.325000px;}
.y49{bottom:455.685000px;}
.y1a{bottom:460.725000px;}
.y6{bottom:460.830000px;}
.y93{bottom:464.115000px;}
.y82{bottom:470.805000px;}
.y38{bottom:475.485000px;}
.y71{bottom:480.345000px;}
.y69{bottom:480.930000px;}
.y7e{bottom:488.850000px;}
.y5a{bottom:489.810000px;}
.y48{bottom:495.105000px;}
.y5{bottom:496.875000px;}
.y19{bottom:507.525000px;}
.y92{bottom:510.555000px;}
.y8a{bottom:512.565000px;}
.ye{bottom:512.925000px;}
.y81{bottom:519.405000px;}
.y37{bottom:525.885000px;}
.y70{bottom:528.945000px;}
.y68{bottom:531.330000px;}
.y4{bottom:534.495000px;}
.y47{bottom:534.885000px;}
.y59{bottom:549.210000px;}
.y18{bottom:554.325000px;}
.y7d{bottom:556.560000px;}
.yd{bottom:570.570000px;}
.y91{bottom:571.035000px;}
.y46{bottom:574.530000px;}
.y36{bottom:576.330000px;}
.y6f{bottom:577.590000px;}
.y3{bottom:577.695000px;}
.y80{bottom:578.850000px;}
.y67{bottom:581.400000px;}
.y17{bottom:601.170000px;}
.y7c{bottom:606.960000px;}
.y58{bottom:608.655000px;}
.y45{bottom:614.130000px;}
.y2{bottom:623.955000px;}
.y90{bottom:631.545000px;}
.y66{bottom:642.240000px;}
.y44{bottom:653.730000px;}
.y35{bottom:661.965000px;}
.y57{bottom:668.055000px;}
.y1{bottom:681.585000px;}
.y6e{bottom:685.905000px;}
.yc{bottom:687.885000px;}
.y8f{bottom:692.025000px;}
.y65{bottom:692.640000px;}
.y43{bottom:694.230000px;}
.y34{bottom:711.465000px;}
.y2a{bottom:723.885000px;}
.y56{bottom:727.455000px;}
.y7b{bottom:729.435000px;}
.y42{bottom:737.430000px;}
.y64{bottom:742.710000px;}
.h27{height:55.409062px;}
.hf{height:62.964844px;}
.h7{height:83.743242px;}
.h1c{height:94.447266px;}
.h21{height:94.932844px;}
.h6{height:99.162773px;}
.h4{height:105.151289px;}
.h5{height:105.277219px;}
.h1a{height:115.225664px;}
.h1b{height:115.351594px;}
.h3{height:115.875000px;}
.h19{height:118.757812px;}
.h11{height:118.876570px;}
.h18{height:123.732844px;}
.ha{height:125.929688px;}
.h10{height:126.055617px;}
.h16{height:127.949766px;}
.h17{height:128.059594px;}
.he{height:128.852227px;}
.h26{height:133.602539px;}
.h24{height:133.721297px;}
.h15{height:134.994375px;}
.h14{height:135.110250px;}
.hc{height:136.633711px;}
.hd{height:136.759641px;}
.h2d{height:137.285156px;}
.h29{height:138.352852px;}
.h23{height:141.670898px;}
.h25{height:141.796828px;}
.h2c{height:144.843750px;}
.h2b{height:144.959625px;}
.h13{height:146.708086px;}
.h20{height:146.834016px;}
.h1d{height:148.447266px;}
.h2e{height:148.788844px;}
.h1e{height:157.412109px;}
.h2a{height:157.538039px;}
.h1{height:158.541680px;}
.h2{height:158.660438px;}
.h1f{height:159.151289px;}
.h9{height:168.116133px;}
.hb{height:168.242063px;}
.h12{height:209.798859px;}
.h28{height:218.039344px;}
.h8{height:231.206906px;}
.h22{height:237.634383px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x39{left:9.468000px;}
.xe{left:10.800000px;}
.x9{left:23.508000px;}
.x15{left:34.092000px;}
.xf{left:39.132000px;}
.x19{left:40.212000px;}
.x2b{left:45.468000px;}
.x18{left:49.032000px;}
.x2c{left:50.328000px;}
.x17{left:52.092000px;}
.x16{left:55.152000px;}
.x10{left:56.772000px;}
.xb{left:64.800000px;}
.x27{left:66.780000px;}
.x1b{left:68.832000px;}
.x32{left:74.556000px;}
.x20{left:76.500000px;}
.x22{left:78.120000px;}
.x2e{left:81.324000px;}
.x30{left:83.052000px;}
.x23{left:85.140000px;}
.x21{left:89.820000px;}
.x2d{left:90.864000px;}
.x1a{left:98.172000px;}
.x1{left:106.056000px;}
.x2a{left:107.784000px;}
.x33{left:115.056000px;}
.x24{left:121.176000px;}
.x3{left:125.676000px;}
.x34{left:142.596000px;}
.x26{left:147.456000px;}
.x28{left:159.330000px;}
.x1e{left:161.205000px;}
.x13{left:183.270000px;}
.x14{left:235.905000px;}
.x6{left:245.550000px;}
.x8{left:250.590000px;}
.x7{left:277.275000px;}
.x11{left:293.730000px;}
.x29{left:295.710000px;}
.x2{left:312.195000px;}
.x12{left:338.550000px;}
.xc{left:340.890000px;}
.x5{left:356.115000px;}
.xa{left:372.930000px;}
.x1f{left:381.750000px;}
.x36{left:395.970000px;}
.x1d{left:411.375000px;}
.x1c{left:416.670000px;}
.x37{left:437.040000px;}
.x31{left:461.130000px;}
.xd{left:462.390000px;}
.x35{left:485.790000px;}
.x25{left:539.895000px;}
.x4{left:542.085000px;}
.x38{left:556.920000px;}
.x2f{left:614.625000px;}
@media print{
.v1{vertical-align:-42.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:28.416000pt;}
.v3{vertical-align:48.000000pt;}
.v2{vertical-align:54.016000pt;}
.v5{vertical-align:76.288000pt;}
.ls10{letter-spacing:-14.560000pt;}
.ls21{letter-spacing:-2.309333pt;}
.ls25{letter-spacing:-0.768000pt;}
.ls1{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.321067pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.227733pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.097067pt;}
.ls1e{letter-spacing:-0.083733pt;}
.lsd{letter-spacing:-0.053867pt;}
.lsc{letter-spacing:-0.029440pt;}
.ls13{letter-spacing:-0.028160pt;}
.ls6{letter-spacing:-0.024853pt;}
.ls8{letter-spacing:-0.012160pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.026880pt;}
.ls19{letter-spacing:0.035200pt;}
.ls2b{letter-spacing:0.063467pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.068267pt;}
.ls9{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.208000pt;}
.lse{letter-spacing:0.218880pt;}
.ls2{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.256533pt;}
.ls23{letter-spacing:0.292992pt;}
.ls29{letter-spacing:0.388480pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.858880pt;}
.ls12{letter-spacing:1.690667pt;}
.ls1f{letter-spacing:2.138667pt;}
.ls16{letter-spacing:54.208000pt;}
.ls11{letter-spacing:71.136000pt;}
.ls2a{letter-spacing:84.147200pt;}
.ls3{letter-spacing:84.192000pt;}
.ls28{letter-spacing:87.955200pt;}
.ls27{letter-spacing:88.000000pt;}
.ls14{letter-spacing:88.128000pt;}
.ls1a{letter-spacing:91.808000pt;}
.ls5{letter-spacing:95.392000pt;}
.ls1d{letter-spacing:477.664000pt;}
.ls4{letter-spacing:1231.005525pt;}
.lsf{letter-spacing:1396.730453pt;}
.wsd{word-spacing:-149.120000pt;}
.wsa{word-spacing:-117.120000pt;}
.ws12{word-spacing:-57.884928pt;}
.ws15{word-spacing:-53.111808pt;}
.ws17{word-spacing:-38.687147pt;}
.wsb{word-spacing:-36.320000pt;}
.ws16{word-spacing:-36.160000pt;}
.ws6{word-spacing:-33.730048pt;}
.ws10{word-spacing:-33.728000pt;}
.ws5{word-spacing:-33.701120pt;}
.wse{word-spacing:-33.617387pt;}
.wsf{word-spacing:-31.391787pt;}
.ws2{word-spacing:-31.386880pt;}
.ws8{word-spacing:-28.928000pt;}
.ws13{word-spacing:-28.672000pt;}
.ws4{word-spacing:-28.668928pt;}
.ws9{word-spacing:-26.469120pt;}
.wsc{word-spacing:-24.190080pt;}
.ws18{word-spacing:-24.154880pt;}
.ws11{word-spacing:-21.696000pt;}
.ws7{word-spacing:-19.170048pt;}
.ws0{word-spacing:-18.709120pt;}
.ws19{word-spacing:-16.922880pt;}
.ws3{word-spacing:-14.464000pt;}
.ws14{word-spacing:-12.631253pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-13.249280pt;}
._9{margin-left:-11.883008pt;}
._1{margin-left:-10.594560pt;}
._7{margin-left:-9.687637pt;}
._4{margin-left:-8.277333pt;}
._e{margin-left:-7.359787pt;}
._b{margin-left:-6.424320pt;}
._c{margin-left:-5.271893pt;}
._6{margin-left:-4.151680pt;}
._2{margin-left:-2.909696pt;}
._0{margin-left:-1.708800pt;}
._3{width:1.162667pt;}
._8{width:2.813483pt;}
._5{width:3.764480pt;}
._a{width:15.371947pt;}
._f{width:815.617109pt;}
.fs16{font-size:56.320000pt;}
.fs7{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs11{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fsf{font-size:117.120000pt;}
.fs10{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs8{font-size:138.880000pt;}
.fs9{font-size:139.008000pt;}
.fs14{font-size:144.000000pt;}
.fs15{font-size:144.128000pt;}
.fsc{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fs12{font-size:160.000000pt;}
.fs17{font-size:160.128000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fsb{font-size:213.248000pt;}
.fs6{font-size:235.008000pt;}
.fs13{font-size:256.128000pt;}
.y54{bottom:-14.304000pt;}
.y63{bottom:-11.104000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:8.832000pt;}
.y24{bottom:9.088000pt;}
.y7a{bottom:11.136000pt;}
.y28{bottom:12.864000pt;}
.y41{bottom:14.400000pt;}
.y55{bottom:15.136000pt;}
.yb{bottom:19.264000pt;}
.y6d{bottom:20.800000pt;}
.y23{bottom:27.904000pt;}
.y53{bottom:27.936000pt;}
.y16{bottom:38.560000pt;}
.y32{bottom:41.216000pt;}
.y62{bottom:41.696000pt;}
.ya{bottom:44.864000pt;}
.y40{bottom:46.240000pt;}
.y27{bottom:52.704000pt;}
.y7f{bottom:52.896000pt;}
.y22{bottom:60.000000pt;}
.y89{bottom:63.232000pt;}
.y52{bottom:70.176000pt;}
.y9{bottom:70.464000pt;}
.y31{bottom:79.616000pt;}
.y79{bottom:81.312000pt;}
.y3f{bottom:91.072000pt;}
.y26{bottom:91.104000pt;}
.y61{bottom:94.208000pt;}
.y6c{bottom:99.296000pt;}
.y15{bottom:100.032000pt;}
.y21{bottom:101.632000pt;}
.y51{bottom:105.376000pt;}
.y88{bottom:106.432000pt;}
.y30{bottom:118.016000pt;}
.y78{bottom:124.512000pt;}
.y25{bottom:129.504000pt;}
.y8{bottom:132.960000pt;}
.y3e{bottom:135.866667pt;}
.y60{bottom:137.733333pt;}
.y50{bottom:140.613333pt;}
.y20{bottom:143.226667pt;}
.y87{bottom:149.626667pt;}
.y14{bottom:151.226667pt;}
.y2f{bottom:156.453333pt;}
.y77{bottom:167.706667pt;}
.y7{bottom:171.360000pt;}
.y29{bottom:176.666667pt;}
.y8e{bottom:179.386667pt;}
.y3d{bottom:180.666667pt;}
.y4f{bottom:182.853333pt;}
.y5f{bottom:190.533333pt;}
.y86{bottom:192.826667pt;}
.y1f{bottom:193.146667pt;}
.y2e{bottom:194.853333pt;}
.y13{bottom:202.466667pt;}
.y76{bottom:210.946667pt;}
.y4e{bottom:218.053333pt;}
.y3c{bottom:225.506667pt;}
.y2d{bottom:233.253333pt;}
.y5e{bottom:233.440000pt;}
.y1e{bottom:234.786667pt;}
.y85{bottom:236.066667pt;}
.y8d{bottom:240.866667pt;}
.y12{bottom:253.666667pt;}
.y75{bottom:254.146667pt;}
.y4d{bottom:260.293333pt;}
.y2c{bottom:271.653333pt;}
.y1d{bottom:276.386667pt;}
.y3b{bottom:279.266667pt;}
.y5d{bottom:286.560000pt;}
.y8c{bottom:292.066667pt;}
.y4c{bottom:295.520000pt;}
.y74{bottom:297.346667pt;}
.y2b{bottom:310.080000pt;}
.y11{bottom:312.386667pt;}
.y6b{bottom:319.933333pt;}
.y84{bottom:322.466667pt;}
.y1c{bottom:326.306667pt;}
.y3a{bottom:333.026667pt;}
.y4b{bottom:337.760000pt;}
.y5c{bottom:339.360000pt;}
.y73{bottom:340.546667pt;}
.y8b{bottom:343.266667pt;}
.y10{bottom:353.533333pt;}
.y33{bottom:360.000000pt;}
.y1b{bottom:367.933333pt;}
.y4a{bottom:372.960000pt;}
.y6a{bottom:373.733333pt;}
.y83{bottom:375.293333pt;}
.y39{bottom:377.853333pt;}
.y72{bottom:383.773333pt;}
.y5b{bottom:392.186667pt;}
.yf{bottom:404.733333pt;}
.y49{bottom:405.053333pt;}
.y1a{bottom:409.533333pt;}
.y6{bottom:409.626667pt;}
.y93{bottom:412.546667pt;}
.y82{bottom:418.493333pt;}
.y38{bottom:422.653333pt;}
.y71{bottom:426.973333pt;}
.y69{bottom:427.493333pt;}
.y7e{bottom:434.533333pt;}
.y5a{bottom:435.386667pt;}
.y48{bottom:440.093333pt;}
.y5{bottom:441.666667pt;}
.y19{bottom:451.133333pt;}
.y92{bottom:453.826667pt;}
.y8a{bottom:455.613333pt;}
.ye{bottom:455.933333pt;}
.y81{bottom:461.693333pt;}
.y37{bottom:467.453333pt;}
.y70{bottom:470.173333pt;}
.y68{bottom:472.293333pt;}
.y4{bottom:475.106667pt;}
.y47{bottom:475.453333pt;}
.y59{bottom:488.186667pt;}
.y18{bottom:492.733333pt;}
.y7d{bottom:494.720000pt;}
.yd{bottom:507.173333pt;}
.y91{bottom:507.586667pt;}
.y46{bottom:510.693333pt;}
.y36{bottom:512.293333pt;}
.y6f{bottom:513.413333pt;}
.y3{bottom:513.506667pt;}
.y80{bottom:514.533333pt;}
.y67{bottom:516.800000pt;}
.y17{bottom:534.373333pt;}
.y7c{bottom:539.520000pt;}
.y58{bottom:541.026667pt;}
.y45{bottom:545.893333pt;}
.y2{bottom:554.626667pt;}
.y90{bottom:561.373333pt;}
.y66{bottom:570.880000pt;}
.y44{bottom:581.093333pt;}
.y35{bottom:588.413333pt;}
.y57{bottom:593.826667pt;}
.y1{bottom:605.853333pt;}
.y6e{bottom:609.693333pt;}
.yc{bottom:611.453333pt;}
.y8f{bottom:615.133333pt;}
.y65{bottom:615.680000pt;}
.y43{bottom:617.093333pt;}
.y34{bottom:632.413333pt;}
.y2a{bottom:643.453333pt;}
.y56{bottom:646.626667pt;}
.y7b{bottom:648.386667pt;}
.y42{bottom:655.493333pt;}
.y64{bottom:660.186667pt;}
.h27{height:49.252500pt;}
.hf{height:55.968750pt;}
.h7{height:74.438437pt;}
.h1c{height:83.953125pt;}
.h21{height:84.384750pt;}
.h6{height:88.144687pt;}
.h4{height:93.467812pt;}
.h5{height:93.579750pt;}
.h1a{height:102.422812pt;}
.h1b{height:102.534750pt;}
.h3{height:103.000000pt;}
.h19{height:105.562500pt;}
.h11{height:105.668063pt;}
.h18{height:109.984750pt;}
.ha{height:111.937500pt;}
.h10{height:112.049437pt;}
.h16{height:113.733125pt;}
.h17{height:113.830750pt;}
.he{height:114.535313pt;}
.h26{height:118.757812pt;}
.h24{height:118.863375pt;}
.h15{height:119.995000pt;}
.h14{height:120.098000pt;}
.hc{height:121.452188pt;}
.hd{height:121.564125pt;}
.h2d{height:122.031250pt;}
.h29{height:122.980312pt;}
.h23{height:125.929688pt;}
.h25{height:126.041625pt;}
.h2c{height:128.750000pt;}
.h2b{height:128.853000pt;}
.h13{height:130.407187pt;}
.h20{height:130.519125pt;}
.h1d{height:131.953125pt;}
.h2e{height:132.256750pt;}
.h1e{height:139.921875pt;}
.h2a{height:140.033813pt;}
.h1{height:140.925938pt;}
.h2{height:141.031500pt;}
.h1f{height:141.467812pt;}
.h9{height:149.436563pt;}
.hb{height:149.548500pt;}
.h12{height:186.487875pt;}
.h28{height:193.812750pt;}
.h8{height:205.517250pt;}
.h22{height:211.230562pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x39{left:8.416000pt;}
.xe{left:9.600000pt;}
.x9{left:20.896000pt;}
.x15{left:30.304000pt;}
.xf{left:34.784000pt;}
.x19{left:35.744000pt;}
.x2b{left:40.416000pt;}
.x18{left:43.584000pt;}
.x2c{left:44.736000pt;}
.x17{left:46.304000pt;}
.x16{left:49.024000pt;}
.x10{left:50.464000pt;}
.xb{left:57.600000pt;}
.x27{left:59.360000pt;}
.x1b{left:61.184000pt;}
.x32{left:66.272000pt;}
.x20{left:68.000000pt;}
.x22{left:69.440000pt;}
.x2e{left:72.288000pt;}
.x30{left:73.824000pt;}
.x23{left:75.680000pt;}
.x21{left:79.840000pt;}
.x2d{left:80.768000pt;}
.x1a{left:87.264000pt;}
.x1{left:94.272000pt;}
.x2a{left:95.808000pt;}
.x33{left:102.272000pt;}
.x24{left:107.712000pt;}
.x3{left:111.712000pt;}
.x34{left:126.752000pt;}
.x26{left:131.072000pt;}
.x28{left:141.626667pt;}
.x1e{left:143.293333pt;}
.x13{left:162.906667pt;}
.x14{left:209.693333pt;}
.x6{left:218.266667pt;}
.x8{left:222.746667pt;}
.x7{left:246.466667pt;}
.x11{left:261.093333pt;}
.x29{left:262.853333pt;}
.x2{left:277.506667pt;}
.x12{left:300.933333pt;}
.xc{left:303.013333pt;}
.x5{left:316.546667pt;}
.xa{left:331.493333pt;}
.x1f{left:339.333333pt;}
.x36{left:351.973333pt;}
.x1d{left:365.666667pt;}
.x1c{left:370.373333pt;}
.x37{left:388.480000pt;}
.x31{left:409.893333pt;}
.xd{left:411.013333pt;}
.x35{left:431.813333pt;}
.x25{left:479.906667pt;}
.x4{left:481.853333pt;}
.x38{left:495.040000pt;}
.x2f{left:546.333333pt;}
}




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