
    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_9c9c5ff68a3a13bf8665a915.woff2')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_4661e329a4409f51424d872a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb4f950ae6e43d4e49074d9e.woff2')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_43d98c6f63c783edb975e9a9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5286752158992cc7a259bf39.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ba7cbed8a540e3c72d2836c2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_51507ed0be24955ae0a47e5a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028800px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.lse{letter-spacing:0.060480px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:47.726640px;}
.ls11{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._e{margin-left:-5.530319px;}
._13{margin-left:-3.761158px;}
._8{margin-left:-2.585400px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._4{width:2.585400px;}
._5{width:3.786598px;}
._6{width:5.410800px;}
._7{width:7.395000px;}
._2{width:8.597400px;}
._b{width:9.798839px;}
._12{width:10.823043px;}
._3{width:11.895000px;}
._d{width:14.609160px;}
._c{width:15.631200px;}
._10{width:17.161559px;}
._f{width:18.637440px;}
._a{width:22.088400px;}
._9{width:23.209800px;}
._11{width:63.005760px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y85{bottom:7.830000px;}
.y88{bottom:7.920000px;}
.y8a{bottom:9.540000px;}
.y95{bottom:25.380000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y57{bottom:124.320000px;}
.y56{bottom:141.870000px;}
.y28{bottom:142.500000px;}
.yeb{bottom:151.770000px;}
.y9e{bottom:156.360000px;}
.y27{bottom:160.050000px;}
.y55{bottom:168.510000px;}
.yea{bottom:169.320000px;}
.y9d{bottom:173.910000px;}
.yc6{bottom:176.790000px;}
.y79{bottom:188.310000px;}
.y9c{bottom:191.550000px;}
.yc5{bottom:194.430000px;}
.y26{bottom:195.600000px;}
.ye9{bottom:195.960000px;}
.y54{bottom:204.060000px;}
.y78{bottom:205.950000px;}
.y25{bottom:213.240000px;}
.ye8{bottom:213.510000px;}
.y53{bottom:221.610000px;}
.y9b{bottom:226.380000px;}
.yc4{bottom:229.980000px;}
.y24{bottom:230.790000px;}
.y77{bottom:232.500000px;}
.ye7{bottom:240.150000px;}
.y9a{bottom:240.420000px;}
.y52{bottom:248.160000px;}
.y23{bottom:248.340000px;}
.y99{bottom:252.660000px;}
.ye6{bottom:257.700000px;}
.yc3{bottom:265.530000px;}
.y22{bottom:265.980000px;}
.y76{bottom:268.050000px;}
.y98{bottom:280.020000px;}
.yc2{bottom:283.170000px;}
.ye5{bottom:284.250000px;}
.y51{bottom:285.240000px;}
.y75{bottom:285.690000px;}
.y21{bottom:292.890000px;}
.ye4{bottom:301.890000px;}
.y50{bottom:304.050000px;}
.y97{bottom:307.290000px;}
.y74{bottom:312.240000px;}
.yc1{bottom:318.720000px;}
.y4f{bottom:323.040000px;}
.ye3{bottom:328.440000px;}
.y96{bottom:334.650000px;}
.yc0{bottom:336.360000px;}
.y20{bottom:341.490000px;}
.y73{bottom:344.820000px;}
.ye2{bottom:346.080000px;}
.y4e{bottom:358.770000px;}
.y94{bottom:362.010000px;}
.ybf{bottom:363.180000px;}
.ye1{bottom:372.630000px;}
.y1f{bottom:378.480000px;}
.y72{bottom:380.370000px;}
.ye0{bottom:390.180000px;}
.y4d{bottom:394.320000px;}
.y1e{bottom:396.120000px;}
.y71{bottom:398.010000px;}
.ybe{bottom:411.510000px;}
.y4c{bottom:411.870000px;}
.y1d{bottom:413.670000px;}
.y70{bottom:415.560000px;}
.ydf{bottom:416.820000px;}
.y93{bottom:428.250000px;}
.ybd{bottom:429.060000px;}
.y1c{bottom:431.220000px;}
.y6f{bottom:433.200000px;}
.yde{bottom:434.370000px;}
.y4b{bottom:438.510000px;}
.y92{bottom:445.890000px;}
.ybc{bottom:446.700000px;}
.y1b{bottom:448.860000px;}
.y6e{bottom:450.750000px;}
.ydd{bottom:461.010000px;}
.y1a{bottom:466.410000px;}
.y4a{bottom:474.450000px;}
.y6d{bottom:477.420000px;}
.ydc{bottom:478.590000px;}
.y91{bottom:481.470000px;}
.ybb{bottom:482.280000px;}
.y19{bottom:484.080000px;}
.y90{bottom:499.020000px;}
.yba{bottom:499.830000px;}
.y18{bottom:501.630000px;}
.ydb{bottom:505.140000px;}
.y6c{bottom:512.970000px;}
.y17{bottom:519.180000px;}
.y49{bottom:522.690000px;}
.yda{bottom:522.780000px;}
.y8f{bottom:534.660000px;}
.yb9{bottom:535.470000px;}
.y16{bottom:536.820000px;}
.y48{bottom:540.330000px;}
.y6b{bottom:548.520000px;}
.y8e{bottom:552.210000px;}
.yb8{bottom:553.020000px;}
.y15{bottom:554.370000px;}
.y47{bottom:557.880000px;}
.yd9{bottom:566.880000px;}
.yb7{bottom:570.660000px;}
.y14{bottom:571.920000px;}
.y46{bottom:575.430000px;}
.y6a{bottom:584.160000px;}
.yd8{bottom:584.520000px;}
.y8d{bottom:587.040000px;}
.y13{bottom:589.560000px;}
.y8c{bottom:601.170000px;}
.yb6{bottom:606.210000px;}
.y12{bottom:607.110000px;}
.y45{bottom:611.070000px;}
.y8b{bottom:613.320000px;}
.y69{bottom:619.710000px;}
.yb5{bottom:623.760000px;}
.y11{bottom:624.750000px;}
.y44{bottom:628.620000px;}
.yd7{bottom:628.710000px;}
.y89{bottom:640.680000px;}
.yb4{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.y43{bottom:646.260000px;}
.y68{bottom:655.350000px;}
.yb3{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.y42{bottom:663.810000px;}
.y87{bottom:669.660000px;}
.yd6{bottom:672.810000px;}
.yb2{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.y41{bottom:681.360000px;}
.yd5{bottom:690.450000px;}
.y67{bottom:690.900000px;}
.yd{bottom:695.040000px;}
.y86{bottom:697.020000px;}
.y40{bottom:699.000000px;}
.y66{bottom:708.450000px;}
.yb1{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.yd4{bottom:717.000000px;}
.y84{bottom:724.380000px;}
.y65{bottom:726.090000px;}
.yb0{bottom:729.690000px;}
.y3f{bottom:734.550000px;}
.yd3{bottom:734.640000px;}
.yb{bottom:739.590000px;}
.yaf{bottom:747.330000px;}
.y3e{bottom:752.190000px;}
.yd2{bottom:761.190000px;}
.y64{bottom:761.640000px;}
.yae{bottom:764.880000px;}
.y3d{bottom:769.740000px;}
.y83{bottom:773.070000px;}
.yad{bottom:782.520000px;}
.y3c{bottom:787.290000px;}
.ya{bottom:787.830000px;}
.yd1{bottom:788.100000px;}
.y82{bottom:790.620000px;}
.y63{bottom:797.280000px;}
.y3b{bottom:804.930000px;}
.yf7{bottom:813.930000px;}
.yac{bottom:818.070000px;}
.y3a{bottom:822.480000px;}
.y9{bottom:823.380000px;}
.y62{bottom:823.830000px;}
.y81{bottom:826.260000px;}
.yf6{bottom:831.480000px;}
.yab{bottom:835.620000px;}
.yd0{bottom:836.340000px;}
.y39{bottom:840.030000px;}
.y80{bottom:843.810000px;}
.yaa{bottom:853.260000px;}
.ycf{bottom:853.980000px;}
.y38{bottom:857.670000px;}
.yf5{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y61{bottom:859.380000px;}
.y7f{bottom:861.450000px;}
.ya9{bottom:870.810000px;}
.yf4{bottom:875.670000px;}
.yce{bottom:880.890000px;}
.y60{bottom:886.020000px;}
.y7e{bottom:888.270000px;}
.ya8{bottom:888.450000px;}
.y37{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y36{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.ycd{bottom:917.880000px;}
.yf3{bottom:919.860000px;}
.y5f{bottom:921.570000px;}
.ya7{bottom:924.000000px;}
.y35{bottom:928.410000px;}
.y7d{bottom:936.600000px;}
.yf2{bottom:937.410000px;}
.ya6{bottom:941.550000px;}
.ycc{bottom:944.790000px;}
.y34{bottom:945.960000px;}
.y5e{bottom:948.120000px;}
.y5{bottom:949.290000px;}
.y7c{bottom:954.150000px;}
.yf1{bottom:954.960000px;}
.ya5{bottom:959.190000px;}
.y33{bottom:963.600000px;}
.y7b{bottom:971.790000px;}
.y5d{bottom:980.790000px;}
.yf0{bottom:981.600000px;}
.ycb{bottom:981.780000px;}
.y4{bottom:987.630000px;}
.ya4{bottom:994.740000px;}
.y7a{bottom:998.340000px;}
.y32{bottom:999.150000px;}
.yca{bottom:999.420000px;}
.y3{bottom:1012.320000px;}
.y5c{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.yc9{bottom:1026.360000px;}
.ya3{bottom:1029.960000px;}
.y5b{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.yef{bottom:1043.370000px;}
.y2f{bottom:1051.920000px;}
.y5a{bottom:1060.560000px;}
.yee{bottom:1060.920000px;}
.yc8{bottom:1063.350000px;}
.ya2{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.yed{bottom:1078.560000px;}
.ya1{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.yc7{bottom:1090.260000px;}
.y59{bottom:1096.110000px;}
.ya0{bottom:1100.700000px;}
.yec{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y9f{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h8{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:26.995781px;}
.ha{height:28.260000px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:40.539023px;}
.hc{height:44.100000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:67.050000px;}
.w7{width:70.560000px;}
.wc{width:80.280000px;}
.wb{width:87.030000px;}
.w3{width:120.720000px;}
.w9{width:127.530000px;}
.w8{width:160.950000px;}
.wa{width:161.310000px;}
.w4{width:189.360000px;}
.w5{width:231.330000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xa{left:86.039987px;}
.x4{left:105.660000px;}
.x12{left:111.239987px;}
.xc{left:136.620000px;}
.x2{left:202.799987px;}
.x6{left:227.100000px;}
.xb{left:268.859987px;}
.xd{left:298.290000px;}
.x11{left:349.769987px;}
.x7{left:417.180000px;}
.xe{left:426.540000px;}
.xf{left:588.570000px;}
.x8{left:649.230000px;}
.x10{left:676.320000px;}
.x9{left:717.000000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.025600pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.053760pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._e{margin-left:-4.915839pt;}
._13{margin-left:-3.343252pt;}
._8{margin-left:-2.298134pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._4{width:2.298134pt;}
._5{width:3.365865pt;}
._6{width:4.809600pt;}
._7{width:6.573334pt;}
._2{width:7.642134pt;}
._b{width:8.710079pt;}
._12{width:9.620483pt;}
._3{width:10.573334pt;}
._d{width:12.985920pt;}
._c{width:13.894400pt;}
._10{width:15.254719pt;}
._f{width:16.566614pt;}
._a{width:19.634133pt;}
._9{width:20.630934pt;}
._11{width:56.005120pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:6.960000pt;}
.y88{bottom:7.040000pt;}
.y8a{bottom:8.480000pt;}
.y95{bottom:22.560000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y57{bottom:110.506667pt;}
.y56{bottom:126.106667pt;}
.y28{bottom:126.666667pt;}
.yeb{bottom:134.906667pt;}
.y9e{bottom:138.986667pt;}
.y27{bottom:142.266667pt;}
.y55{bottom:149.786667pt;}
.yea{bottom:150.506667pt;}
.y9d{bottom:154.586667pt;}
.yc6{bottom:157.146667pt;}
.y79{bottom:167.386667pt;}
.y9c{bottom:170.266667pt;}
.yc5{bottom:172.826667pt;}
.y26{bottom:173.866667pt;}
.ye9{bottom:174.186667pt;}
.y54{bottom:181.386667pt;}
.y78{bottom:183.066667pt;}
.y25{bottom:189.546667pt;}
.ye8{bottom:189.786667pt;}
.y53{bottom:196.986667pt;}
.y9b{bottom:201.226667pt;}
.yc4{bottom:204.426667pt;}
.y24{bottom:205.146667pt;}
.y77{bottom:206.666667pt;}
.ye7{bottom:213.466667pt;}
.y9a{bottom:213.706667pt;}
.y52{bottom:220.586667pt;}
.y23{bottom:220.746667pt;}
.y99{bottom:224.586667pt;}
.ye6{bottom:229.066667pt;}
.yc3{bottom:236.026667pt;}
.y22{bottom:236.426667pt;}
.y76{bottom:238.266667pt;}
.y98{bottom:248.906667pt;}
.yc2{bottom:251.706667pt;}
.ye5{bottom:252.666667pt;}
.y51{bottom:253.546667pt;}
.y75{bottom:253.946667pt;}
.y21{bottom:260.346667pt;}
.ye4{bottom:268.346667pt;}
.y50{bottom:270.266667pt;}
.y97{bottom:273.146667pt;}
.y74{bottom:277.546667pt;}
.yc1{bottom:283.306667pt;}
.y4f{bottom:287.146667pt;}
.ye3{bottom:291.946667pt;}
.y96{bottom:297.466667pt;}
.yc0{bottom:298.986667pt;}
.y20{bottom:303.546667pt;}
.y73{bottom:306.506667pt;}
.ye2{bottom:307.626667pt;}
.y4e{bottom:318.906667pt;}
.y94{bottom:321.786667pt;}
.ybf{bottom:322.826667pt;}
.ye1{bottom:331.226667pt;}
.y1f{bottom:336.426667pt;}
.y72{bottom:338.106667pt;}
.ye0{bottom:346.826667pt;}
.y4d{bottom:350.506667pt;}
.y1e{bottom:352.106667pt;}
.y71{bottom:353.786667pt;}
.ybe{bottom:365.786667pt;}
.y4c{bottom:366.106667pt;}
.y1d{bottom:367.706667pt;}
.y70{bottom:369.386667pt;}
.ydf{bottom:370.506667pt;}
.y93{bottom:380.666667pt;}
.ybd{bottom:381.386667pt;}
.y1c{bottom:383.306667pt;}
.y6f{bottom:385.066667pt;}
.yde{bottom:386.106667pt;}
.y4b{bottom:389.786667pt;}
.y92{bottom:396.346667pt;}
.ybc{bottom:397.066667pt;}
.y1b{bottom:398.986667pt;}
.y6e{bottom:400.666667pt;}
.ydd{bottom:409.786667pt;}
.y1a{bottom:414.586667pt;}
.y4a{bottom:421.733333pt;}
.y6d{bottom:424.373333pt;}
.ydc{bottom:425.413333pt;}
.y91{bottom:427.973333pt;}
.ybb{bottom:428.693333pt;}
.y19{bottom:430.293333pt;}
.y90{bottom:443.573333pt;}
.yba{bottom:444.293333pt;}
.y18{bottom:445.893333pt;}
.ydb{bottom:449.013333pt;}
.y6c{bottom:455.973333pt;}
.y17{bottom:461.493333pt;}
.y49{bottom:464.613333pt;}
.yda{bottom:464.693333pt;}
.y8f{bottom:475.253333pt;}
.yb9{bottom:475.973333pt;}
.y16{bottom:477.173333pt;}
.y48{bottom:480.293333pt;}
.y6b{bottom:487.573333pt;}
.y8e{bottom:490.853333pt;}
.yb8{bottom:491.573333pt;}
.y15{bottom:492.773333pt;}
.y47{bottom:495.893333pt;}
.yd9{bottom:503.893333pt;}
.yb7{bottom:507.253333pt;}
.y14{bottom:508.373333pt;}
.y46{bottom:511.493333pt;}
.y6a{bottom:519.253333pt;}
.yd8{bottom:519.573333pt;}
.y8d{bottom:521.813333pt;}
.y13{bottom:524.053333pt;}
.y8c{bottom:534.373333pt;}
.yb6{bottom:538.853333pt;}
.y12{bottom:539.653333pt;}
.y45{bottom:543.173333pt;}
.y8b{bottom:545.173333pt;}
.y69{bottom:550.853333pt;}
.yb5{bottom:554.453333pt;}
.y11{bottom:555.333333pt;}
.y44{bottom:558.773333pt;}
.yd7{bottom:558.853333pt;}
.y89{bottom:569.493333pt;}
.yb4{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.y43{bottom:574.453333pt;}
.y68{bottom:582.533333pt;}
.yb3{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.y42{bottom:590.053333pt;}
.y87{bottom:595.253333pt;}
.yd6{bottom:598.053333pt;}
.yb2{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.y41{bottom:605.653333pt;}
.yd5{bottom:613.733333pt;}
.y67{bottom:614.133333pt;}
.yd{bottom:617.813333pt;}
.y86{bottom:619.573333pt;}
.y40{bottom:621.333333pt;}
.y66{bottom:629.733333pt;}
.yb1{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.yd4{bottom:637.333333pt;}
.y84{bottom:643.893333pt;}
.y65{bottom:645.413333pt;}
.yb0{bottom:648.613333pt;}
.y3f{bottom:652.933333pt;}
.yd3{bottom:653.013333pt;}
.yb{bottom:657.413333pt;}
.yaf{bottom:664.293333pt;}
.y3e{bottom:668.613333pt;}
.yd2{bottom:676.613333pt;}
.y64{bottom:677.013333pt;}
.yae{bottom:679.893333pt;}
.y3d{bottom:684.213333pt;}
.y83{bottom:687.173333pt;}
.yad{bottom:695.573333pt;}
.y3c{bottom:699.813333pt;}
.ya{bottom:700.293333pt;}
.yd1{bottom:700.533333pt;}
.y82{bottom:702.773333pt;}
.y63{bottom:708.693333pt;}
.y3b{bottom:715.493333pt;}
.yf7{bottom:723.493333pt;}
.yac{bottom:727.173333pt;}
.y3a{bottom:731.093333pt;}
.y9{bottom:731.893333pt;}
.y62{bottom:732.293333pt;}
.y81{bottom:734.453333pt;}
.yf6{bottom:739.093333pt;}
.yab{bottom:742.773333pt;}
.yd0{bottom:743.413333pt;}
.y39{bottom:746.693333pt;}
.y80{bottom:750.053333pt;}
.yaa{bottom:758.453333pt;}
.ycf{bottom:759.093333pt;}
.y38{bottom:762.373333pt;}
.yf5{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y61{bottom:763.893333pt;}
.y7f{bottom:765.733333pt;}
.ya9{bottom:774.053333pt;}
.yf4{bottom:778.373333pt;}
.yce{bottom:783.013333pt;}
.y60{bottom:787.573333pt;}
.y7e{bottom:789.573333pt;}
.ya8{bottom:789.733333pt;}
.y37{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.ycd{bottom:815.893333pt;}
.yf3{bottom:817.653333pt;}
.y5f{bottom:819.173333pt;}
.ya7{bottom:821.333333pt;}
.y35{bottom:825.253333pt;}
.y7d{bottom:832.533333pt;}
.yf2{bottom:833.253333pt;}
.ya6{bottom:836.933333pt;}
.ycc{bottom:839.813333pt;}
.y34{bottom:840.853333pt;}
.y5e{bottom:842.773333pt;}
.y5{bottom:843.813333pt;}
.y7c{bottom:848.133333pt;}
.yf1{bottom:848.853333pt;}
.ya5{bottom:852.613333pt;}
.y33{bottom:856.533333pt;}
.y7b{bottom:863.813333pt;}
.y5d{bottom:871.813333pt;}
.yf0{bottom:872.533333pt;}
.ycb{bottom:872.693333pt;}
.y4{bottom:877.893333pt;}
.ya4{bottom:884.213333pt;}
.y7a{bottom:887.413333pt;}
.y32{bottom:888.133333pt;}
.yca{bottom:888.373333pt;}
.y3{bottom:899.840000pt;}
.y5c{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.yc9{bottom:912.320000pt;}
.ya3{bottom:915.520000pt;}
.y5b{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.yef{bottom:927.440000pt;}
.y2f{bottom:935.040000pt;}
.y5a{bottom:942.720000pt;}
.yee{bottom:943.040000pt;}
.yc8{bottom:945.200000pt;}
.ya2{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.yed{bottom:958.720000pt;}
.ya1{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.yc7{bottom:969.120000pt;}
.y59{bottom:974.320000pt;}
.ya0{bottom:978.400000pt;}
.yec{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y9f{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:23.996250pt;}
.ha{height:25.120000pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:36.034687pt;}
.hc{height:39.200000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:59.600000pt;}
.w7{width:62.720000pt;}
.wc{width:71.360000pt;}
.wb{width:77.360000pt;}
.w3{width:107.306667pt;}
.w9{width:113.360000pt;}
.w8{width:143.066667pt;}
.wa{width:143.386667pt;}
.w4{width:168.320000pt;}
.w5{width:205.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xa{left:76.479988pt;}
.x4{left:93.920000pt;}
.x12{left:98.879988pt;}
.xc{left:121.440000pt;}
.x2{left:180.266655pt;}
.x6{left:201.866667pt;}
.xb{left:238.986655pt;}
.xd{left:265.146667pt;}
.x11{left:310.906655pt;}
.x7{left:370.826667pt;}
.xe{left:379.146667pt;}
.xf{left:523.173333pt;}
.x8{left:577.093333pt;}
.x10{left:601.173333pt;}
.x9{left:637.333333pt;}
.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; }
  