
    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_2eb98c4554b294f1cbe30bae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_306b02a2429e02d8924d20ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_d4395c9860f7a2428d3ad760.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b49dd54d6d32bafbcdb84adc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3ee71fa6eec77a8ee03c8fe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.998535;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_c7de720c25bf8109523f7e0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118652;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_fbc1163f472b550da6a1efd5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.684000px;}
.ls1c{letter-spacing:-0.378600px;}
.ls10{letter-spacing:-0.369600px;}
.ls1b{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.350400px;}
.ls19{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004080px;}
.lsc{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.125280px;}
.ls7{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.lse{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.369600px;}
.ls20{letter-spacing:0.378600px;}
.ls17{letter-spacing:0.540000px;}
.ls14{letter-spacing:2.700000px;}
.ls8{letter-spacing:9.180000px;}
.lsa{letter-spacing:9.900000px;}
.ls3{letter-spacing:11.340000px;}
.ls9{letter-spacing:12.780000px;}
.ls1e{letter-spacing:21.221280px;}
.ls5{letter-spacing:32.220000px;}
.lsb{letter-spacing:34.380000px;}
.ls4{letter-spacing:44.261280px;}
.ls13{letter-spacing:134.981280px;}
.ls1d{letter-spacing:673.896000px;}
.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;}
}
.ws10{word-spacing:-21.438600px;}
.wsf{word-spacing:-21.429600px;}
.ws3{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.031920px;}
.ws11{word-spacing:-20.709600px;}
.wsd{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.690400px;}
.wse{word-spacing:-20.681400px;}
.wsc{word-spacing:-20.376000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-2695.502400px;}
._11{margin-left:-2175.720000px;}
._10{margin-left:-756.339120px;}
._d{margin-left:-21.780000px;}
._30{margin-left:-20.535120px;}
._f{margin-left:-7.045200px;}
._3{margin-left:-4.970160px;}
._2{margin-left:-3.620400px;}
._1c{margin-left:-2.553600px;}
._0{margin-left:-1.263600px;}
._8{width:1.106160px;}
._1{width:2.166720px;}
._12{width:3.657600px;}
._e{width:4.657680px;}
._c{width:6.654960px;}
._a{width:7.665840px;}
._16{width:8.929440px;}
._13{width:10.361520px;}
._19{width:11.855760px;}
._1b{width:13.309920px;}
._1a{width:14.320800px;}
._1f{width:16.089840px;}
._29{width:17.521920px;}
._15{width:18.617040px;}
._2d{width:19.964880px;}
._1d{width:23.081760px;}
._4{width:24.935040px;}
._5{width:26.198640px;}
._2c{width:27.209520px;}
._6{width:28.304640px;}
._20{width:29.399760px;}
._17{width:30.615600px;}
._18{width:31.926960px;}
._21{width:33.190560px;}
._22{width:35.386800px;}
._23{width:37.234080px;}
._24{width:38.497680px;}
._1e{width:43.299360px;}
._7{width:44.310240px;}
._25{width:45.522720px;}
._2a{width:48.016800px;}
._2b{width:49.433040px;}
._2e{width:50.880960px;}
._14{width:52.060320px;}
._2f{width:62.099760px;}
._26{width:69.582240px;}
._27{width:84.071520px;}
._28{width:85.250880px;}
._31{width:843.240000px;}
._9{width:1713.933600px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y70{bottom:88.416000px;}
.y9d{bottom:89.676000px;}
.y9c{bottom:97.236000px;}
.y58{bottom:100.476000px;}
.y2c{bottom:105.156000px;}
.y6f{bottom:106.956000px;}
.y9b{bottom:113.976000px;}
.y6e{bottom:114.516000px;}
.y57{bottom:119.016000px;}
.y9a{bottom:121.536000px;}
.y56{bottom:126.576000px;}
.y2b{bottom:129.276000px;}
.y6d{bottom:129.816000px;}
.y99{bottom:138.096000px;}
.y8b{bottom:141.876000px;}
.y55{bottom:143.136000px;}
.y98{bottom:145.656000px;}
.y6c{bottom:148.356000px;}
.y2a{bottom:153.390000px;}
.y6b{bottom:155.910000px;}
.y8a{bottom:160.410000px;}
.y97{bottom:162.210000px;}
.y89{bottom:167.970000px;}
.y96{bottom:169.770000px;}
.y6a{bottom:171.210000px;}
.y29{bottom:177.510000px;}
.y54{bottom:183.270000px;}
.y88{bottom:184.530000px;}
.y95{bottom:186.330000px;}
.y69{bottom:189.750000px;}
.y87{bottom:192.090000px;}
.y94{bottom:193.890000px;}
.y68{bottom:197.310000px;}
.y28{bottom:201.630000px;}
.y52{bottom:207.390000px;}
.y86{bottom:208.650000px;}
.y93{bottom:210.450000px;}
.y67{bottom:212.610000px;}
.y53{bottom:214.950000px;}
.y85{bottom:216.210000px;}
.y92{bottom:218.010000px;}
.y27{bottom:225.750000px;}
.y66{bottom:231.150000px;}
.y51{bottom:231.510000px;}
.y84{bottom:232.770000px;}
.y91{bottom:234.570000px;}
.y65{bottom:238.710000px;}
.y83{bottom:240.330000px;}
.y26{bottom:249.870000px;}
.y64{bottom:254.010000px;}
.y50{bottom:255.630000px;}
.y82{bottom:257.070000px;}
.y81{bottom:264.630000px;}
.y63{bottom:272.550000px;}
.y25{bottom:274.215000px;}
.y4f{bottom:279.795000px;}
.y80{bottom:279.975000px;}
.y62{bottom:280.155000px;}
.y61{bottom:295.455000px;}
.y24{bottom:298.335000px;}
.y7f{bottom:298.515000px;}
.y4e{bottom:303.915000px;}
.y7e{bottom:306.075000px;}
.y60{bottom:313.995000px;}
.y5f{bottom:321.555000px;}
.y23{bottom:322.455000px;}
.y7d{bottom:322.635000px;}
.y4d{bottom:328.215000px;}
.y7c{bottom:330.195000px;}
.y5e{bottom:338.115000px;}
.y22{bottom:346.575000px;}
.y7b{bottom:346.755000px;}
.y4c{bottom:352.335000px;}
.y7a{bottom:354.315000px;}
.y21{bottom:370.695000px;}
.y79{bottom:370.875000px;}
.y4b{bottom:376.455000px;}
.y20{bottom:394.815000px;}
.y4a{bottom:400.575000px;}
.y78{bottom:408.135000px;}
.y1f{bottom:419.115000px;}
.y49{bottom:424.695000px;}
.y1e{bottom:443.235000px;}
.y48{bottom:448.815000px;}
.y1d{bottom:467.355000px;}
.y47{bottom:473.115000px;}
.y1c{bottom:491.475000px;}
.y46{bottom:497.235000px;}
.y1b{bottom:515.595000px;}
.y45{bottom:521.355000px;}
.y1a{bottom:539.715000px;}
.y44{bottom:545.475000px;}
.y77{bottom:553.035000px;}
.y19{bottom:564.045000px;}
.y43{bottom:569.625000px;}
.y18{bottom:588.165000px;}
.y42{bottom:593.745000px;}
.y17{bottom:612.285000px;}
.y41{bottom:618.045000px;}
.y76{bottom:625.605000px;}
.y16{bottom:636.405000px;}
.y40{bottom:642.165000px;}
.y15{bottom:660.525000px;}
.y3f{bottom:666.285000px;}
.y5d{bottom:673.845000px;}
.y14{bottom:684.645000px;}
.y3e{bottom:690.405000px;}
.y90{bottom:697.965000px;}
.y13{bottom:708.765000px;}
.y3d{bottom:714.525000px;}
.y75{bottom:722.085000px;}
.y12{bottom:733.065000px;}
.y3c{bottom:738.645000px;}
.y11{bottom:757.185000px;}
.y3b{bottom:762.765000px;}
.y74{bottom:770.325000px;}
.y3a{bottom:787.065000px;}
.y10{bottom:805.425000px;}
.y39{bottom:811.185000px;}
.yf{bottom:829.545000px;}
.y38{bottom:835.305000px;}
.y5c{bottom:842.910000px;}
.ye{bottom:853.710000px;}
.y37{bottom:859.470000px;}
.y8f{bottom:867.030000px;}
.yd{bottom:878.010000px;}
.y36{bottom:883.590000px;}
.yc{bottom:902.130000px;}
.y35{bottom:907.710000px;}
.y5b{bottom:915.270000px;}
.yb{bottom:926.250000px;}
.y34{bottom:932.010000px;}
.y73{bottom:939.570000px;}
.y33{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y32{bottom:980.250000px;}
.y5a{bottom:987.810000px;}
.y9{bottom:992.490000px;}
.y31{bottom:1004.370000px;}
.y72{bottom:1011.930000px;}
.y8{bottom:1016.610000px;}
.y30{bottom:1028.490000px;}
.y8e{bottom:1036.050000px;}
.y2f{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y8d{bottom:1060.170000px;}
.y2e{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y71{bottom:1084.290000px;}
.y2d{bottom:1101.030000px;}
.y8c{bottom:1108.590000px;}
.y5{bottom:1125.180000px;}
.y59{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h9{height:52.998047px;}
.h5{height:58.531992px;}
.ha{height:58.651172px;}
.h3{height:72.846211px;}
.h7{height:76.219102px;}
.h6{height:76.939102px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h8{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:80.099987px;}
.x1{left:85.319987px;}
.x11{left:98.999987px;}
.xd{left:105.695987px;}
.x37{left:112.355987px;}
.x5{left:125.495987px;}
.x3{left:132.155987px;}
.xa{left:139.355987px;}
.x8{left:144.395987px;}
.x4{left:194.969987px;}
.x18{left:203.789973px;}
.x19{left:217.469987px;}
.x6{left:240.869987px;}
.x23{left:270.929973px;}
.x28{left:279.569973px;}
.x1e{left:284.249973px;}
.x29{left:293.249987px;}
.x7{left:298.694987px;}
.x10{left:301.394987px;}
.x2e{left:306.254987px;}
.x26{left:338.474973px;}
.x1f{left:346.754973px;}
.x27{left:352.154987px;}
.x9{left:355.214987px;}
.x20{left:360.434987px;}
.x2f{left:369.074987px;}
.x31{left:398.054973px;}
.x24{left:405.254973px;}
.x32{left:411.734987px;}
.x30{left:417.314973px;}
.x25{left:418.934987px;}
.x35{left:427.754973px;}
.x2{left:430.814987px;}
.x36{left:441.434987px;}
.x2a{left:489.494973px;}
.x2b{left:503.204987px;}
.x1a{left:530.924973px;}
.x14{left:535.784973px;}
.x1b{left:544.604987px;}
.x15{left:549.464987px;}
.xb{left:625.244987px;}
.x33{left:644.144973px;}
.x34{left:657.824987px;}
.x1c{left:667.004973px;}
.x1d{left:680.684987px;}
.xe{left:706.289973px;}
.x21{left:717.629973px;}
.xf{left:719.969987px;}
.x22{left:731.309987px;}
.x2c{left:754.349973px;}
.x12{left:763.529973px;}
.x2d{left:768.029987px;}
.x13{left:777.209987px;}
.x16{left:794.129973px;}
.x17{left:807.809987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls1c{letter-spacing:-0.336533pt;}
.ls10{letter-spacing:-0.328533pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.311467pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.003627pt;}
.lsc{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.111360pt;}
.ls7{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.328533pt;}
.ls20{letter-spacing:0.336533pt;}
.ls17{letter-spacing:0.480000pt;}
.ls14{letter-spacing:2.400000pt;}
.ls8{letter-spacing:8.160000pt;}
.lsa{letter-spacing:8.800000pt;}
.ls3{letter-spacing:10.080000pt;}
.ls9{letter-spacing:11.360000pt;}
.ls1e{letter-spacing:18.863360pt;}
.ls5{letter-spacing:28.640000pt;}
.lsb{letter-spacing:30.560000pt;}
.ls4{letter-spacing:39.343360pt;}
.ls13{letter-spacing:119.983360pt;}
.ls1d{letter-spacing:599.018667pt;}
.ws10{word-spacing:-19.056533pt;}
.wsf{word-spacing:-19.048533pt;}
.ws3{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.695040pt;}
.ws11{word-spacing:-18.408533pt;}
.wsd{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.391467pt;}
.wse{word-spacing:-18.383467pt;}
.wsc{word-spacing:-18.112000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-2396.002133pt;}
._11{margin-left:-1933.973333pt;}
._10{margin-left:-672.301440pt;}
._d{margin-left:-19.360000pt;}
._30{margin-left:-18.253440pt;}
._f{margin-left:-6.262400pt;}
._3{margin-left:-4.417920pt;}
._2{margin-left:-3.218133pt;}
._1c{margin-left:-2.269867pt;}
._0{margin-left:-1.123200pt;}
._8{width:0.983253pt;}
._1{width:1.925973pt;}
._12{width:3.251200pt;}
._e{width:4.140160pt;}
._c{width:5.915520pt;}
._a{width:6.814080pt;}
._16{width:7.937280pt;}
._13{width:9.210240pt;}
._19{width:10.538453pt;}
._1b{width:11.831040pt;}
._1a{width:12.729600pt;}
._1f{width:14.302080pt;}
._29{width:15.575040pt;}
._15{width:16.548480pt;}
._2d{width:17.746560pt;}
._1d{width:20.517120pt;}
._4{width:22.164480pt;}
._5{width:23.287680pt;}
._2c{width:24.186240pt;}
._6{width:25.159680pt;}
._20{width:26.133120pt;}
._17{width:27.213867pt;}
._18{width:28.379520pt;}
._21{width:29.502720pt;}
._22{width:31.454933pt;}
._23{width:33.096960pt;}
._24{width:34.220160pt;}
._1e{width:38.488320pt;}
._7{width:39.386880pt;}
._25{width:40.464640pt;}
._2a{width:42.681600pt;}
._2b{width:43.940480pt;}
._2e{width:45.227520pt;}
._14{width:46.275840pt;}
._2f{width:55.199787pt;}
._26{width:61.850880pt;}
._27{width:74.730240pt;}
._28{width:75.778560pt;}
._31{width:749.546667pt;}
._9{width:1523.496533pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y70{bottom:78.592000pt;}
.y9d{bottom:79.712000pt;}
.y9c{bottom:86.432000pt;}
.y58{bottom:89.312000pt;}
.y2c{bottom:93.472000pt;}
.y6f{bottom:95.072000pt;}
.y9b{bottom:101.312000pt;}
.y6e{bottom:101.792000pt;}
.y57{bottom:105.792000pt;}
.y9a{bottom:108.032000pt;}
.y56{bottom:112.512000pt;}
.y2b{bottom:114.912000pt;}
.y6d{bottom:115.392000pt;}
.y99{bottom:122.752000pt;}
.y8b{bottom:126.112000pt;}
.y55{bottom:127.232000pt;}
.y98{bottom:129.472000pt;}
.y6c{bottom:131.872000pt;}
.y2a{bottom:136.346667pt;}
.y6b{bottom:138.586667pt;}
.y8a{bottom:142.586667pt;}
.y97{bottom:144.186667pt;}
.y89{bottom:149.306667pt;}
.y96{bottom:150.906667pt;}
.y6a{bottom:152.186667pt;}
.y29{bottom:157.786667pt;}
.y54{bottom:162.906667pt;}
.y88{bottom:164.026667pt;}
.y95{bottom:165.626667pt;}
.y69{bottom:168.666667pt;}
.y87{bottom:170.746667pt;}
.y94{bottom:172.346667pt;}
.y68{bottom:175.386667pt;}
.y28{bottom:179.226667pt;}
.y52{bottom:184.346667pt;}
.y86{bottom:185.466667pt;}
.y93{bottom:187.066667pt;}
.y67{bottom:188.986667pt;}
.y53{bottom:191.066667pt;}
.y85{bottom:192.186667pt;}
.y92{bottom:193.786667pt;}
.y27{bottom:200.666667pt;}
.y66{bottom:205.466667pt;}
.y51{bottom:205.786667pt;}
.y84{bottom:206.906667pt;}
.y91{bottom:208.506667pt;}
.y65{bottom:212.186667pt;}
.y83{bottom:213.626667pt;}
.y26{bottom:222.106667pt;}
.y64{bottom:225.786667pt;}
.y50{bottom:227.226667pt;}
.y82{bottom:228.506667pt;}
.y81{bottom:235.226667pt;}
.y63{bottom:242.266667pt;}
.y25{bottom:243.746667pt;}
.y4f{bottom:248.706667pt;}
.y80{bottom:248.866667pt;}
.y62{bottom:249.026667pt;}
.y61{bottom:262.626667pt;}
.y24{bottom:265.186667pt;}
.y7f{bottom:265.346667pt;}
.y4e{bottom:270.146667pt;}
.y7e{bottom:272.066667pt;}
.y60{bottom:279.106667pt;}
.y5f{bottom:285.826667pt;}
.y23{bottom:286.626667pt;}
.y7d{bottom:286.786667pt;}
.y4d{bottom:291.746667pt;}
.y7c{bottom:293.506667pt;}
.y5e{bottom:300.546667pt;}
.y22{bottom:308.066667pt;}
.y7b{bottom:308.226667pt;}
.y4c{bottom:313.186667pt;}
.y7a{bottom:314.946667pt;}
.y21{bottom:329.506667pt;}
.y79{bottom:329.666667pt;}
.y4b{bottom:334.626667pt;}
.y20{bottom:350.946667pt;}
.y4a{bottom:356.066667pt;}
.y78{bottom:362.786667pt;}
.y1f{bottom:372.546667pt;}
.y49{bottom:377.506667pt;}
.y1e{bottom:393.986667pt;}
.y48{bottom:398.946667pt;}
.y1d{bottom:415.426667pt;}
.y47{bottom:420.546667pt;}
.y1c{bottom:436.866667pt;}
.y46{bottom:441.986667pt;}
.y1b{bottom:458.306667pt;}
.y45{bottom:463.426667pt;}
.y1a{bottom:479.746667pt;}
.y44{bottom:484.866667pt;}
.y77{bottom:491.586667pt;}
.y19{bottom:501.373333pt;}
.y43{bottom:506.333333pt;}
.y18{bottom:522.813333pt;}
.y42{bottom:527.773333pt;}
.y17{bottom:544.253333pt;}
.y41{bottom:549.373333pt;}
.y76{bottom:556.093333pt;}
.y16{bottom:565.693333pt;}
.y40{bottom:570.813333pt;}
.y15{bottom:587.133333pt;}
.y3f{bottom:592.253333pt;}
.y5d{bottom:598.973333pt;}
.y14{bottom:608.573333pt;}
.y3e{bottom:613.693333pt;}
.y90{bottom:620.413333pt;}
.y13{bottom:630.013333pt;}
.y3d{bottom:635.133333pt;}
.y75{bottom:641.853333pt;}
.y12{bottom:651.613333pt;}
.y3c{bottom:656.573333pt;}
.y11{bottom:673.053333pt;}
.y3b{bottom:678.013333pt;}
.y74{bottom:684.733333pt;}
.y3a{bottom:699.613333pt;}
.y10{bottom:715.933333pt;}
.y39{bottom:721.053333pt;}
.yf{bottom:737.373333pt;}
.y38{bottom:742.493333pt;}
.y5c{bottom:749.253333pt;}
.ye{bottom:758.853333pt;}
.y37{bottom:763.973333pt;}
.y8f{bottom:770.693333pt;}
.yd{bottom:780.453333pt;}
.y36{bottom:785.413333pt;}
.yc{bottom:801.893333pt;}
.y35{bottom:806.853333pt;}
.y5b{bottom:813.573333pt;}
.yb{bottom:823.333333pt;}
.y34{bottom:828.453333pt;}
.y73{bottom:835.173333pt;}
.y33{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y32{bottom:871.333333pt;}
.y5a{bottom:878.053333pt;}
.y9{bottom:882.213333pt;}
.y31{bottom:892.773333pt;}
.y72{bottom:899.493333pt;}
.y8{bottom:903.653333pt;}
.y30{bottom:914.213333pt;}
.y8e{bottom:920.933333pt;}
.y2f{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y8d{bottom:942.373333pt;}
.y2e{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y71{bottom:963.813333pt;}
.y2d{bottom:978.693333pt;}
.y8c{bottom:985.413333pt;}
.y5{bottom:1000.160000pt;}
.y59{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:47.109375pt;}
.h5{height:52.028437pt;}
.ha{height:52.134375pt;}
.h3{height:64.752187pt;}
.h7{height:67.750312pt;}
.h6{height:68.390312pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h8{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:71.199988pt;}
.x1{left:75.839988pt;}
.x11{left:87.999988pt;}
.xd{left:93.951988pt;}
.x37{left:99.871988pt;}
.x5{left:111.551988pt;}
.x3{left:117.471988pt;}
.xa{left:123.871988pt;}
.x8{left:128.351988pt;}
.x4{left:173.306655pt;}
.x18{left:181.146643pt;}
.x19{left:193.306655pt;}
.x6{left:214.106655pt;}
.x23{left:240.826643pt;}
.x28{left:248.506643pt;}
.x1e{left:252.666643pt;}
.x29{left:260.666655pt;}
.x7{left:265.506655pt;}
.x10{left:267.906655pt;}
.x2e{left:272.226655pt;}
.x26{left:300.866643pt;}
.x1f{left:308.226643pt;}
.x27{left:313.026655pt;}
.x9{left:315.746655pt;}
.x20{left:320.386655pt;}
.x2f{left:328.066655pt;}
.x31{left:353.826643pt;}
.x24{left:360.226643pt;}
.x32{left:365.986655pt;}
.x30{left:370.946643pt;}
.x25{left:372.386655pt;}
.x35{left:380.226643pt;}
.x2{left:382.946655pt;}
.x36{left:392.386655pt;}
.x2a{left:435.106643pt;}
.x2b{left:447.293322pt;}
.x1a{left:471.933310pt;}
.x14{left:476.253310pt;}
.x1b{left:484.093322pt;}
.x15{left:488.413322pt;}
.xb{left:555.773322pt;}
.x33{left:572.573310pt;}
.x34{left:584.733322pt;}
.x1c{left:592.893310pt;}
.x1d{left:605.053322pt;}
.xe{left:627.813310pt;}
.x21{left:637.893310pt;}
.xf{left:639.973322pt;}
.x22{left:650.053322pt;}
.x2c{left:670.533310pt;}
.x12{left:678.693310pt;}
.x2d{left:682.693322pt;}
.x13{left:690.853322pt;}
.x16{left:705.893310pt;}
.x17{left:718.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; }
  