
    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_1879640448c73b8433d8a3d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ae10c8aa46ed6df40629599.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea02afb23c00c84c733aa99a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_05d45510dac8255ab39f153d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_6cf051fa4d2b5b9ce3ffae9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044922;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_ec66cefcccf05096e715af2a.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e532b38b087c2c926d1969c3.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-75.600000px;}
.v4{vertical-align:-66.420000px;}
.v1{vertical-align:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.254000px;}
.ls11{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.942000px;}
.lsf{letter-spacing:-0.834000px;}
.ls3d{letter-spacing:-0.792000px;}
.ls40{letter-spacing:-0.774000px;}
.ls3a{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.531600px;}
.ls12{letter-spacing:-0.528600px;}
.ls35{letter-spacing:-0.457800px;}
.ls3c{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.252000px;}
.ls33{letter-spacing:-0.226200px;}
.ls28{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.152400px;}
.ls2b{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.127200px;}
.ls27{letter-spacing:-0.126000px;}
.ls32{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls34{letter-spacing:-0.089400px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls2a{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.126000px;}
.ls31{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.188400px;}
.ls14{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.259800px;}
.ls3f{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.274200px;}
.ls1e{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.342600px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.377400px;}
.ls25{letter-spacing:0.442080px;}
.ls2f{letter-spacing:0.720000px;}
.ls22{letter-spacing:3.720000px;}
.ls24{letter-spacing:4.320000px;}
.ls4{letter-spacing:4.500000px;}
.ls30{letter-spacing:5.040000px;}
.ls3e{letter-spacing:6.660000px;}
.ls5{letter-spacing:8.820000px;}
.ls20{letter-spacing:11.520000px;}
.ls2{letter-spacing:13.860000px;}
.ls39{letter-spacing:15.120000px;}
.ls29{letter-spacing:16.020000px;}
.ls2e{letter-spacing:21.600000px;}
.ls38{letter-spacing:26.640000px;}
.ls6{letter-spacing:26.820000px;}
.ls36{letter-spacing:52.560000px;}
.ls21{letter-spacing:71.460000px;}
.ls1{letter-spacing:194.220000px;}
.ls37{letter-spacing:195.840000px;}
.ls41{letter-spacing:1264.056000px;}
.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;}
}
.ws13{word-spacing:-16.865400px;}
.ws14{word-spacing:-16.822200px;}
.ws23{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.453200px;}
.ws20{word-spacing:-16.450800px;}
.ws12{word-spacing:-16.407600px;}
.ws16{word-spacing:-16.254600px;}
.ws24{word-spacing:-16.102200px;}
.ws10{word-spacing:-15.984000px;}
.ws26{word-spacing:-15.948000px;}
.ws25{word-spacing:-15.840000px;}
.ws27{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.199800px;}
.ws28{word-spacing:-15.120000px;}
.ws1a{word-spacing:-15.046800px;}
.ws1b{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.812800px;}
.ws1c{word-spacing:-14.796000px;}
.ws1d{word-spacing:-14.580000px;}
.ws17{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.626000px;}
.wse{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.374000px;}
.ws19{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.157400px;}
.ws2{word-spacing:-13.054200px;}
.wsd{word-spacing:-12.906000px;}
.ws0{word-spacing:-12.780000px;}
.ws3{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.946000px;}
.ws5{word-spacing:-11.838000px;}
.ws6{word-spacing:-11.700000px;}
.ws22{word-spacing:-10.350600px;}
.ws21{word-spacing:-10.213800px;}
.ws15{word-spacing:0.000000px;}
._1{margin-left:-2.359440px;}
._0{margin-left:-1.185600px;}
._2{width:1.081920px;}
._3{width:2.116560px;}
._8{width:3.231600px;}
._11{width:4.270320px;}
._7{width:5.346000px;}
._f{width:6.805200px;}
._6{width:8.469600px;}
._5{width:9.864000px;}
._16{width:10.954560px;}
._15{width:12.360960px;}
._1a{width:13.583760px;}
._9{width:15.336000px;}
._a{width:16.698000px;}
._4{width:17.874000px;}
._19{width:18.948000px;}
._17{width:21.180000px;}
._13{width:22.320000px;}
._14{width:23.575200px;}
._10{width:24.773760px;}
._c{width:26.706000px;}
._12{width:28.193520px;}
._1b{width:29.275680px;}
._1c{width:30.737760px;}
._b{width:32.304000px;}
._1f{width:33.660000px;}
._20{width:44.982000px;}
._1e{width:51.260640px;}
._1d{width:52.560000px;}
._d{width:59.284800px;}
._e{width:61.636080px;}
._18{width:71.460000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs7{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.880000px;}
.y78{bottom:90.360000px;}
.y61{bottom:96.300000px;}
.y58{bottom:96.660000px;}
.y94{bottom:97.380000px;}
.y2d{bottom:99.036000px;}
.y9a{bottom:102.456000px;}
.y77{bottom:109.476000px;}
.y57{bottom:112.176000px;}
.y60{bottom:113.616000px;}
.y93{bottom:116.316000px;}
.y2c{bottom:118.116000px;}
.y99{bottom:121.356000px;}
.y56{bottom:127.656000px;}
.y76{bottom:128.376000px;}
.y5f{bottom:130.716000px;}
.y92{bottom:135.396000px;}
.y2b{bottom:137.016000px;}
.y98{bottom:139.896000px;}
.y55{bottom:143.136000px;}
.y75{bottom:147.456000px;}
.y5e{bottom:147.996000px;}
.y91{bottom:154.290000px;}
.y2a{bottom:156.090000px;}
.y97{bottom:157.170000px;}
.y54{bottom:158.790000px;}
.y5d{bottom:165.270000px;}
.y74{bottom:166.350000px;}
.y90{bottom:173.190000px;}
.y53{bottom:174.270000px;}
.y96{bottom:174.810000px;}
.y29{bottom:174.990000px;}
.y5c{bottom:182.550000px;}
.y73{bottom:185.250000px;}
.y52{bottom:189.750000px;}
.y95{bottom:190.110000px;}
.y8f{bottom:192.270000px;}
.y28{bottom:193.890000px;}
.y5b{bottom:199.830000px;}
.y72{bottom:204.330000px;}
.y51{bottom:205.230000px;}
.y8e{bottom:211.170000px;}
.y27{bottom:212.970000px;}
.y5a{bottom:217.110000px;}
.y50{bottom:220.890000px;}
.yb1{bottom:222.150000px;}
.y71{bottom:223.230000px;}
.y8d{bottom:230.250000px;}
.y59{bottom:231.150000px;}
.y26{bottom:231.870000px;}
.yb0{bottom:236.010000px;}
.y4f{bottom:236.370000px;}
.y70{bottom:242.310000px;}
.y8c{bottom:249.150000px;}
.yaf{bottom:250.410000px;}
.y25{bottom:250.950000px;}
.y4e{bottom:251.850000px;}
.y6f{bottom:261.210000px;}
.y4d{bottom:267.330000px;}
.y8b{bottom:268.050000px;}
.y24{bottom:269.850000px;}
.y6e{bottom:280.155000px;}
.y4c{bottom:282.855000px;}
.yae{bottom:284.295000px;}
.y8a{bottom:287.175000px;}
.y23{bottom:288.795000px;}
.y4b{bottom:298.515000px;}
.y6d{bottom:299.235000px;}
.y89{bottom:306.075000px;}
.y22{bottom:307.875000px;}
.y4a{bottom:313.995000px;}
.y6c{bottom:318.135000px;}
.y88{bottom:325.155000px;}
.y21{bottom:326.775000px;}
.y49{bottom:329.475000px;}
.y6b{bottom:337.215000px;}
.y87{bottom:344.055000px;}
.y48{bottom:344.955000px;}
.y20{bottom:345.855000px;}
.y6a{bottom:356.115000px;}
.y47{bottom:360.615000px;}
.y86{bottom:362.955000px;}
.y1f{bottom:363.675000px;}
.y69{bottom:375.195000px;}
.y46{bottom:376.095000px;}
.y1e{bottom:377.895000px;}
.y85{bottom:382.035000px;}
.y45{bottom:391.575000px;}
.y1d{bottom:393.375000px;}
.y68{bottom:394.095000px;}
.y84{bottom:400.935000px;}
.y44{bottom:407.055000px;}
.y1c{bottom:408.855000px;}
.y67{bottom:412.995000px;}
.y83{bottom:420.015000px;}
.y43{bottom:422.715000px;}
.y1b{bottom:424.335000px;}
.y66{bottom:432.075000px;}
.yad{bottom:438.195000px;}
.y42{bottom:438.915000px;}
.y1a{bottom:439.995000px;}
.y65{bottom:450.975000px;}
.yac{bottom:453.675000px;}
.y19{bottom:455.505000px;}
.y41{bottom:457.845000px;}
.yab{bottom:469.185000px;}
.y64{bottom:470.085000px;}
.y18{bottom:470.985000px;}
.y40{bottom:476.925000px;}
.yaa{bottom:484.845000px;}
.y17{bottom:486.465000px;}
.y63{bottom:488.985000px;}
.y3f{bottom:495.105000px;}
.y82{bottom:495.825000px;}
.ya9{bottom:500.325000px;}
.y16{bottom:501.945000px;}
.y62{bottom:507.885000px;}
.y3e{bottom:510.585000px;}
.y81{bottom:514.905000px;}
.ya8{bottom:515.805000px;}
.y15{bottom:517.605000px;}
.y3d{bottom:526.965000px;}
.ya7{bottom:531.285000px;}
.y14{bottom:533.085000px;}
.y80{bottom:533.805000px;}
.y3c{bottom:545.865000px;}
.ya6{bottom:546.945000px;}
.y13{bottom:548.565000px;}
.y7f{bottom:552.885000px;}
.ya5{bottom:562.425000px;}
.y12{bottom:564.045000px;}
.y3b{bottom:564.945000px;}
.y7e{bottom:571.785000px;}
.ya4{bottom:577.905000px;}
.y11{bottom:579.165000px;}
.y3a{bottom:583.845000px;}
.y7d{bottom:590.685000px;}
.y10{bottom:593.385000px;}
.y39{bottom:602.745000px;}
.yf{bottom:609.045000px;}
.y7c{bottom:609.225000px;}
.y38{bottom:621.825000px;}
.ye{bottom:624.525000px;}
.y7b{bottom:626.505000px;}
.yd{bottom:640.050000px;}
.y37{bottom:640.770000px;}
.y7a{bottom:643.830000px;}
.yc{bottom:655.530000px;}
.y36{bottom:659.850000px;}
.y79{bottom:661.110000px;}
.ya3{bottom:671.190000px;}
.yb{bottom:671.910000px;}
.y35{bottom:678.750000px;}
.ya2{bottom:686.670000px;}
.ya{bottom:690.810000px;}
.y34{bottom:697.650000px;}
.ya1{bottom:702.150000px;}
.y9{bottom:709.890000px;}
.y33{bottom:716.730000px;}
.ya0{bottom:717.630000px;}
.y8{bottom:728.790000px;}
.y9f{bottom:733.290000px;}
.y32{bottom:735.630000px;}
.y9e{bottom:748.770000px;}
.y31{bottom:754.710000px;}
.y7{bottom:763.890000px;}
.y9d{bottom:764.250000px;}
.y6{bottom:769.110000px;}
.y30{bottom:773.610000px;}
.y9c{bottom:779.730000px;}
.y5{bottom:782.790000px;}
.y2f{bottom:792.690000px;}
.y9b{bottom:795.390000px;}
.y4{bottom:796.650000px;}
.y2{bottom:813.240000px;}
.y2e{bottom:824.580000px;}
.y1{bottom:828.000000px;}
.h6{height:12.335625px;}
.h5{height:47.344922px;}
.h3{height:50.171484px;}
.h2{height:51.519375px;}
.h9{height:52.998047px;}
.ha{height:54.421875px;}
.hf{height:58.621992px;}
.hc{height:58.651172px;}
.hd{height:59.383125px;}
.hb{height:60.226875px;}
.he{height:64.978594px;}
.h8{height:65.010937px;}
.h7{height:66.757500px;}
.h4{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x4{left:84.995991px;}
.x2{left:86.795991px;}
.x9{left:106.235991px;}
.x1{left:131.075991px;}
.x8{left:138.095991px;}
.x5{left:186.689991px;}
.x7{left:265.934991px;}
.xc{left:269.354991px;}
.x3{left:301.214991px;}
.x6{left:314.714991px;}
.xd{left:404.024991px;}
.xa{left:518.009991px;}
.xb{left:543.749991px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v4{vertical-align:-59.040000pt;}
.v1{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls13{letter-spacing:-1.114667pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.837333pt;}
.lsf{letter-spacing:-0.741333pt;}
.ls3d{letter-spacing:-0.704000pt;}
.ls40{letter-spacing:-0.688000pt;}
.ls3a{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.472533pt;}
.ls12{letter-spacing:-0.469867pt;}
.ls35{letter-spacing:-0.406933pt;}
.ls3c{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls33{letter-spacing:-0.201067pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.135467pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.113067pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls32{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls34{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls2a{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.112000pt;}
.ls31{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.167467pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls3f{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.243733pt;}
.ls1e{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.304533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.335467pt;}
.ls25{letter-spacing:0.392960pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls22{letter-spacing:3.306667pt;}
.ls24{letter-spacing:3.840000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls30{letter-spacing:4.480000pt;}
.ls3e{letter-spacing:5.920000pt;}
.ls5{letter-spacing:7.840000pt;}
.ls20{letter-spacing:10.240000pt;}
.ls2{letter-spacing:12.320000pt;}
.ls39{letter-spacing:13.440000pt;}
.ls29{letter-spacing:14.240000pt;}
.ls2e{letter-spacing:19.200000pt;}
.ls38{letter-spacing:23.680000pt;}
.ls6{letter-spacing:23.840000pt;}
.ls36{letter-spacing:46.720000pt;}
.ls21{letter-spacing:63.520000pt;}
.ls1{letter-spacing:172.640000pt;}
.ls37{letter-spacing:174.080000pt;}
.ls41{letter-spacing:1123.605333pt;}
.ws13{word-spacing:-14.991467pt;}
.ws14{word-spacing:-14.953067pt;}
.ws23{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.625067pt;}
.ws20{word-spacing:-14.622933pt;}
.ws12{word-spacing:-14.584533pt;}
.ws16{word-spacing:-14.448533pt;}
.ws24{word-spacing:-14.313067pt;}
.ws10{word-spacing:-14.208000pt;}
.ws26{word-spacing:-14.176000pt;}
.ws25{word-spacing:-14.080000pt;}
.ws27{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.510933pt;}
.ws28{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.374933pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.166933pt;}
.ws1c{word-spacing:-13.152000pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.112000pt;}
.wse{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.888000pt;}
.ws19{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.695467pt;}
.ws2{word-spacing:-11.603733pt;}
.wsd{word-spacing:-11.472000pt;}
.ws0{word-spacing:-11.360000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.618667pt;}
.ws5{word-spacing:-10.522667pt;}
.ws6{word-spacing:-10.400000pt;}
.ws22{word-spacing:-9.200533pt;}
.ws21{word-spacing:-9.078933pt;}
.ws15{word-spacing:0.000000pt;}
._1{margin-left:-2.097280pt;}
._0{margin-left:-1.053867pt;}
._2{width:0.961707pt;}
._3{width:1.881387pt;}
._8{width:2.872533pt;}
._11{width:3.795840pt;}
._7{width:4.752000pt;}
._f{width:6.049067pt;}
._6{width:7.528533pt;}
._5{width:8.768000pt;}
._16{width:9.737387pt;}
._15{width:10.987520pt;}
._1a{width:12.074453pt;}
._9{width:13.632000pt;}
._a{width:14.842667pt;}
._4{width:15.888000pt;}
._19{width:16.842667pt;}
._17{width:18.826667pt;}
._13{width:19.840000pt;}
._14{width:20.955733pt;}
._10{width:22.021120pt;}
._c{width:23.738667pt;}
._12{width:25.060907pt;}
._1b{width:26.022827pt;}
._1c{width:27.322453pt;}
._b{width:28.714667pt;}
._1f{width:29.920000pt;}
._20{width:39.984000pt;}
._1e{width:45.565013pt;}
._1d{width:46.720000pt;}
._d{width:52.697600pt;}
._e{width:54.787627pt;}
._18{width:63.520000pt;}
.fs3{font-size:10.880000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.560000pt;}
.y78{bottom:80.320000pt;}
.y61{bottom:85.600000pt;}
.y58{bottom:85.920000pt;}
.y94{bottom:86.560000pt;}
.y2d{bottom:88.032000pt;}
.y9a{bottom:91.072000pt;}
.y77{bottom:97.312000pt;}
.y57{bottom:99.712000pt;}
.y60{bottom:100.992000pt;}
.y93{bottom:103.392000pt;}
.y2c{bottom:104.992000pt;}
.y99{bottom:107.872000pt;}
.y56{bottom:113.472000pt;}
.y76{bottom:114.112000pt;}
.y5f{bottom:116.192000pt;}
.y92{bottom:120.352000pt;}
.y2b{bottom:121.792000pt;}
.y98{bottom:124.352000pt;}
.y55{bottom:127.232000pt;}
.y75{bottom:131.072000pt;}
.y5e{bottom:131.552000pt;}
.y91{bottom:137.146667pt;}
.y2a{bottom:138.746667pt;}
.y97{bottom:139.706667pt;}
.y54{bottom:141.146667pt;}
.y5d{bottom:146.906667pt;}
.y74{bottom:147.866667pt;}
.y90{bottom:153.946667pt;}
.y53{bottom:154.906667pt;}
.y96{bottom:155.386667pt;}
.y29{bottom:155.546667pt;}
.y5c{bottom:162.266667pt;}
.y73{bottom:164.666667pt;}
.y52{bottom:168.666667pt;}
.y95{bottom:168.986667pt;}
.y8f{bottom:170.906667pt;}
.y28{bottom:172.346667pt;}
.y5b{bottom:177.626667pt;}
.y72{bottom:181.626667pt;}
.y51{bottom:182.426667pt;}
.y8e{bottom:187.706667pt;}
.y27{bottom:189.306667pt;}
.y5a{bottom:192.986667pt;}
.y50{bottom:196.346667pt;}
.yb1{bottom:197.466667pt;}
.y71{bottom:198.426667pt;}
.y8d{bottom:204.666667pt;}
.y59{bottom:205.466667pt;}
.y26{bottom:206.106667pt;}
.yb0{bottom:209.786667pt;}
.y4f{bottom:210.106667pt;}
.y70{bottom:215.386667pt;}
.y8c{bottom:221.466667pt;}
.yaf{bottom:222.586667pt;}
.y25{bottom:223.066667pt;}
.y4e{bottom:223.866667pt;}
.y6f{bottom:232.186667pt;}
.y4d{bottom:237.626667pt;}
.y8b{bottom:238.266667pt;}
.y24{bottom:239.866667pt;}
.y6e{bottom:249.026667pt;}
.y4c{bottom:251.426667pt;}
.yae{bottom:252.706667pt;}
.y8a{bottom:255.266667pt;}
.y23{bottom:256.706667pt;}
.y4b{bottom:265.346667pt;}
.y6d{bottom:265.986667pt;}
.y89{bottom:272.066667pt;}
.y22{bottom:273.666667pt;}
.y4a{bottom:279.106667pt;}
.y6c{bottom:282.786667pt;}
.y88{bottom:289.026667pt;}
.y21{bottom:290.466667pt;}
.y49{bottom:292.866667pt;}
.y6b{bottom:299.746667pt;}
.y87{bottom:305.826667pt;}
.y48{bottom:306.626667pt;}
.y20{bottom:307.426667pt;}
.y6a{bottom:316.546667pt;}
.y47{bottom:320.546667pt;}
.y86{bottom:322.626667pt;}
.y1f{bottom:323.266667pt;}
.y69{bottom:333.506667pt;}
.y46{bottom:334.306667pt;}
.y1e{bottom:335.906667pt;}
.y85{bottom:339.586667pt;}
.y45{bottom:348.066667pt;}
.y1d{bottom:349.666667pt;}
.y68{bottom:350.306667pt;}
.y84{bottom:356.386667pt;}
.y44{bottom:361.826667pt;}
.y1c{bottom:363.426667pt;}
.y67{bottom:367.106667pt;}
.y83{bottom:373.346667pt;}
.y43{bottom:375.746667pt;}
.y1b{bottom:377.186667pt;}
.y66{bottom:384.066667pt;}
.yad{bottom:389.506667pt;}
.y42{bottom:390.146667pt;}
.y1a{bottom:391.106667pt;}
.y65{bottom:400.866667pt;}
.yac{bottom:403.266667pt;}
.y19{bottom:404.893333pt;}
.y41{bottom:406.973333pt;}
.yab{bottom:417.053333pt;}
.y64{bottom:417.853333pt;}
.y18{bottom:418.653333pt;}
.y40{bottom:423.933333pt;}
.yaa{bottom:430.973333pt;}
.y17{bottom:432.413333pt;}
.y63{bottom:434.653333pt;}
.y3f{bottom:440.093333pt;}
.y82{bottom:440.733333pt;}
.ya9{bottom:444.733333pt;}
.y16{bottom:446.173333pt;}
.y62{bottom:451.453333pt;}
.y3e{bottom:453.853333pt;}
.y81{bottom:457.693333pt;}
.ya8{bottom:458.493333pt;}
.y15{bottom:460.093333pt;}
.y3d{bottom:468.413333pt;}
.ya7{bottom:472.253333pt;}
.y14{bottom:473.853333pt;}
.y80{bottom:474.493333pt;}
.y3c{bottom:485.213333pt;}
.ya6{bottom:486.173333pt;}
.y13{bottom:487.613333pt;}
.y7f{bottom:491.453333pt;}
.ya5{bottom:499.933333pt;}
.y12{bottom:501.373333pt;}
.y3b{bottom:502.173333pt;}
.y7e{bottom:508.253333pt;}
.ya4{bottom:513.693333pt;}
.y11{bottom:514.813333pt;}
.y3a{bottom:518.973333pt;}
.y7d{bottom:525.053333pt;}
.y10{bottom:527.453333pt;}
.y39{bottom:535.773333pt;}
.yf{bottom:541.373333pt;}
.y7c{bottom:541.533333pt;}
.y38{bottom:552.733333pt;}
.ye{bottom:555.133333pt;}
.y7b{bottom:556.893333pt;}
.yd{bottom:568.933333pt;}
.y37{bottom:569.573333pt;}
.y7a{bottom:572.293333pt;}
.yc{bottom:582.693333pt;}
.y36{bottom:586.533333pt;}
.y79{bottom:587.653333pt;}
.ya3{bottom:596.613333pt;}
.yb{bottom:597.253333pt;}
.y35{bottom:603.333333pt;}
.ya2{bottom:610.373333pt;}
.ya{bottom:614.053333pt;}
.y34{bottom:620.133333pt;}
.ya1{bottom:624.133333pt;}
.y9{bottom:631.013333pt;}
.y33{bottom:637.093333pt;}
.ya0{bottom:637.893333pt;}
.y8{bottom:647.813333pt;}
.y9f{bottom:651.813333pt;}
.y32{bottom:653.893333pt;}
.y9e{bottom:665.573333pt;}
.y31{bottom:670.853333pt;}
.y7{bottom:679.013333pt;}
.y9d{bottom:679.333333pt;}
.y6{bottom:683.653333pt;}
.y30{bottom:687.653333pt;}
.y9c{bottom:693.093333pt;}
.y5{bottom:695.813333pt;}
.y2f{bottom:704.613333pt;}
.y9b{bottom:707.013333pt;}
.y4{bottom:708.133333pt;}
.y2{bottom:722.880000pt;}
.y2e{bottom:732.960000pt;}
.y1{bottom:736.000000pt;}
.h6{height:10.965000pt;}
.h5{height:42.084375pt;}
.h3{height:44.596875pt;}
.h2{height:45.795000pt;}
.h9{height:47.109375pt;}
.ha{height:48.375000pt;}
.hf{height:52.108438pt;}
.hc{height:52.134375pt;}
.hd{height:52.785000pt;}
.hb{height:53.535000pt;}
.he{height:57.758750pt;}
.h8{height:57.787500pt;}
.h7{height:59.340000pt;}
.h4{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x4{left:75.551992pt;}
.x2{left:77.151992pt;}
.x9{left:94.431992pt;}
.x1{left:116.511992pt;}
.x8{left:122.751992pt;}
.x5{left:165.946658pt;}
.x7{left:236.386658pt;}
.xc{left:239.426658pt;}
.x3{left:267.746658pt;}
.x6{left:279.746658pt;}
.xd{left:359.133325pt;}
.xa{left:460.453325pt;}
.xb{left:483.333325pt;}
}




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