
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_ccd0d0f51d99e933d6ec9c5c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c4bc406938f67e66600a03b5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_928104212c6f3ba07ae6d3e7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_52dee234bea155bdcf49f2f2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_05703088f470002a2520b7d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.048960px;}
.ls1a{letter-spacing:-0.037800px;}
.ls11{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.105600px;}
.ls15{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:14.520000px;}
.ls17{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.332000px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.188600px;}
.ws9{word-spacing:-13.177440px;}
.wsf{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-3.991801px;}
._2{margin-left:-2.709600px;}
._0{margin-left:-1.110000px;}
._1{width:1.170588px;}
._9{width:2.358105px;}
._7{width:3.907800px;}
._8{width:5.050200px;}
._10{width:6.135239px;}
._f{width:7.602960px;}
._26{width:8.744759px;}
._d{width:9.799800px;}
._6{width:11.362800px;}
._3{width:15.210600px;}
._b{width:16.953600px;}
._e{width:17.976601px;}
._1c{width:20.244240px;}
._16{width:22.304520px;}
._11{width:24.288480px;}
._12{width:25.310520px;}
._4{width:26.392800px;}
._5{width:27.502199px;}
._a{width:28.529400px;}
._19{width:30.240360px;}
._2b{width:31.833360px;}
._15{width:49.418640px;}
._1d{width:54.084240px;}
._2a{width:57.655080px;}
._13{width:59.518800px;}
._27{width:63.667080px;}
._22{width:66.836160px;}
._23{width:72.596160px;}
._20{width:73.947600px;}
._1f{width:75.684240px;}
._1e{width:76.953600px;}
._29{width:82.993440px;}
._1b{width:84.949560px;}
._18{width:86.693040px;}
._1a{width:90.084240px;}
._17{width:101.362320px;}
._28{width:114.348240px;}
._14{width:117.895320px;}
._24{width:147.774960px;}
._25{width:149.338080px;}
._2c{width:223.285680px;}
._21{width:330.116160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:7.830000px;}
.y8b{bottom:7.860000px;}
.y45{bottom:7.920000px;}
.y50{bottom:25.380000px;}
.y7f{bottom:25.410000px;}
.y44{bottom:25.470000px;}
.y8a{bottom:25.500000px;}
.y4a{bottom:43.020000px;}
.y7e{bottom:43.050000px;}
.y58{bottom:43.110000px;}
.y4e{bottom:52.740000px;}
.y52{bottom:52.830000px;}
.y4d{bottom:70.380000px;}
.y48{bottom:70.410000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y81{bottom:87.930000px;}
.y47{bottom:87.960000px;}
.y56{bottom:88.020000px;}
.y1{bottom:101.640000px;}
.y88{bottom:105.510000px;}
.y55{bottom:105.570000px;}
.y7c{bottom:105.600000px;}
.y54{bottom:109.740000px;}
.y9a{bottom:111.270000px;}
.ye6{bottom:111.900000px;}
.y99{bottom:128.910000px;}
.y27{bottom:129.270000px;}
.ye5{bottom:129.450000px;}
.y98{bottom:146.460000px;}
.y26{bottom:146.820000px;}
.ye4{bottom:156.000000px;}
.y97{bottom:164.100000px;}
.yb5{bottom:167.340000px;}
.y57{bottom:172.290000px;}
.ye3{bottom:173.640000px;}
.y25{bottom:182.370000px;}
.ye2{bottom:191.190000px;}
.yd0{bottom:199.200000px;}
.y96{bottom:199.650000px;}
.y24{bottom:200.010000px;}
.y79{bottom:215.940000px;}
.y95{bottom:217.200000px;}
.y23{bottom:217.560000px;}
.ye1{bottom:217.830000px;}
.yb4{bottom:229.890000px;}
.y51{bottom:234.750000px;}
.y94{bottom:234.840000px;}
.y22{bottom:235.200000px;}
.ye0{bottom:235.380000px;}
.ycf{bottom:244.110000px;}
.y78{bottom:251.580000px;}
.y93{bottom:252.390000px;}
.ydf{bottom:261.930000px;}
.y21{bottom:270.750000px;}
.yce{bottom:271.470000px;}
.yde{bottom:279.570000px;}
.y53{bottom:279.660000px;}
.y77{bottom:287.130000px;}
.y92{bottom:287.940000px;}
.y20{bottom:288.300000px;}
.yb3{bottom:292.350000px;}
.ydd{bottom:297.120000px;}
.ycd{bottom:298.830000px;}
.y91{bottom:305.580000px;}
.y1f{bottom:305.940000px;}
.ydc{bottom:314.760000px;}
.y76{bottom:322.770000px;}
.y90{bottom:323.130000px;}
.y1e{bottom:323.490000px;}
.y4c{bottom:324.660000px;}
.ycc{bottom:326.100000px;}
.y75{bottom:340.320000px;}
.y8f{bottom:340.770000px;}
.ydb{bottom:341.670000px;}
.yb2{bottom:354.900000px;}
.y74{bottom:357.870000px;}
.y8e{bottom:358.320000px;}
.y1d{bottom:359.130000px;}
.y4f{bottom:369.570000px;}
.ycb{bottom:371.010000px;}
.y1c{bottom:376.680000px;}
.y8d{bottom:384.870000px;}
.yda{bottom:389.910000px;}
.y73{bottom:393.510000px;}
.y1b{bottom:394.230000px;}
.yd9{bottom:407.460000px;}
.y72{bottom:411.060000px;}
.y1a{bottom:411.870000px;}
.y46{bottom:414.480000px;}
.yca{bottom:416.010000px;}
.yb1{bottom:417.360000px;}
.y8c{bottom:420.780000px;}
.yd8{bottom:425.100000px;}
.y71{bottom:428.700000px;}
.y19{bottom:429.420000px;}
.yd7{bottom:442.650000px;}
.y70{bottom:446.250000px;}
.y18{bottom:456.330000px;}
.yd6{bottom:460.200000px;}
.y87{bottom:466.500000px;}
.y6f{bottom:472.830000px;}
.y49{bottom:476.970000px;}
.yd5{bottom:477.870000px;}
.yb0{bottom:479.940000px;}
.yc9{bottom:482.280000px;}
.yd4{bottom:495.420000px;}
.y17{bottom:504.690000px;}
.y6e{bottom:508.470000px;}
.yc8{bottom:517.830000px;}
.y43{bottom:521.880000px;}
.yd3{bottom:522.330000px;}
.y16{bottom:522.600000px;}
.y6d{bottom:526.020000px;}
.y89{bottom:528.990000px;}
.yc7{bottom:535.470000px;}
.yaf{bottom:542.400000px;}
.y6c{bottom:543.660000px;}
.yc6{bottom:553.020000px;}
.y15{bottom:559.590000px;}
.y6b{bottom:561.210000px;}
.yd2{bottom:570.660000px;}
.y14{bottom:577.140000px;}
.y6a{bottom:587.760000px;}
.y42{bottom:588.210000px;}
.yc5{bottom:588.660000px;}
.y85{bottom:591.540000px;}
.y13{bottom:594.780000px;}
.yae{bottom:604.950000px;}
.yd1{bottom:605.760000px;}
.yc4{bottom:606.210000px;}
.y12{bottom:612.330000px;}
.y69{bottom:623.400000px;}
.y41{bottom:623.760000px;}
.y11{bottom:629.880000px;}
.y86{bottom:636.450000px;}
.y68{bottom:640.950000px;}
.y40{bottom:641.400000px;}
.y10{bottom:647.520000px;}
.yad{bottom:649.860000px;}
.y67{bottom:658.590000px;}
.y3f{bottom:658.950000px;}
.yf{bottom:665.070000px;}
.y66{bottom:676.140000px;}
.y3e{bottom:676.590000px;}
.yc3{bottom:676.950000px;}
.y83{bottom:681.360000px;}
.ye{bottom:682.710000px;}
.yc2{bottom:694.590000px;}
.yd{bottom:700.260000px;}
.y65{bottom:702.690000px;}
.yf9{bottom:708.000000px;}
.y3d{bottom:712.140000px;}
.yc{bottom:717.810000px;}
.yf8{bottom:725.550000px;}
.y3c{bottom:729.690000px;}
.yac{bottom:733.740000px;}
.yb{bottom:735.450000px;}
.y64{bottom:738.330000px;}
.yf7{bottom:743.190000px;}
.y84{bottom:743.910000px;}
.y3b{bottom:747.330000px;}
.ya{bottom:753.000000px;}
.y63{bottom:755.880000px;}
.y3a{bottom:764.880000px;}
.yc1{bottom:765.330000px;}
.yab{bottom:769.290000px;}
.yf6{bottom:769.740000px;}
.y62{bottom:773.520000px;}
.y9{bottom:779.910000px;}
.yc0{bottom:782.880000px;}
.yaa{bottom:786.930000px;}
.yf5{bottom:787.290000px;}
.y39{bottom:800.520000px;}
.ya9{bottom:804.480000px;}
.yf4{bottom:804.930000px;}
.y80{bottom:806.370000px;}
.y61{bottom:809.070000px;}
.y38{bottom:818.070000px;}
.ya8{bottom:822.030000px;}
.y60{bottom:826.620000px;}
.y8{bottom:828.240000px;}
.yf3{bottom:831.480000px;}
.y37{bottom:835.620000px;}
.y5f{bottom:844.260000px;}
.ya7{bottom:848.670000px;}
.yf2{bottom:849.030000px;}
.y36{bottom:853.260000px;}
.ybf{bottom:853.620000px;}
.y5e{bottom:861.810000px;}
.y7{bottom:863.790000px;}
.y82{bottom:868.920000px;}
.y35{bottom:870.810000px;}
.ybe{bottom:871.260000px;}
.yf1{bottom:875.670000px;}
.ya6{bottom:884.220000px;}
.y5d{bottom:888.450000px;}
.ybd{bottom:888.810000px;}
.yf0{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.ya5{bottom:901.860000px;}
.y34{bottom:906.450000px;}
.yef{bottom:910.860000px;}
.ya4{bottom:919.410000px;}
.y33{bottom:924.000000px;}
.y7b{bottom:931.380000px;}
.y5{bottom:935.610000px;}
.ya3{bottom:936.960000px;}
.yee{bottom:937.410000px;}
.y32{bottom:941.550000px;}
.ybc{bottom:942.000000px;}
.yed{bottom:954.960000px;}
.y31{bottom:959.190000px;}
.ybb{bottom:959.550000px;}
.y4{bottom:971.700000px;}
.ya2{bottom:972.600000px;}
.y5c{bottom:976.740000px;}
.yba{bottom:977.190000px;}
.yec{bottom:981.600000px;}
.ya1{bottom:990.150000px;}
.y7d{bottom:993.930000px;}
.y30{bottom:994.740000px;}
.yeb{bottom:999.150000px;}
.ya0{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y2f{bottom:1012.320000px;}
.y9f{bottom:1025.370000px;}
.yea{bottom:1025.820000px;}
.y2e{bottom:1029.960000px;}
.ye9{bottom:1043.370000px;}
.y2d{bottom:1047.510000px;}
.yb9{bottom:1047.960000px;}
.y7a{bottom:1056.420000px;}
.y9e{bottom:1060.920000px;}
.y5b{bottom:1065.150000px;}
.yb8{bottom:1065.510000px;}
.y2c{bottom:1074.420000px;}
.y9d{bottom:1078.560000px;}
.yb7{bottom:1083.150000px;}
.ye8{bottom:1087.560000px;}
.y5a{bottom:1091.700000px;}
.y9c{bottom:1096.110000px;}
.yb6{bottom:1100.700000px;}
.ye7{bottom:1105.110000px;}
.y9b{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y59{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h16{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.ha{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.h10{height:61.740000px;}
.hc{height:61.770000px;}
.h17{height:61.793886px;}
.h11{height:61.830000px;}
.h15{height:61.860000px;}
.h12{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hd{height:89.100000px;}
.hb{height:106.680000px;}
.h14{height:124.230000px;}
.hf{height:124.290000px;}
.h13{height:124.320000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:71.100000px;}
.w5{width:79.200000px;}
.wc{width:84.540000px;}
.we{width:105.030000px;}
.w11{width:110.970000px;}
.w7{width:115.110000px;}
.w14{width:115.650000px;}
.w9{width:116.940000px;}
.w6{width:118.020000px;}
.wa{width:120.420000px;}
.wb{width:122.670000px;}
.w3{width:126.030000px;}
.wd{width:130.590000px;}
.w10{width:133.500000px;}
.w12{width:136.350000px;}
.w8{width:149.130000px;}
.w16{width:149.670000px;}
.w13{width:150.600000px;}
.w4{width:164.430000px;}
.w17{width:169.590000px;}
.w15{width:206.400000px;}
.w18{width:227.790000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:111.239987px;}
.xa{left:186.510000px;}
.x5{left:195.600000px;}
.x2{left:202.799987px;}
.x14{left:275.880000px;}
.xb{left:307.650000px;}
.x10{left:314.670000px;}
.x6{left:360.750000px;}
.x15{left:426.360000px;}
.xc{left:431.040000px;}
.x7{left:440.670000px;}
.x11{left:451.740000px;}
.xd{left:516.300000px;}
.x8{left:559.500000px;}
.x16{left:596.670000px;}
.x12{left:603.060000px;}
.xe{left:647.610000px;}
.x9{left:675.330000px;}
.x13{left:719.430000px;}
.xf{left:753.360000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.043520pt;}
.ls1a{letter-spacing:-0.033600pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.093867pt;}
.ls15{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:12.906667pt;}
.ls17{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.850667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.723200pt;}
.ws9{word-spacing:-11.713280pt;}
.wsf{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.548268pt;}
._2{margin-left:-2.408533pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.040523pt;}
._9{width:2.096093pt;}
._7{width:3.473600pt;}
._8{width:4.489067pt;}
._10{width:5.453546pt;}
._f{width:6.758187pt;}
._26{width:7.773119pt;}
._d{width:8.710934pt;}
._6{width:10.100267pt;}
._3{width:13.520534pt;}
._b{width:15.069866pt;}
._e{width:15.979201pt;}
._1c{width:17.994880pt;}
._16{width:19.826240pt;}
._11{width:21.589760pt;}
._12{width:22.498240pt;}
._4{width:23.460267pt;}
._5{width:24.446399pt;}
._a{width:25.359467pt;}
._19{width:26.880320pt;}
._2b{width:28.296320pt;}
._15{width:43.927680pt;}
._1d{width:48.074880pt;}
._2a{width:51.248960pt;}
._13{width:52.905600pt;}
._27{width:56.592960pt;}
._22{width:59.409920pt;}
._23{width:64.529920pt;}
._20{width:65.731200pt;}
._1f{width:67.274880pt;}
._1e{width:68.403200pt;}
._29{width:73.771947pt;}
._1b{width:75.510720pt;}
._18{width:77.060480pt;}
._1a{width:80.074880pt;}
._17{width:90.099840pt;}
._28{width:101.642880pt;}
._14{width:104.795840pt;}
._24{width:131.355520pt;}
._25{width:132.744960pt;}
._2c{width:198.476160pt;}
._21{width:293.436587pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:6.960000pt;}
.y8b{bottom:6.986667pt;}
.y45{bottom:7.040000pt;}
.y50{bottom:22.560000pt;}
.y7f{bottom:22.586667pt;}
.y44{bottom:22.640000pt;}
.y8a{bottom:22.666667pt;}
.y4a{bottom:38.240000pt;}
.y7e{bottom:38.266667pt;}
.y58{bottom:38.320000pt;}
.y4e{bottom:46.880000pt;}
.y52{bottom:46.960000pt;}
.y4d{bottom:62.560000pt;}
.y48{bottom:62.586667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y81{bottom:78.160000pt;}
.y47{bottom:78.186667pt;}
.y56{bottom:78.240000pt;}
.y1{bottom:90.346667pt;}
.y88{bottom:93.786667pt;}
.y55{bottom:93.840000pt;}
.y7c{bottom:93.866667pt;}
.y54{bottom:97.546667pt;}
.y9a{bottom:98.906667pt;}
.ye6{bottom:99.466667pt;}
.y99{bottom:114.586667pt;}
.y27{bottom:114.906667pt;}
.ye5{bottom:115.066667pt;}
.y98{bottom:130.186667pt;}
.y26{bottom:130.506667pt;}
.ye4{bottom:138.666667pt;}
.y97{bottom:145.866667pt;}
.yb5{bottom:148.746667pt;}
.y57{bottom:153.146667pt;}
.ye3{bottom:154.346667pt;}
.y25{bottom:162.106667pt;}
.ye2{bottom:169.946667pt;}
.yd0{bottom:177.066667pt;}
.y96{bottom:177.466667pt;}
.y24{bottom:177.786667pt;}
.y79{bottom:191.946667pt;}
.y95{bottom:193.066667pt;}
.y23{bottom:193.386667pt;}
.ye1{bottom:193.626667pt;}
.yb4{bottom:204.346667pt;}
.y51{bottom:208.666667pt;}
.y94{bottom:208.746667pt;}
.y22{bottom:209.066667pt;}
.ye0{bottom:209.226667pt;}
.ycf{bottom:216.986667pt;}
.y78{bottom:223.626667pt;}
.y93{bottom:224.346667pt;}
.ydf{bottom:232.826667pt;}
.y21{bottom:240.666667pt;}
.yce{bottom:241.306667pt;}
.yde{bottom:248.506667pt;}
.y53{bottom:248.586667pt;}
.y77{bottom:255.226667pt;}
.y92{bottom:255.946667pt;}
.y20{bottom:256.266667pt;}
.yb3{bottom:259.866667pt;}
.ydd{bottom:264.106667pt;}
.ycd{bottom:265.626667pt;}
.y91{bottom:271.626667pt;}
.y1f{bottom:271.946667pt;}
.ydc{bottom:279.786667pt;}
.y76{bottom:286.906667pt;}
.y90{bottom:287.226667pt;}
.y1e{bottom:287.546667pt;}
.y4c{bottom:288.586667pt;}
.ycc{bottom:289.866667pt;}
.y75{bottom:302.506667pt;}
.y8f{bottom:302.906667pt;}
.ydb{bottom:303.706667pt;}
.yb2{bottom:315.466667pt;}
.y74{bottom:318.106667pt;}
.y8e{bottom:318.506667pt;}
.y1d{bottom:319.226667pt;}
.y4f{bottom:328.506667pt;}
.ycb{bottom:329.786667pt;}
.y1c{bottom:334.826667pt;}
.y8d{bottom:342.106667pt;}
.yda{bottom:346.586667pt;}
.y73{bottom:349.786667pt;}
.y1b{bottom:350.426667pt;}
.yd9{bottom:362.186667pt;}
.y72{bottom:365.386667pt;}
.y1a{bottom:366.106667pt;}
.y46{bottom:368.426667pt;}
.yca{bottom:369.786667pt;}
.yb1{bottom:370.986667pt;}
.y8c{bottom:374.026667pt;}
.yd8{bottom:377.866667pt;}
.y71{bottom:381.066667pt;}
.y19{bottom:381.706667pt;}
.yd7{bottom:393.466667pt;}
.y70{bottom:396.666667pt;}
.y18{bottom:405.626667pt;}
.yd6{bottom:409.066667pt;}
.y87{bottom:414.666667pt;}
.y6f{bottom:420.293333pt;}
.y49{bottom:423.973333pt;}
.yd5{bottom:424.773333pt;}
.yb0{bottom:426.613333pt;}
.yc9{bottom:428.693333pt;}
.yd4{bottom:440.373333pt;}
.y17{bottom:448.613333pt;}
.y6e{bottom:451.973333pt;}
.yc8{bottom:460.293333pt;}
.y43{bottom:463.893333pt;}
.yd3{bottom:464.293333pt;}
.y16{bottom:464.533333pt;}
.y6d{bottom:467.573333pt;}
.y89{bottom:470.213333pt;}
.yc7{bottom:475.973333pt;}
.yaf{bottom:482.133333pt;}
.y6c{bottom:483.253333pt;}
.yc6{bottom:491.573333pt;}
.y15{bottom:497.413333pt;}
.y6b{bottom:498.853333pt;}
.yd2{bottom:507.253333pt;}
.y14{bottom:513.013333pt;}
.y6a{bottom:522.453333pt;}
.y42{bottom:522.853333pt;}
.yc5{bottom:523.253333pt;}
.y85{bottom:525.813333pt;}
.y13{bottom:528.693333pt;}
.yae{bottom:537.733333pt;}
.yd1{bottom:538.453333pt;}
.yc4{bottom:538.853333pt;}
.y12{bottom:544.293333pt;}
.y69{bottom:554.133333pt;}
.y41{bottom:554.453333pt;}
.y11{bottom:559.893333pt;}
.y86{bottom:565.733333pt;}
.y68{bottom:569.733333pt;}
.y40{bottom:570.133333pt;}
.y10{bottom:575.573333pt;}
.yad{bottom:577.653333pt;}
.y67{bottom:585.413333pt;}
.y3f{bottom:585.733333pt;}
.yf{bottom:591.173333pt;}
.y66{bottom:601.013333pt;}
.y3e{bottom:601.413333pt;}
.yc3{bottom:601.733333pt;}
.y83{bottom:605.653333pt;}
.ye{bottom:606.853333pt;}
.yc2{bottom:617.413333pt;}
.yd{bottom:622.453333pt;}
.y65{bottom:624.613333pt;}
.yf9{bottom:629.333333pt;}
.y3d{bottom:633.013333pt;}
.yc{bottom:638.053333pt;}
.yf8{bottom:644.933333pt;}
.y3c{bottom:648.613333pt;}
.yac{bottom:652.213333pt;}
.yb{bottom:653.733333pt;}
.y64{bottom:656.293333pt;}
.yf7{bottom:660.613333pt;}
.y84{bottom:661.253333pt;}
.y3b{bottom:664.293333pt;}
.ya{bottom:669.333333pt;}
.y63{bottom:671.893333pt;}
.y3a{bottom:679.893333pt;}
.yc1{bottom:680.293333pt;}
.yab{bottom:683.813333pt;}
.yf6{bottom:684.213333pt;}
.y62{bottom:687.573333pt;}
.y9{bottom:693.253333pt;}
.yc0{bottom:695.893333pt;}
.yaa{bottom:699.493333pt;}
.yf5{bottom:699.813333pt;}
.y39{bottom:711.573333pt;}
.ya9{bottom:715.093333pt;}
.yf4{bottom:715.493333pt;}
.y80{bottom:716.773333pt;}
.y61{bottom:719.173333pt;}
.y38{bottom:727.173333pt;}
.ya8{bottom:730.693333pt;}
.y60{bottom:734.773333pt;}
.y8{bottom:736.213333pt;}
.yf3{bottom:739.093333pt;}
.y37{bottom:742.773333pt;}
.y5f{bottom:750.453333pt;}
.ya7{bottom:754.373333pt;}
.yf2{bottom:754.693333pt;}
.y36{bottom:758.453333pt;}
.ybf{bottom:758.773333pt;}
.y5e{bottom:766.053333pt;}
.y7{bottom:767.813333pt;}
.y82{bottom:772.373333pt;}
.y35{bottom:774.053333pt;}
.ybe{bottom:774.453333pt;}
.yf1{bottom:778.373333pt;}
.ya6{bottom:785.973333pt;}
.y5d{bottom:789.733333pt;}
.ybd{bottom:790.053333pt;}
.yf0{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.ya5{bottom:801.653333pt;}
.y34{bottom:805.733333pt;}
.yef{bottom:809.653333pt;}
.ya4{bottom:817.253333pt;}
.y33{bottom:821.333333pt;}
.y7b{bottom:827.893333pt;}
.y5{bottom:831.653333pt;}
.ya3{bottom:832.853333pt;}
.yee{bottom:833.253333pt;}
.y32{bottom:836.933333pt;}
.ybc{bottom:837.333333pt;}
.yed{bottom:848.853333pt;}
.y31{bottom:852.613333pt;}
.ybb{bottom:852.933333pt;}
.y4{bottom:863.733333pt;}
.ya2{bottom:864.533333pt;}
.y5c{bottom:868.213333pt;}
.yba{bottom:868.613333pt;}
.yec{bottom:872.533333pt;}
.ya1{bottom:880.133333pt;}
.y7d{bottom:883.493333pt;}
.y30{bottom:884.213333pt;}
.yeb{bottom:888.133333pt;}
.ya0{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y2f{bottom:899.840000pt;}
.y9f{bottom:911.440000pt;}
.yea{bottom:911.840000pt;}
.y2e{bottom:915.520000pt;}
.ye9{bottom:927.440000pt;}
.y2d{bottom:931.120000pt;}
.yb9{bottom:931.520000pt;}
.y7a{bottom:939.040000pt;}
.y9e{bottom:943.040000pt;}
.y5b{bottom:946.800000pt;}
.yb8{bottom:947.120000pt;}
.y2c{bottom:955.040000pt;}
.y9d{bottom:958.720000pt;}
.yb7{bottom:962.800000pt;}
.ye8{bottom:966.720000pt;}
.y5a{bottom:970.400000pt;}
.y9c{bottom:974.320000pt;}
.yb6{bottom:978.400000pt;}
.ye7{bottom:982.320000pt;}
.y9b{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y59{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h16{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.ha{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.h10{height:54.880000pt;}
.hc{height:54.906667pt;}
.h17{height:54.927899pt;}
.h11{height:54.960000pt;}
.h15{height:54.986667pt;}
.h12{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hd{height:79.200000pt;}
.hb{height:94.826667pt;}
.h14{height:110.426667pt;}
.hf{height:110.480000pt;}
.h13{height:110.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:63.200000pt;}
.w5{width:70.400000pt;}
.wc{width:75.146667pt;}
.we{width:93.360000pt;}
.w11{width:98.640000pt;}
.w7{width:102.320000pt;}
.w14{width:102.800000pt;}
.w9{width:103.946667pt;}
.w6{width:104.906667pt;}
.wa{width:107.040000pt;}
.wb{width:109.040000pt;}
.w3{width:112.026667pt;}
.wd{width:116.080000pt;}
.w10{width:118.666667pt;}
.w12{width:121.200000pt;}
.w8{width:132.560000pt;}
.w16{width:133.040000pt;}
.w13{width:133.866667pt;}
.w4{width:146.160000pt;}
.w17{width:150.746667pt;}
.w15{width:183.466667pt;}
.w18{width:202.480000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:98.879988pt;}
.xa{left:165.786667pt;}
.x5{left:173.866667pt;}
.x2{left:180.266655pt;}
.x14{left:245.226667pt;}
.xb{left:273.466667pt;}
.x10{left:279.706667pt;}
.x6{left:320.666667pt;}
.x15{left:378.986667pt;}
.xc{left:383.146667pt;}
.x7{left:391.706667pt;}
.x11{left:401.546667pt;}
.xd{left:458.933333pt;}
.x8{left:497.333333pt;}
.x16{left:530.373333pt;}
.x12{left:536.053333pt;}
.xe{left:575.653333pt;}
.x9{left:600.293333pt;}
.x13{left:639.493333pt;}
.xf{left:669.653333pt;}
.x3{left:704.053322pt;}
}




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