
    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_86de8376ff470a6128775b8e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8ff98eb83b7fd370f873e394.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e5def57d035d7bf7c7ab8ffe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_d96c1cb3af7b3c8bd1fc3a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_942d23e627750576e48deda6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.ls6{letter-spacing:18.000000px;}
.ls3{letter-spacing:42.797280px;}
.ls5{letter-spacing:54.864000px;}
.ls4{letter-spacing:59.904000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-4.896000px;}
._c{margin-left:-3.888000px;}
._b{margin-left:-2.880000px;}
._0{margin-left:-1.324800px;}
._1{width:1.330080px;}
._9{width:2.520000px;}
._a{width:3.744000px;}
._10{width:5.616000px;}
._11{width:6.724800px;}
._12{width:7.848000px;}
._13{width:8.872320px;}
._18{width:10.445280px;}
._20{width:11.586720px;}
._e{width:12.600000px;}
._f{width:13.680000px;}
._16{width:14.760000px;}
._14{width:16.732800px;}
._6{width:19.038720px;}
._5{width:20.232000px;}
._17{width:21.792000px;}
._7{width:23.256000px;}
._8{width:24.336000px;}
._3{width:26.153040px;}
._4{width:27.206400px;}
._1e{width:28.237920px;}
._1d{width:29.376000px;}
._1f{width:36.676800px;}
._1a{width:38.534400px;}
._19{width:39.700800px;}
._2{width:44.155920px;}
._22{width:45.345600px;}
._1b{width:46.872000px;}
._1c{width:48.516000px;}
._24{width:109.224000px;}
._23{width:207.432000px;}
._15{width:791.460000px;}
._21{width:845.796000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:6.120000px;}
.yaf{bottom:11.520000px;}
.y6{bottom:20.160000px;}
.y5{bottom:57.240000px;}
.y4{bottom:77.616000px;}
.y3{bottom:96.696000px;}
.y2{bottom:115.956000px;}
.yad{bottom:143.136000px;}
.ye0{bottom:146.196000px;}
.y51{bottom:148.896000px;}
.y32{bottom:162.930000px;}
.ydf{bottom:166.890000px;}
.y98{bottom:169.410000px;}
.y6d{bottom:172.290000px;}
.yac{bottom:174.090000px;}
.y50{bottom:179.850000px;}
.yde{bottom:187.590000px;}
.y31{bottom:193.890000px;}
.y97{bottom:200.550000px;}
.y6c{bottom:203.250000px;}
.ydd{bottom:208.290000px;}
.y89{bottom:210.090000px;}
.y4f{bottom:210.990000px;}
.yab{bottom:211.890000px;}
.y30{bottom:225.030000px;}
.ydc{bottom:228.990000px;}
.y6b{bottom:235.650000px;}
.y96{bottom:237.630000px;}
.y88{bottom:241.050000px;}
.y4e{bottom:241.950000px;}
.y2f{bottom:245.730000px;}
.ydb{bottom:249.690000px;}
.y2e{bottom:266.250000px;}
.y95{bottom:268.590000px;}
.yda{bottom:270.390000px;}
.y87{bottom:272.190000px;}
.y4d{bottom:273.090000px;}
.y6a{bottom:273.990000px;}
.y2d{bottom:286.950000px;}
.yd9{bottom:291.090000px;}
.y94{bottom:299.730000px;}
.y86{bottom:303.150000px;}
.y4c{bottom:304.050000px;}
.y69{bottom:305.130000px;}
.y2c{bottom:307.650000px;}
.yd8{bottom:311.790000px;}
.yc5{bottom:318.270000px;}
.y2b{bottom:328.350000px;}
.y93{bottom:330.690000px;}
.yd7{bottom:332.490000px;}
.y68{bottom:336.090000px;}
.y85{bottom:340.275000px;}
.y4b{bottom:341.175000px;}
.y2a{bottom:349.095000px;}
.yc4{bottom:349.275000px;}
.yd6{bottom:353.235000px;}
.y92{bottom:361.875000px;}
.y29{bottom:369.795000px;}
.y84{bottom:371.415000px;}
.y4a{bottom:372.135000px;}
.y67{bottom:373.215000px;}
.yc3{bottom:380.415000px;}
.yd5{bottom:390.135000px;}
.y28{bottom:390.495000px;}
.y91{bottom:398.775000px;}
.y83{bottom:402.375000px;}
.y49{bottom:403.275000px;}
.y66{bottom:404.355000px;}
.y27{bottom:411.195000px;}
.yc2{bottom:411.375000px;}
.yd4{bottom:421.275000px;}
.y90{bottom:429.915000px;}
.y26{bottom:431.895000px;}
.y82{bottom:433.515000px;}
.y48{bottom:434.235000px;}
.y65{bottom:435.315000px;}
.yc1{bottom:442.515000px;}
.yd3{bottom:452.235000px;}
.y25{bottom:452.595000px;}
.y8f{bottom:460.875000px;}
.y81{bottom:464.475000px;}
.y47{bottom:465.375000px;}
.y64{bottom:466.455000px;}
.y24{bottom:473.295000px;}
.yc0{bottom:473.475000px;}
.yd2{bottom:483.375000px;}
.y8e{bottom:492.015000px;}
.y23{bottom:493.995000px;}
.y80{bottom:495.615000px;}
.y63{bottom:497.415000px;}
.yae{bottom:501.375000px;}
.y46{bottom:502.455000px;}
.ybf{bottom:504.615000px;}
.yd1{bottom:514.335000px;}
.y8d{bottom:522.975000px;}
.y22{bottom:525.135000px;}
.y62{bottom:528.555000px;}
.y7f{bottom:532.695000px;}
.y45{bottom:533.415000px;}
.ybe{bottom:541.695000px;}
.yd0{bottom:545.475000px;}
.y21{bottom:545.835000px;}
.y8c{bottom:554.115000px;}
.yaa{bottom:555.555000px;}
.y7e{bottom:563.655000px;}
.y44{bottom:564.555000px;}
.y61{bottom:565.455000px;}
.y20{bottom:566.535000px;}
.yf3{bottom:567.255000px;}
.ybd{bottom:572.655000px;}
.ycf{bottom:576.435000px;}
.ya9{bottom:586.515000px;}
.y1f{bottom:587.235000px;}
.y8b{bottom:591.015000px;}
.y7d{bottom:594.615000px;}
.y43{bottom:595.515000px;}
.ybc{bottom:603.645000px;}
.yf2{bottom:604.365000px;}
.y60{bottom:605.625000px;}
.yce{bottom:607.605000px;}
.y1e{bottom:607.965000px;}
.ya8{bottom:617.685000px;}
.y7c{bottom:625.785000px;}
.y42{bottom:626.685000px;}
.y1d{bottom:628.665000px;}
.y8a{bottom:631.185000px;}
.ybb{bottom:634.785000px;}
.y5f{bottom:636.585000px;}
.ycd{bottom:638.565000px;}
.yf1{bottom:643.065000px;}
.ya7{bottom:648.645000px;}
.y1c{bottom:649.365000px;}
.y7b{bottom:656.745000px;}
.y41{bottom:657.645000px;}
.yf0{bottom:663.765000px;}
.yba{bottom:665.745000px;}
.y5e{bottom:667.725000px;}
.ycc{bottom:669.705000px;}
.y1b{bottom:670.065000px;}
.ya6{bottom:679.785000px;}
.yef{bottom:684.465000px;}
.y7a{bottom:687.885000px;}
.y40{bottom:688.785000px;}
.y1a{bottom:690.765000px;}
.y5d{bottom:698.685000px;}
.ycb{bottom:700.665000px;}
.yb9{bottom:702.825000px;}
.ya5{bottom:710.745000px;}
.y19{bottom:711.465000px;}
.yee{bottom:723.165000px;}
.y79{bottom:724.965000px;}
.y3f{bottom:725.685000px;}
.y5c{bottom:729.825000px;}
.yca{bottom:731.805000px;}
.y18{bottom:732.165000px;}
.yb8{bottom:733.965000px;}
.ya4{bottom:741.705000px;}
.yed{bottom:743.865000px;}
.y17{bottom:752.865000px;}
.y78{bottom:755.925000px;}
.y3e{bottom:756.825000px;}
.yc9{bottom:762.765000px;}
.yec{bottom:764.565000px;}
.yb7{bottom:764.925000px;}
.y5b{bottom:772.125000px;}
.y16{bottom:773.565000px;}
.ya3{bottom:778.785000px;}
.yeb{bottom:785.265000px;}
.y77{bottom:787.065000px;}
.y3d{bottom:787.785000px;}
.yc8{bottom:793.905000px;}
.y15{bottom:794.265000px;}
.yb6{bottom:796.065000px;}
.ya2{bottom:809.925000px;}
.y14{bottom:814.965000px;}
.y5a{bottom:815.145000px;}
.y76{bottom:818.025000px;}
.y3c{bottom:818.925000px;}
.yea{bottom:823.965000px;}
.yc7{bottom:824.865000px;}
.yb5{bottom:833.145000px;}
.y13{bottom:835.665000px;}
.ya1{bottom:840.885000px;}
.ye9{bottom:844.665000px;}
.y75{bottom:849.165000px;}
.y3b{bottom:849.885000px;}
.y59{bottom:852.045000px;}
.yc6{bottom:856.005000px;}
.y12{bottom:856.365000px;}
.yb4{bottom:864.105000px;}
.ye8{bottom:865.365000px;}
.ya0{bottom:872.070000px;}
.y11{bottom:877.110000px;}
.y58{bottom:883.230000px;}
.y74{bottom:886.290000px;}
.y3a{bottom:887.010000px;}
.yb3{bottom:895.290000px;}
.y10{bottom:897.810000px;}
.y9f{bottom:903.030000px;}
.ye7{bottom:904.110000px;}
.y73{bottom:917.250000px;}
.y39{bottom:918.150000px;}
.yf{bottom:918.510000px;}
.y57{bottom:920.310000px;}
.yb2{bottom:926.250000px;}
.y9e{bottom:934.170000px;}
.ye{bottom:939.210000px;}
.ye6{bottom:942.810000px;}
.y72{bottom:948.210000px;}
.y38{bottom:949.110000px;}
.y56{bottom:951.270000px;}
.yb1{bottom:957.210000px;}
.yd{bottom:959.910000px;}
.ye5{bottom:963.510000px;}
.y9d{bottom:965.130000px;}
.y71{bottom:979.350000px;}
.y37{bottom:980.250000px;}
.yc{bottom:981.870000px;}
.ye4{bottom:984.210000px;}
.y55{bottom:988.350000px;}
.yb0{bottom:994.290000px;}
.y9c{bottom:1007.430000px;}
.yb{bottom:1009.410000px;}
.y99{bottom:1009.950000px;}
.y70{bottom:1010.310000px;}
.y36{bottom:1011.210000px;}
.ye3{bottom:1022.910000px;}
.y54{bottom:1025.430000px;}
.ya{bottom:1037.130000px;}
.y6f{bottom:1041.450000px;}
.y35{bottom:1042.350000px;}
.ye2{bottom:1043.610000px;}
.y9b{bottom:1050.450000px;}
.y53{bottom:1056.390000px;}
.y9{bottom:1064.670000px;}
.y34{bottom:1073.310000px;}
.y6e{bottom:1078.350000px;}
.ye1{bottom:1085.910000px;}
.y52{bottom:1087.530000px;}
.y8{bottom:1092.210000px;}
.y33{bottom:1115.610000px;}
.y7{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h8{height:25.560000px;}
.h7{height:26.100000px;}
.h5{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:601.305000px;}
.w3{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:123.876000px;}
.x2{left:127.655987px;}
.x9{left:135.935987px;}
.x5{left:137.915987px;}
.x12{left:149.436000px;}
.xa{left:166.889987px;}
.x3{left:170.129987px;}
.x6{left:178.409987px;}
.x13{left:181.479000px;}
.xd{left:197.129987px;}
.xe{left:224.129987px;}
.xb{left:236.909987px;}
.x10{left:247.179000px;}
.x7{left:355.574987px;}
.x8{left:467.924987px;}
.x1{left:489.164987px;}
.x11{left:711.329987px;}
.xc{left:765.509987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls3{letter-spacing:38.042027pt;}
.ls5{letter-spacing:48.768000pt;}
.ls4{letter-spacing:53.248000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-4.352000pt;}
._c{margin-left:-3.456000pt;}
._b{margin-left:-2.560000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.182293pt;}
._9{width:2.240000pt;}
._a{width:3.328000pt;}
._10{width:4.992000pt;}
._11{width:5.977600pt;}
._12{width:6.976000pt;}
._13{width:7.886507pt;}
._18{width:9.284693pt;}
._20{width:10.299307pt;}
._e{width:11.200000pt;}
._f{width:12.160000pt;}
._16{width:13.120000pt;}
._14{width:14.873600pt;}
._6{width:16.923307pt;}
._5{width:17.984000pt;}
._17{width:19.370667pt;}
._7{width:20.672000pt;}
._8{width:21.632000pt;}
._3{width:23.247147pt;}
._4{width:24.183467pt;}
._1e{width:25.100373pt;}
._1d{width:26.112000pt;}
._1f{width:32.601600pt;}
._1a{width:34.252800pt;}
._19{width:35.289600pt;}
._2{width:39.249707pt;}
._22{width:40.307200pt;}
._1b{width:41.664000pt;}
._1c{width:43.125333pt;}
._24{width:97.088000pt;}
._23{width:184.384000pt;}
._15{width:703.520000pt;}
._21{width:751.818667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:5.440000pt;}
.yaf{bottom:10.240000pt;}
.y6{bottom:17.920000pt;}
.y5{bottom:50.880000pt;}
.y4{bottom:68.992000pt;}
.y3{bottom:85.952000pt;}
.y2{bottom:103.072000pt;}
.yad{bottom:127.232000pt;}
.ye0{bottom:129.952000pt;}
.y51{bottom:132.352000pt;}
.y32{bottom:144.826667pt;}
.ydf{bottom:148.346667pt;}
.y98{bottom:150.586667pt;}
.y6d{bottom:153.146667pt;}
.yac{bottom:154.746667pt;}
.y50{bottom:159.866667pt;}
.yde{bottom:166.746667pt;}
.y31{bottom:172.346667pt;}
.y97{bottom:178.266667pt;}
.y6c{bottom:180.666667pt;}
.ydd{bottom:185.146667pt;}
.y89{bottom:186.746667pt;}
.y4f{bottom:187.546667pt;}
.yab{bottom:188.346667pt;}
.y30{bottom:200.026667pt;}
.ydc{bottom:203.546667pt;}
.y6b{bottom:209.466667pt;}
.y96{bottom:211.226667pt;}
.y88{bottom:214.266667pt;}
.y4e{bottom:215.066667pt;}
.y2f{bottom:218.426667pt;}
.ydb{bottom:221.946667pt;}
.y2e{bottom:236.666667pt;}
.y95{bottom:238.746667pt;}
.yda{bottom:240.346667pt;}
.y87{bottom:241.946667pt;}
.y4d{bottom:242.746667pt;}
.y6a{bottom:243.546667pt;}
.y2d{bottom:255.066667pt;}
.yd9{bottom:258.746667pt;}
.y94{bottom:266.426667pt;}
.y86{bottom:269.466667pt;}
.y4c{bottom:270.266667pt;}
.y69{bottom:271.226667pt;}
.y2c{bottom:273.466667pt;}
.yd8{bottom:277.146667pt;}
.yc5{bottom:282.906667pt;}
.y2b{bottom:291.866667pt;}
.y93{bottom:293.946667pt;}
.yd7{bottom:295.546667pt;}
.y68{bottom:298.746667pt;}
.y85{bottom:302.466667pt;}
.y4b{bottom:303.266667pt;}
.y2a{bottom:310.306667pt;}
.yc4{bottom:310.466667pt;}
.yd6{bottom:313.986667pt;}
.y92{bottom:321.666667pt;}
.y29{bottom:328.706667pt;}
.y84{bottom:330.146667pt;}
.y4a{bottom:330.786667pt;}
.y67{bottom:331.746667pt;}
.yc3{bottom:338.146667pt;}
.yd5{bottom:346.786667pt;}
.y28{bottom:347.106667pt;}
.y91{bottom:354.466667pt;}
.y83{bottom:357.666667pt;}
.y49{bottom:358.466667pt;}
.y66{bottom:359.426667pt;}
.y27{bottom:365.506667pt;}
.yc2{bottom:365.666667pt;}
.yd4{bottom:374.466667pt;}
.y90{bottom:382.146667pt;}
.y26{bottom:383.906667pt;}
.y82{bottom:385.346667pt;}
.y48{bottom:385.986667pt;}
.y65{bottom:386.946667pt;}
.yc1{bottom:393.346667pt;}
.yd3{bottom:401.986667pt;}
.y25{bottom:402.306667pt;}
.y8f{bottom:409.666667pt;}
.y81{bottom:412.866667pt;}
.y47{bottom:413.666667pt;}
.y64{bottom:414.626667pt;}
.y24{bottom:420.706667pt;}
.yc0{bottom:420.866667pt;}
.yd2{bottom:429.666667pt;}
.y8e{bottom:437.346667pt;}
.y23{bottom:439.106667pt;}
.y80{bottom:440.546667pt;}
.y63{bottom:442.146667pt;}
.yae{bottom:445.666667pt;}
.y46{bottom:446.626667pt;}
.ybf{bottom:448.546667pt;}
.yd1{bottom:457.186667pt;}
.y8d{bottom:464.866667pt;}
.y22{bottom:466.786667pt;}
.y62{bottom:469.826667pt;}
.y7f{bottom:473.506667pt;}
.y45{bottom:474.146667pt;}
.ybe{bottom:481.506667pt;}
.yd0{bottom:484.866667pt;}
.y21{bottom:485.186667pt;}
.y8c{bottom:492.546667pt;}
.yaa{bottom:493.826667pt;}
.y7e{bottom:501.026667pt;}
.y44{bottom:501.826667pt;}
.y61{bottom:502.626667pt;}
.y20{bottom:503.586667pt;}
.yf3{bottom:504.226667pt;}
.ybd{bottom:509.026667pt;}
.ycf{bottom:512.386667pt;}
.ya9{bottom:521.346667pt;}
.y1f{bottom:521.986667pt;}
.y8b{bottom:525.346667pt;}
.y7d{bottom:528.546667pt;}
.y43{bottom:529.346667pt;}
.ybc{bottom:536.573333pt;}
.yf2{bottom:537.213333pt;}
.y60{bottom:538.333333pt;}
.yce{bottom:540.093333pt;}
.y1e{bottom:540.413333pt;}
.ya8{bottom:549.053333pt;}
.y7c{bottom:556.253333pt;}
.y42{bottom:557.053333pt;}
.y1d{bottom:558.813333pt;}
.y8a{bottom:561.053333pt;}
.ybb{bottom:564.253333pt;}
.y5f{bottom:565.853333pt;}
.ycd{bottom:567.613333pt;}
.yf1{bottom:571.613333pt;}
.ya7{bottom:576.573333pt;}
.y1c{bottom:577.213333pt;}
.y7b{bottom:583.773333pt;}
.y41{bottom:584.573333pt;}
.yf0{bottom:590.013333pt;}
.yba{bottom:591.773333pt;}
.y5e{bottom:593.533333pt;}
.ycc{bottom:595.293333pt;}
.y1b{bottom:595.613333pt;}
.ya6{bottom:604.253333pt;}
.yef{bottom:608.413333pt;}
.y7a{bottom:611.453333pt;}
.y40{bottom:612.253333pt;}
.y1a{bottom:614.013333pt;}
.y5d{bottom:621.053333pt;}
.ycb{bottom:622.813333pt;}
.yb9{bottom:624.733333pt;}
.ya5{bottom:631.773333pt;}
.y19{bottom:632.413333pt;}
.yee{bottom:642.813333pt;}
.y79{bottom:644.413333pt;}
.y3f{bottom:645.053333pt;}
.y5c{bottom:648.733333pt;}
.yca{bottom:650.493333pt;}
.y18{bottom:650.813333pt;}
.yb8{bottom:652.413333pt;}
.ya4{bottom:659.293333pt;}
.yed{bottom:661.213333pt;}
.y17{bottom:669.213333pt;}
.y78{bottom:671.933333pt;}
.y3e{bottom:672.733333pt;}
.yc9{bottom:678.013333pt;}
.yec{bottom:679.613333pt;}
.yb7{bottom:679.933333pt;}
.y5b{bottom:686.333333pt;}
.y16{bottom:687.613333pt;}
.ya3{bottom:692.253333pt;}
.yeb{bottom:698.013333pt;}
.y77{bottom:699.613333pt;}
.y3d{bottom:700.253333pt;}
.yc8{bottom:705.693333pt;}
.y15{bottom:706.013333pt;}
.yb6{bottom:707.613333pt;}
.ya2{bottom:719.933333pt;}
.y14{bottom:724.413333pt;}
.y5a{bottom:724.573333pt;}
.y76{bottom:727.133333pt;}
.y3c{bottom:727.933333pt;}
.yea{bottom:732.413333pt;}
.yc7{bottom:733.213333pt;}
.yb5{bottom:740.573333pt;}
.y13{bottom:742.813333pt;}
.ya1{bottom:747.453333pt;}
.ye9{bottom:750.813333pt;}
.y75{bottom:754.813333pt;}
.y3b{bottom:755.453333pt;}
.y59{bottom:757.373333pt;}
.yc6{bottom:760.893333pt;}
.y12{bottom:761.213333pt;}
.yb4{bottom:768.093333pt;}
.ye8{bottom:769.213333pt;}
.ya0{bottom:775.173333pt;}
.y11{bottom:779.653333pt;}
.y58{bottom:785.093333pt;}
.y74{bottom:787.813333pt;}
.y3a{bottom:788.453333pt;}
.yb3{bottom:795.813333pt;}
.y10{bottom:798.053333pt;}
.y9f{bottom:802.693333pt;}
.ye7{bottom:803.653333pt;}
.y73{bottom:815.333333pt;}
.y39{bottom:816.133333pt;}
.yf{bottom:816.453333pt;}
.y57{bottom:818.053333pt;}
.yb2{bottom:823.333333pt;}
.y9e{bottom:830.373333pt;}
.ye{bottom:834.853333pt;}
.ye6{bottom:838.053333pt;}
.y72{bottom:842.853333pt;}
.y38{bottom:843.653333pt;}
.y56{bottom:845.573333pt;}
.yb1{bottom:850.853333pt;}
.yd{bottom:853.253333pt;}
.ye5{bottom:856.453333pt;}
.y9d{bottom:857.893333pt;}
.y71{bottom:870.533333pt;}
.y37{bottom:871.333333pt;}
.yc{bottom:872.773333pt;}
.ye4{bottom:874.853333pt;}
.y55{bottom:878.533333pt;}
.yb0{bottom:883.813333pt;}
.y9c{bottom:895.493333pt;}
.yb{bottom:897.253333pt;}
.y99{bottom:897.733333pt;}
.y70{bottom:898.053333pt;}
.y36{bottom:898.853333pt;}
.ye3{bottom:909.253333pt;}
.y54{bottom:911.493333pt;}
.ya{bottom:921.893333pt;}
.y6f{bottom:925.733333pt;}
.y35{bottom:926.533333pt;}
.ye2{bottom:927.653333pt;}
.y9b{bottom:933.733333pt;}
.y53{bottom:939.013333pt;}
.y9{bottom:946.373333pt;}
.y34{bottom:954.053333pt;}
.y6e{bottom:958.533333pt;}
.ye1{bottom:965.253333pt;}
.y52{bottom:966.693333pt;}
.y8{bottom:970.853333pt;}
.y33{bottom:991.653333pt;}
.y7{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:22.720000pt;}
.h7{height:23.200000pt;}
.h5{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:534.493333pt;}
.w3{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:110.112000pt;}
.x2{left:113.471988pt;}
.x9{left:120.831988pt;}
.x5{left:122.591988pt;}
.x12{left:132.832000pt;}
.xa{left:148.346655pt;}
.x3{left:151.226655pt;}
.x6{left:158.586655pt;}
.x13{left:161.314667pt;}
.xd{left:175.226655pt;}
.xe{left:199.226655pt;}
.xb{left:210.586655pt;}
.x10{left:219.714667pt;}
.x7{left:316.066655pt;}
.x8{left:415.933322pt;}
.x1{left:434.813322pt;}
.x11{left:632.293322pt;}
.xc{left:680.453322pt;}
.x4{left:718.373322pt;}
}




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