
    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_104c9f6c383a8a2696cf34c3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c68d0df1281cbcaebbe276c7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51f028126405900efd13b32d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_260a180c18ab7dbb59f1883e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_38065a825d5ddf2c34b33f71.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v6{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v1{vertical-align:-55.440000px;}
.v2{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.000000px;}
.ls16{letter-spacing:-1.260000px;}
.ls20{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.774000px;}
.ls39{letter-spacing:-0.666000px;}
.ls38{letter-spacing:-0.612000px;}
.ls3b{letter-spacing:-0.566400px;}
.ls10{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.269400px;}
.ls37{letter-spacing:-0.259800px;}
.ls2f{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls22{letter-spacing:-0.045360px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls2e{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.144720px;}
.ls19{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.206400px;}
.ls2d{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.223920px;}
.ls2b{letter-spacing:0.259800px;}
.ls34{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.273360px;}
.lse{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.297360px;}
.ls17{letter-spacing:0.306600px;}
.ls25{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.620000px;}
.ls8{letter-spacing:2.340000px;}
.ls32{letter-spacing:3.780000px;}
.ls4{letter-spacing:4.500000px;}
.ls9{letter-spacing:5.220000px;}
.ls33{letter-spacing:5.940000px;}
.ls1a{letter-spacing:6.660000px;}
.ls24{letter-spacing:7.380000px;}
.ls30{letter-spacing:8.100000px;}
.ls36{letter-spacing:8.820000px;}
.ls7{letter-spacing:12.420000px;}
.ls28{letter-spacing:13.860000px;}
.ls35{letter-spacing:19.620000px;}
.ls29{letter-spacing:21.060000px;}
.ls31{letter-spacing:23.940000px;}
.ls2c{letter-spacing:33.300000px;}
.ls6{letter-spacing:156.564000px;}
.ls1d{letter-spacing:811.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;}
}
.ws4{word-spacing:-18.144000px;}
.wsa{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.246600px;}
.ws17{word-spacing:-15.199800px;}
.ws1e{word-spacing:-15.146400px;}
.wse{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.400000px;}
.ws1d{word-spacing:-14.373600px;}
.ws1b{word-spacing:-14.328000px;}
.ws6{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.626000px;}
.ws14{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.284000px;}
.ws18{word-spacing:-13.248000px;}
.ws3{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.836200px;}
.ws2{word-spacing:-11.700000px;}
.ws16{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.wsf{word-spacing:0.000000px;}
._17{margin-left:-2.904480px;}
._0{margin-left:-1.013040px;}
._1{width:1.063920px;}
._6{width:2.622000px;}
._12{width:3.721200px;}
._7{width:4.765680px;}
._a{width:6.137280px;}
._9{width:7.888320px;}
._8{width:9.492480px;}
._4{width:10.570080px;}
._3{width:11.988000px;}
._e{width:13.565520px;}
._5{width:14.614080px;}
._c{width:16.155120px;}
._2{width:17.382000px;}
._13{width:18.497760px;}
._11{width:19.760400px;}
._d{width:20.796480px;}
._16{width:22.250880px;}
._1a{width:24.030720px;}
._1f{width:25.093200px;}
._22{width:26.278320px;}
._10{width:27.562800px;}
._f{width:28.823760px;}
._25{width:30.897360px;}
._1d{width:33.305280px;}
._18{width:34.502400px;}
._b{width:41.197920px;}
._20{width:42.324480px;}
._21{width:43.781760px;}
._1e{width:46.266000px;}
._23{width:56.289360px;}
._14{width:63.377280px;}
._24{width:80.078400px;}
._1c{width:88.249200px;}
._1b{width:89.469360px;}
._19{width:601.500000px;}
._15{width:1482.240000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:1.260000px;}
.y75{bottom:4.140000px;}
.y74{bottom:18.180000px;}
.yca{bottom:20.880000px;}
.y71{bottom:21.420000px;}
.y70{bottom:36.720000px;}
.yc9{bottom:37.620000px;}
.yc8{bottom:54.720000px;}
.y8{bottom:56.376000px;}
.y63{bottom:58.356000px;}
.yc7{bottom:70.230000px;}
.y7{bottom:70.596000px;}
.y62{bottom:76.896000px;}
.ycb{bottom:91.836000px;}
.y6{bottom:93.996000px;}
.y72{bottom:95.976000px;}
.y6e{bottom:97.416000px;}
.yc5{bottom:99.036000px;}
.yaf{bottom:102.636000px;}
.y5{bottom:106.776000px;}
.y73{bottom:110.016000px;}
.y6d{bottom:116.136000px;}
.yc4{bottom:117.576000px;}
.yae{bottom:121.176000px;}
.y6c{bottom:134.676000px;}
.yc3{bottom:136.296000px;}
.y61{bottom:137.556000px;}
.y3f{bottom:138.816000px;}
.yad{bottom:139.896000px;}
.y6b{bottom:153.390000px;}
.yc2{bottom:154.830000px;}
.y60{bottom:156.090000px;}
.y3e{bottom:157.530000px;}
.yac{bottom:158.430000px;}
.y6a{bottom:171.930000px;}
.yc1{bottom:173.550000px;}
.y5f{bottom:174.810000px;}
.y3d{bottom:176.070000px;}
.yab{bottom:177.150000px;}
.y69{bottom:190.470000px;}
.yc0{bottom:192.090000px;}
.y5e{bottom:193.350000px;}
.y3c{bottom:194.790000px;}
.yaa{bottom:195.690000px;}
.y68{bottom:209.190000px;}
.ybf{bottom:210.810000px;}
.y5d{bottom:211.890000px;}
.y3b{bottom:213.330000px;}
.ya9{bottom:214.230000px;}
.y67{bottom:227.730000px;}
.ybe{bottom:229.350000px;}
.y5c{bottom:230.610000px;}
.y3a{bottom:231.870000px;}
.ya8{bottom:232.950000px;}
.y66{bottom:246.450000px;}
.ybd{bottom:247.890000px;}
.y5b{bottom:249.150000px;}
.y39{bottom:250.590000px;}
.ya7{bottom:251.490000px;}
.y65{bottom:264.990000px;}
.ybc{bottom:266.610000px;}
.y5a{bottom:267.870000px;}
.y38{bottom:269.130000px;}
.ya6{bottom:270.210000px;}
.y64{bottom:283.575000px;}
.ybb{bottom:285.195000px;}
.y59{bottom:286.455000px;}
.y37{bottom:287.895000px;}
.ya5{bottom:288.795000px;}
.y6f{bottom:297.615000px;}
.yba{bottom:303.915000px;}
.y58{bottom:304.995000px;}
.y36{bottom:306.435000px;}
.ya4{bottom:307.515000px;}
.yb9{bottom:322.455000px;}
.y57{bottom:323.715000px;}
.y35{bottom:324.975000px;}
.ya3{bottom:326.055000px;}
.yb8{bottom:340.995000px;}
.y56{bottom:342.255000px;}
.y34{bottom:343.695000px;}
.ya2{bottom:344.595000px;}
.yb7{bottom:359.715000px;}
.y55{bottom:360.975000px;}
.y33{bottom:362.235000px;}
.ya1{bottom:363.315000px;}
.yb6{bottom:378.255000px;}
.y54{bottom:379.515000px;}
.y32{bottom:380.955000px;}
.ya0{bottom:381.855000px;}
.yb5{bottom:396.975000px;}
.y53{bottom:398.055000px;}
.y31{bottom:399.495000px;}
.y9f{bottom:400.575000px;}
.yb4{bottom:415.515000px;}
.y52{bottom:416.775000px;}
.y30{bottom:418.035000px;}
.y9e{bottom:419.115000px;}
.yb3{bottom:434.055000px;}
.y51{bottom:435.315000px;}
.y2f{bottom:436.755000px;}
.y9d{bottom:437.655000px;}
.yb2{bottom:452.775000px;}
.y50{bottom:454.035000px;}
.y2e{bottom:455.295000px;}
.y9c{bottom:456.375000px;}
.yb1{bottom:471.315000px;}
.y4f{bottom:472.575000px;}
.y2d{bottom:474.015000px;}
.y9b{bottom:474.915000px;}
.yb0{bottom:490.035000px;}
.y4e{bottom:491.295000px;}
.y2c{bottom:492.555000px;}
.y9a{bottom:493.635000px;}
.yc6{bottom:504.075000px;}
.y4d{bottom:509.835000px;}
.y2b{bottom:511.275000px;}
.y99{bottom:512.175000px;}
.y4c{bottom:528.375000px;}
.y2a{bottom:529.815000px;}
.y98{bottom:530.715000px;}
.y4b{bottom:547.095000px;}
.y29{bottom:548.355000px;}
.y97{bottom:549.435000px;}
.y4a{bottom:565.665000px;}
.y28{bottom:567.105000px;}
.y96{bottom:568.005000px;}
.y49{bottom:584.385000px;}
.y27{bottom:585.645000px;}
.y95{bottom:586.725000px;}
.y48{bottom:602.925000px;}
.y26{bottom:604.365000px;}
.y94{bottom:605.265000px;}
.y47{bottom:621.465000px;}
.y25{bottom:622.905000px;}
.y93{bottom:623.985000px;}
.y46{bottom:640.185000px;}
.y24{bottom:641.445000px;}
.y92{bottom:642.525000px;}
.y45{bottom:658.725000px;}
.y23{bottom:660.165000px;}
.y91{bottom:661.065000px;}
.y44{bottom:677.445000px;}
.y22{bottom:678.705000px;}
.y90{bottom:679.785000px;}
.y43{bottom:695.985000px;}
.y21{bottom:697.425000px;}
.y8f{bottom:698.325000px;}
.y42{bottom:714.525000px;}
.y20{bottom:715.965000px;}
.y8e{bottom:717.045000px;}
.y41{bottom:733.245000px;}
.y1f{bottom:734.505000px;}
.y8d{bottom:735.585000px;}
.y40{bottom:751.785000px;}
.y1e{bottom:753.225000px;}
.y8c{bottom:754.125000px;}
.y1d{bottom:770.505000px;}
.y8b{bottom:772.845000px;}
.y1c{bottom:787.785000px;}
.y8a{bottom:791.385000px;}
.y89{bottom:810.105000px;}
.y1b{bottom:820.185000px;}
.y88{bottom:828.645000px;}
.y1a{bottom:835.665000px;}
.y87{bottom:847.185000px;}
.y19{bottom:851.190000px;}
.y86{bottom:865.950000px;}
.y18{bottom:866.850000px;}
.y17{bottom:882.330000px;}
.y85{bottom:884.490000px;}
.y16{bottom:897.810000px;}
.y84{bottom:903.210000px;}
.y15{bottom:913.290000px;}
.y83{bottom:921.750000px;}
.y14{bottom:928.950000px;}
.y82{bottom:940.470000px;}
.y13{bottom:944.430000px;}
.y81{bottom:959.010000px;}
.y12{bottom:959.910000px;}
.y11{bottom:975.390000px;}
.y80{bottom:977.550000px;}
.y10{bottom:991.050000px;}
.y7f{bottom:996.270000px;}
.yf{bottom:1006.530000px;}
.y7e{bottom:1014.810000px;}
.ye{bottom:1023.090000px;}
.y7d{bottom:1033.530000px;}
.yd{bottom:1043.790000px;}
.y7c{bottom:1052.070000px;}
.yc{bottom:1063.770000px;}
.y7b{bottom:1070.610000px;}
.yb{bottom:1081.770000px;}
.y7a{bottom:1089.330000px;}
.ya{bottom:1102.470000px;}
.y79{bottom:1107.870000px;}
.y9{bottom:1123.170000px;}
.y78{bottom:1126.590000px;}
.y4{bottom:1142.460000px;}
.y77{bottom:1145.160000px;}
.y76{bottom:1163.880000px;}
.y3{bottom:1170.000000px;}
.y2{bottom:1183.860000px;}
.y1{bottom:1197.540000px;}
.h2{height:47.344922px;}
.h3{height:52.998047px;}
.hf{height:53.573906px;}
.h7{height:54.421875px;}
.hb{height:58.621992px;}
.h8{height:58.651172px;}
.h6{height:60.226875px;}
.h9{height:65.884219px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.hd{height:674.925000px;}
.ha{height:876.885000px;}
.hc{height:1066.290000px;}
.he{height:1088.070000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:681.585000px;}
.w4{width:690.225000px;}
.w3{width:696.885000px;}
.w6{width:764.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x14{left:79.920000px;}
.x2{left:84.959987px;}
.x3{left:94.355987px;}
.xa{left:102.456000px;}
.xf{left:105.156000px;}
.x16{left:106.235987px;}
.x12{left:116.856000px;}
.x7{left:127.475987px;}
.x11{left:142.554000px;}
.xd{left:169.229987px;}
.x4{left:201.809987px;}
.x6{left:399.134987px;}
.x9{left:411.914987px;}
.x5{left:446.474987px;}
.x8{left:459.254987px;}
.x17{left:480.524987px;}
.x10{left:606.354000px;}
.x13{left:673.494000px;}
.xb{left:688.794000px;}
.x15{left:717.990000px;}
.xe{left:794.489987px;}
.x1{left:807.989987px;}
@media print{
.v6{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v1{vertical-align:-49.280000pt;}
.v2{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.000000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls39{letter-spacing:-0.592000pt;}
.ls38{letter-spacing:-0.544000pt;}
.ls3b{letter-spacing:-0.503467pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.239467pt;}
.ls37{letter-spacing:-0.230933pt;}
.ls2f{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls22{letter-spacing:-0.040320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls2e{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.128640pt;}
.ls19{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.183467pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.199040pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls34{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.242987pt;}
.lse{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.264320pt;}
.ls17{letter-spacing:0.272533pt;}
.ls25{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls32{letter-spacing:3.360000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls9{letter-spacing:4.640000pt;}
.ls33{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls24{letter-spacing:6.560000pt;}
.ls30{letter-spacing:7.200000pt;}
.ls36{letter-spacing:7.840000pt;}
.ls7{letter-spacing:11.040000pt;}
.ls28{letter-spacing:12.320000pt;}
.ls35{letter-spacing:17.440000pt;}
.ls29{letter-spacing:18.720000pt;}
.ls31{letter-spacing:21.280000pt;}
.ls2c{letter-spacing:29.600000pt;}
.ls6{letter-spacing:139.168000pt;}
.ls1d{letter-spacing:720.938667pt;}
.ws4{word-spacing:-16.128000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.552533pt;}
.ws17{word-spacing:-13.510933pt;}
.ws1e{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.800000pt;}
.ws1d{word-spacing:-12.776533pt;}
.ws1b{word-spacing:-12.736000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.112000pt;}
.ws14{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws18{word-spacing:-11.776000pt;}
.ws3{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.521067pt;}
.ws2{word-spacing:-10.400000pt;}
.ws16{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.wsf{word-spacing:0.000000pt;}
._17{margin-left:-2.581760pt;}
._0{margin-left:-0.900480pt;}
._1{width:0.945707pt;}
._6{width:2.330667pt;}
._12{width:3.307733pt;}
._7{width:4.236160pt;}
._a{width:5.455360pt;}
._9{width:7.011840pt;}
._8{width:8.437760pt;}
._4{width:9.395627pt;}
._3{width:10.656000pt;}
._e{width:12.058240pt;}
._5{width:12.990293pt;}
._c{width:14.360107pt;}
._2{width:15.450667pt;}
._13{width:16.442453pt;}
._11{width:17.564800pt;}
._d{width:18.485760pt;}
._16{width:19.778560pt;}
._1a{width:21.360640pt;}
._1f{width:22.305067pt;}
._22{width:23.358507pt;}
._10{width:24.500267pt;}
._f{width:25.621120pt;}
._25{width:27.464320pt;}
._1d{width:29.604693pt;}
._18{width:30.668800pt;}
._b{width:36.620373pt;}
._20{width:37.621760pt;}
._21{width:38.917120pt;}
._1e{width:41.125333pt;}
._23{width:50.034987pt;}
._14{width:56.335360pt;}
._24{width:71.180800pt;}
._1c{width:78.443733pt;}
._1b{width:79.528320pt;}
._19{width:534.666667pt;}
._15{width:1317.546667pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:1.120000pt;}
.y75{bottom:3.680000pt;}
.y74{bottom:16.160000pt;}
.yca{bottom:18.560000pt;}
.y71{bottom:19.040000pt;}
.y70{bottom:32.640000pt;}
.yc9{bottom:33.440000pt;}
.yc8{bottom:48.640000pt;}
.y8{bottom:50.112000pt;}
.y63{bottom:51.872000pt;}
.yc7{bottom:62.426667pt;}
.y7{bottom:62.752000pt;}
.y62{bottom:68.352000pt;}
.ycb{bottom:81.632000pt;}
.y6{bottom:83.552000pt;}
.y72{bottom:85.312000pt;}
.y6e{bottom:86.592000pt;}
.yc5{bottom:88.032000pt;}
.yaf{bottom:91.232000pt;}
.y5{bottom:94.912000pt;}
.y73{bottom:97.792000pt;}
.y6d{bottom:103.232000pt;}
.yc4{bottom:104.512000pt;}
.yae{bottom:107.712000pt;}
.y6c{bottom:119.712000pt;}
.yc3{bottom:121.152000pt;}
.y61{bottom:122.272000pt;}
.y3f{bottom:123.392000pt;}
.yad{bottom:124.352000pt;}
.y6b{bottom:136.346667pt;}
.yc2{bottom:137.626667pt;}
.y60{bottom:138.746667pt;}
.y3e{bottom:140.026667pt;}
.yac{bottom:140.826667pt;}
.y6a{bottom:152.826667pt;}
.yc1{bottom:154.266667pt;}
.y5f{bottom:155.386667pt;}
.y3d{bottom:156.506667pt;}
.yab{bottom:157.466667pt;}
.y69{bottom:169.306667pt;}
.yc0{bottom:170.746667pt;}
.y5e{bottom:171.866667pt;}
.y3c{bottom:173.146667pt;}
.yaa{bottom:173.946667pt;}
.y68{bottom:185.946667pt;}
.ybf{bottom:187.386667pt;}
.y5d{bottom:188.346667pt;}
.y3b{bottom:189.626667pt;}
.ya9{bottom:190.426667pt;}
.y67{bottom:202.426667pt;}
.ybe{bottom:203.866667pt;}
.y5c{bottom:204.986667pt;}
.y3a{bottom:206.106667pt;}
.ya8{bottom:207.066667pt;}
.y66{bottom:219.066667pt;}
.ybd{bottom:220.346667pt;}
.y5b{bottom:221.466667pt;}
.y39{bottom:222.746667pt;}
.ya7{bottom:223.546667pt;}
.y65{bottom:235.546667pt;}
.ybc{bottom:236.986667pt;}
.y5a{bottom:238.106667pt;}
.y38{bottom:239.226667pt;}
.ya6{bottom:240.186667pt;}
.y64{bottom:252.066667pt;}
.ybb{bottom:253.506667pt;}
.y59{bottom:254.626667pt;}
.y37{bottom:255.906667pt;}
.ya5{bottom:256.706667pt;}
.y6f{bottom:264.546667pt;}
.yba{bottom:270.146667pt;}
.y58{bottom:271.106667pt;}
.y36{bottom:272.386667pt;}
.ya4{bottom:273.346667pt;}
.yb9{bottom:286.626667pt;}
.y57{bottom:287.746667pt;}
.y35{bottom:288.866667pt;}
.ya3{bottom:289.826667pt;}
.yb8{bottom:303.106667pt;}
.y56{bottom:304.226667pt;}
.y34{bottom:305.506667pt;}
.ya2{bottom:306.306667pt;}
.yb7{bottom:319.746667pt;}
.y55{bottom:320.866667pt;}
.y33{bottom:321.986667pt;}
.ya1{bottom:322.946667pt;}
.yb6{bottom:336.226667pt;}
.y54{bottom:337.346667pt;}
.y32{bottom:338.626667pt;}
.ya0{bottom:339.426667pt;}
.yb5{bottom:352.866667pt;}
.y53{bottom:353.826667pt;}
.y31{bottom:355.106667pt;}
.y9f{bottom:356.066667pt;}
.yb4{bottom:369.346667pt;}
.y52{bottom:370.466667pt;}
.y30{bottom:371.586667pt;}
.y9e{bottom:372.546667pt;}
.yb3{bottom:385.826667pt;}
.y51{bottom:386.946667pt;}
.y2f{bottom:388.226667pt;}
.y9d{bottom:389.026667pt;}
.yb2{bottom:402.466667pt;}
.y50{bottom:403.586667pt;}
.y2e{bottom:404.706667pt;}
.y9c{bottom:405.666667pt;}
.yb1{bottom:418.946667pt;}
.y4f{bottom:420.066667pt;}
.y2d{bottom:421.346667pt;}
.y9b{bottom:422.146667pt;}
.yb0{bottom:435.586667pt;}
.y4e{bottom:436.706667pt;}
.y2c{bottom:437.826667pt;}
.y9a{bottom:438.786667pt;}
.yc6{bottom:448.066667pt;}
.y4d{bottom:453.186667pt;}
.y2b{bottom:454.466667pt;}
.y99{bottom:455.266667pt;}
.y4c{bottom:469.666667pt;}
.y2a{bottom:470.946667pt;}
.y98{bottom:471.746667pt;}
.y4b{bottom:486.306667pt;}
.y29{bottom:487.426667pt;}
.y97{bottom:488.386667pt;}
.y4a{bottom:502.813333pt;}
.y28{bottom:504.093333pt;}
.y96{bottom:504.893333pt;}
.y49{bottom:519.453333pt;}
.y27{bottom:520.573333pt;}
.y95{bottom:521.533333pt;}
.y48{bottom:535.933333pt;}
.y26{bottom:537.213333pt;}
.y94{bottom:538.013333pt;}
.y47{bottom:552.413333pt;}
.y25{bottom:553.693333pt;}
.y93{bottom:554.653333pt;}
.y46{bottom:569.053333pt;}
.y24{bottom:570.173333pt;}
.y92{bottom:571.133333pt;}
.y45{bottom:585.533333pt;}
.y23{bottom:586.813333pt;}
.y91{bottom:587.613333pt;}
.y44{bottom:602.173333pt;}
.y22{bottom:603.293333pt;}
.y90{bottom:604.253333pt;}
.y43{bottom:618.653333pt;}
.y21{bottom:619.933333pt;}
.y8f{bottom:620.733333pt;}
.y42{bottom:635.133333pt;}
.y20{bottom:636.413333pt;}
.y8e{bottom:637.373333pt;}
.y41{bottom:651.773333pt;}
.y1f{bottom:652.893333pt;}
.y8d{bottom:653.853333pt;}
.y40{bottom:668.253333pt;}
.y1e{bottom:669.533333pt;}
.y8c{bottom:670.333333pt;}
.y1d{bottom:684.893333pt;}
.y8b{bottom:686.973333pt;}
.y1c{bottom:700.253333pt;}
.y8a{bottom:703.453333pt;}
.y89{bottom:720.093333pt;}
.y1b{bottom:729.053333pt;}
.y88{bottom:736.573333pt;}
.y1a{bottom:742.813333pt;}
.y87{bottom:753.053333pt;}
.y19{bottom:756.613333pt;}
.y86{bottom:769.733333pt;}
.y18{bottom:770.533333pt;}
.y17{bottom:784.293333pt;}
.y85{bottom:786.213333pt;}
.y16{bottom:798.053333pt;}
.y84{bottom:802.853333pt;}
.y15{bottom:811.813333pt;}
.y83{bottom:819.333333pt;}
.y14{bottom:825.733333pt;}
.y82{bottom:835.973333pt;}
.y13{bottom:839.493333pt;}
.y81{bottom:852.453333pt;}
.y12{bottom:853.253333pt;}
.y11{bottom:867.013333pt;}
.y80{bottom:868.933333pt;}
.y10{bottom:880.933333pt;}
.y7f{bottom:885.573333pt;}
.yf{bottom:894.693333pt;}
.y7e{bottom:902.053333pt;}
.ye{bottom:909.413333pt;}
.y7d{bottom:918.693333pt;}
.yd{bottom:927.813333pt;}
.y7c{bottom:935.173333pt;}
.yc{bottom:945.573333pt;}
.y7b{bottom:951.653333pt;}
.yb{bottom:961.573333pt;}
.y7a{bottom:968.293333pt;}
.ya{bottom:979.973333pt;}
.y79{bottom:984.773333pt;}
.y9{bottom:998.373333pt;}
.y78{bottom:1001.413333pt;}
.y4{bottom:1015.520000pt;}
.y77{bottom:1017.920000pt;}
.y76{bottom:1034.560000pt;}
.y3{bottom:1040.000000pt;}
.y2{bottom:1052.320000pt;}
.y1{bottom:1064.480000pt;}
.h2{height:42.084375pt;}
.h3{height:47.109375pt;}
.hf{height:47.621250pt;}
.h7{height:48.375000pt;}
.hb{height:52.108438pt;}
.h8{height:52.134375pt;}
.h6{height:53.535000pt;}
.h9{height:58.563750pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd{height:599.933333pt;}
.ha{height:779.453333pt;}
.hc{height:947.813333pt;}
.he{height:967.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:605.853333pt;}
.w4{width:613.533333pt;}
.w3{width:619.453333pt;}
.w6{width:679.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x14{left:71.040000pt;}
.x2{left:75.519988pt;}
.x3{left:83.871988pt;}
.xa{left:91.072000pt;}
.xf{left:93.472000pt;}
.x16{left:94.431988pt;}
.x12{left:103.872000pt;}
.x7{left:113.311988pt;}
.x11{left:126.714667pt;}
.xd{left:150.426655pt;}
.x4{left:179.386655pt;}
.x6{left:354.786655pt;}
.x9{left:366.146655pt;}
.x5{left:396.866655pt;}
.x8{left:408.226655pt;}
.x17{left:427.133322pt;}
.x10{left:538.981333pt;}
.x13{left:598.661333pt;}
.xb{left:612.261333pt;}
.x15{left:638.213333pt;}
.xe{left:706.213322pt;}
.x1{left:718.213322pt;}
}




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