
    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_8131a7cad018834037679074.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_38f55c2d71aec2fc3d2b24ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_cc19f5a091db5ff33cd26314.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_82baeffd912d1cce5020e4cc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1943e883543f27a6e3bb26b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_42761880793f2d26e212718a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7e3e343f630199f7605e70b0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c9d49d0c535fcf57e6c320e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056152;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:-69.120000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.328200px;}
.ls11{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012960px;}
.ls18{letter-spacing:0.029280px;}
.ls5{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.073440px;}
.ls1c{letter-spacing:0.106560px;}
.lsc{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206640px;}
.lse{letter-spacing:0.233280px;}
.ls9{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.306600px;}
.ls10{letter-spacing:0.312000px;}
.lsa{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.386640px;}
.lsf{letter-spacing:0.613440px;}
.ls15{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.773280px;}
.ls1a{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.340000px;}
.ls2{letter-spacing:3.780000px;}
.ls3{letter-spacing:14.580000px;}
.ls1b{letter-spacing:434.340000px;}
.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;}
}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.252000px;}
.ws4{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.479800px;}
.ws8{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.391800px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-3.645360px;}
._9{margin-left:-2.270880px;}
._4{margin-left:-1.195200px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._5{width:3.960960px;}
._d{width:5.856480px;}
._c{width:6.932160px;}
._8{width:8.366400px;}
._7{width:9.442080px;}
._e{width:11.414160px;}
._6{width:12.669120px;}
._b{width:13.924080px;}
._12{width:16.792560px;}
._16{width:18.107280px;}
._11{width:19.123200px;}
._10{width:20.198880px;}
._17{width:21.305520px;}
._18{width:25.756560px;}
._f{width:28.445760px;}
._a{width:39.139920px;}
._13{width:514.414080px;}
._0{width:767.850240px;}
._15{width:849.216000px;}
._3{width:1222.530960px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.240000px;}
.y7e{bottom:3.960000px;}
.y61{bottom:19.800000px;}
.y5e{bottom:20.520000px;}
.y7d{bottom:21.240000px;}
.y5d{bottom:37.800000px;}
.y7c{bottom:38.520000px;}
.y2{bottom:55.800000px;}
.yd0{bottom:99.180000px;}
.y3b{bottom:102.600000px;}
.ycf{bottom:116.460000px;}
.y3a{bottom:119.880000px;}
.y7a{bottom:132.480000px;}
.yce{bottom:133.740000px;}
.y39{bottom:137.196000px;}
.y79{bottom:149.796000px;}
.ycd{bottom:151.050000px;}
.y38{bottom:154.470000px;}
.y78{bottom:167.070000px;}
.ycc{bottom:168.150000px;}
.y37{bottom:171.750000px;}
.y77{bottom:184.350000px;}
.ycb{bottom:185.430000px;}
.y36{bottom:189.030000px;}
.y76{bottom:201.630000px;}
.yca{bottom:202.710000px;}
.y35{bottom:206.130000px;}
.y34{bottom:218.730000px;}
.y75{bottom:218.910000px;}
.yc9{bottom:219.990000px;}
.y74{bottom:236.010000px;}
.yc8{bottom:237.270000px;}
.yae{bottom:252.570000px;}
.y73{bottom:253.290000px;}
.yc7{bottom:254.550000px;}
.yad{bottom:269.850000px;}
.y72{bottom:270.570000px;}
.yc6{bottom:271.650000px;}
.yac{bottom:287.130000px;}
.y71{bottom:287.850000px;}
.yc5{bottom:288.930000px;}
.yab{bottom:304.230000px;}
.y70{bottom:305.130000px;}
.yc4{bottom:306.210000px;}
.y32{bottom:315.750000px;}
.yaa{bottom:321.510000px;}
.y6f{bottom:322.230000px;}
.yc3{bottom:323.490000px;}
.y31{bottom:332.850000px;}
.ya9{bottom:338.790000px;}
.y6e{bottom:339.510000px;}
.yc2{bottom:340.770000px;}
.y30{bottom:350.130000px;}
.ya8{bottom:356.070000px;}
.y6d{bottom:356.790000px;}
.yc1{bottom:358.050000px;}
.y2f{bottom:367.410000px;}
.ya7{bottom:373.350000px;}
.y6c{bottom:374.070000px;}
.yc0{bottom:375.150000px;}
.y2e{bottom:384.690000px;}
.ya6{bottom:390.675000px;}
.y6b{bottom:391.395000px;}
.ybf{bottom:392.475000px;}
.y2d{bottom:402.015000px;}
.ya5{bottom:407.775000px;}
.y6a{bottom:408.675000px;}
.ybe{bottom:409.755000px;}
.y2c{bottom:419.295000px;}
.ya4{bottom:425.055000px;}
.y69{bottom:425.775000px;}
.ybd{bottom:427.035000px;}
.y2b{bottom:436.395000px;}
.y68{bottom:440.535000px;}
.ya3{bottom:442.335000px;}
.ybc{bottom:444.315000px;}
.y2a{bottom:453.675000px;}
.y67{bottom:458.535000px;}
.ya2{bottom:459.615000px;}
.ybb{bottom:461.595000px;}
.y29{bottom:470.955000px;}
.y66{bottom:476.535000px;}
.ya1{bottom:476.895000px;}
.yba{bottom:478.695000px;}
.y28{bottom:488.235000px;}
.ya0{bottom:494.175000px;}
.y65{bottom:494.535000px;}
.yb9{bottom:495.975000px;}
.y33{bottom:505.515000px;}
.y9f{bottom:511.275000px;}
.y64{bottom:512.535000px;}
.yb8{bottom:513.255000px;}
.y27{bottom:522.795000px;}
.y9e{bottom:528.555000px;}
.y63{bottom:530.535000px;}
.y26{bottom:539.895000px;}
.y9d{bottom:545.835000px;}
.yb7{bottom:547.815000px;}
.y62{bottom:548.535000px;}
.y25{bottom:557.175000px;}
.y9c{bottom:563.115000px;}
.yb6{bottom:564.915000px;}
.y5c{bottom:566.535000px;}
.y24{bottom:574.455000px;}
.y9b{bottom:580.395000px;}
.yb5{bottom:582.195000px;}
.y23{bottom:591.735000px;}
.y9a{bottom:597.675000px;}
.yb4{bottom:599.475000px;}
.y60{bottom:601.095000px;}
.y22{bottom:609.015000px;}
.y99{bottom:614.775000px;}
.yb3{bottom:616.755000px;}
.y5b{bottom:622.335000px;}
.y21{bottom:626.295000px;}
.y98{bottom:632.055000px;}
.yb2{bottom:634.035000px;}
.y20{bottom:643.425000px;}
.y97{bottom:649.365000px;}
.yb1{bottom:651.345000px;}
.y5a{bottom:656.925000px;}
.y1f{bottom:660.705000px;}
.y96{bottom:666.645000px;}
.yb0{bottom:668.445000px;}
.y59{bottom:674.025000px;}
.y1e{bottom:677.985000px;}
.yaf{bottom:682.485000px;}
.y95{bottom:683.925000px;}
.y58{bottom:691.305000px;}
.y1d{bottom:695.265000px;}
.y94{bottom:701.025000px;}
.y57{bottom:708.585000px;}
.y1c{bottom:712.545000px;}
.y93{bottom:718.305000px;}
.y56{bottom:725.865000px;}
.y1b{bottom:729.645000px;}
.y92{bottom:735.585000px;}
.y55{bottom:743.145000px;}
.y1a{bottom:746.925000px;}
.y91{bottom:752.865000px;}
.y54{bottom:760.425000px;}
.y19{bottom:764.205000px;}
.y90{bottom:770.145000px;}
.y53{bottom:777.525000px;}
.y18{bottom:781.485000px;}
.y8f{bottom:787.425000px;}
.y52{bottom:794.805000px;}
.y17{bottom:798.765000px;}
.y8e{bottom:804.525000px;}
.y51{bottom:812.085000px;}
.y16{bottom:816.045000px;}
.y8d{bottom:821.805000px;}
.y50{bottom:829.365000px;}
.y15{bottom:833.145000px;}
.y8c{bottom:839.085000px;}
.y4f{bottom:846.645000px;}
.y14{bottom:850.425000px;}
.y8b{bottom:856.365000px;}
.y4e{bottom:863.925000px;}
.y13{bottom:867.705000px;}
.y8a{bottom:873.645000px;}
.y4d{bottom:881.025000px;}
.y12{bottom:884.985000px;}
.y89{bottom:890.925000px;}
.y4c{bottom:898.350000px;}
.y11{bottom:902.310000px;}
.y88{bottom:908.070000px;}
.y4b{bottom:915.630000px;}
.y10{bottom:919.590000px;}
.y87{bottom:925.350000px;}
.y4a{bottom:932.910000px;}
.yf{bottom:936.690000px;}
.y49{bottom:950.190000px;}
.ye{bottom:953.970000px;}
.y86{bottom:957.390000px;}
.y48{bottom:967.470000px;}
.yd{bottom:971.250000px;}
.y85{bottom:975.390000px;}
.y47{bottom:984.570000px;}
.yc{bottom:988.530000px;}
.y84{bottom:993.390000px;}
.y46{bottom:1001.850000px;}
.yb{bottom:1005.810000px;}
.y83{bottom:1011.390000px;}
.y45{bottom:1019.130000px;}
.ya{bottom:1023.090000px;}
.y82{bottom:1029.390000px;}
.y44{bottom:1036.410000px;}
.y9{bottom:1040.190000px;}
.y81{bottom:1047.390000px;}
.y43{bottom:1053.690000px;}
.y8{bottom:1057.470000px;}
.y80{bottom:1065.390000px;}
.y42{bottom:1070.790000px;}
.y7{bottom:1074.750000px;}
.y7b{bottom:1083.390000px;}
.y41{bottom:1088.070000px;}
.y40{bottom:1105.350000px;}
.y6{bottom:1109.310000px;}
.y7f{bottom:1118.670000px;}
.y3f{bottom:1122.630000px;}
.y5{bottom:1126.410000px;}
.y3e{bottom:1139.910000px;}
.y4{bottom:1143.690000px;}
.y3d{bottom:1157.220000px;}
.y3{bottom:1163.880000px;}
.y3c{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.hb{height:17.280000px;}
.hc{height:33.840000px;}
.h10{height:34.560000px;}
.h9{height:38.139609px;}
.hf{height:50.218242px;}
.ha{height:51.840000px;}
.hd{height:52.290000px;}
.he{height:52.560000px;}
.h3{height:52.998047px;}
.h8{height:53.573906px;}
.h6{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.h4{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:49.140000px;}
.we{width:58.860000px;}
.w10{width:58.896000px;}
.wd{width:59.076000px;}
.w9{width:94.536000px;}
.w4{width:125.316000px;}
.wc{width:131.580000px;}
.w6{width:135.900000px;}
.wa{width:138.600000px;}
.w8{width:145.980000px;}
.w7{width:165.960000px;}
.w3{width:241.230000px;}
.w5{width:302.610000px;}
.wb{width:407.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x1d{left:11.160000px;}
.x31{left:13.140000px;}
.x38{left:15.120000px;}
.x1e{left:16.380000px;}
.x32{left:18.180000px;}
.x1a{left:19.260000px;}
.x1b{left:21.240000px;}
.x37{left:24.480000px;}
.x24{left:25.920000px;}
.x27{left:30.285000px;}
.x22{left:33.300000px;}
.x1f{left:45.000000px;}
.x2a{left:47.205000px;}
.x2e{left:49.500000px;}
.x28{left:54.720000px;}
.x3c{left:56.154000px;}
.x2b{left:62.640000px;}
.x2c{left:67.860000px;}
.x29{left:69.840000px;}
.x33{left:70.965000px;}
.x2d{left:82.980000px;}
.x21{left:89.640000px;}
.x1{left:106.415987px;}
.x19{left:115.236000px;}
.x4{left:125.135987px;}
.x14{left:136.115987px;}
.xf{left:143.495987px;}
.x46{left:182.009987px;}
.x45{left:193.349987px;}
.x44{left:197.849987px;}
.x43{left:200.369987px;}
.xb{left:228.089987px;}
.x18{left:246.269987px;}
.x26{left:261.930000px;}
.x7{left:266.834987px;}
.x35{left:306.255000px;}
.x2{left:308.594987px;}
.x9{left:347.654987px;}
.x1c{left:357.195000px;}
.x11{left:358.454987px;}
.x36{left:365.835000px;}
.x30{left:385.274987px;}
.x5{left:415.694987px;}
.xd{left:441.824987px;}
.xc{left:443.264987px;}
.x15{left:457.304987px;}
.x3{left:461.444987px;}
.x39{left:475.305000px;}
.x20{left:483.405000px;}
.x16{left:487.004987px;}
.x41{left:502.304987px;}
.x3d{left:521.564987px;}
.x3e{left:524.084987px;}
.x3a{left:534.885000px;}
.x12{left:537.944987px;}
.x40{left:541.364987px;}
.x3f{left:552.344987px;}
.x8{left:589.604987px;}
.x3b{left:594.465000px;}
.x23{left:620.070000px;}
.x34{left:654.450000px;}
.x6{left:689.189987px;}
.x10{left:702.509987px;}
.xe{left:719.249987px;}
.x2f{left:737.429987px;}
.xa{left:741.749987px;}
.x42{left:781.169987px;}
.x17{left:782.969987px;}
.x13{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.291733pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011520pt;}
.ls18{letter-spacing:0.026027pt;}
.ls5{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.065280pt;}
.ls1c{letter-spacing:0.094720pt;}
.lsc{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183680pt;}
.lse{letter-spacing:0.207360pt;}
.ls9{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.272533pt;}
.ls10{letter-spacing:0.277333pt;}
.lsa{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.343680pt;}
.lsf{letter-spacing:0.545280pt;}
.ls15{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.687360pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.080000pt;}
.ls2{letter-spacing:3.360000pt;}
.ls3{letter-spacing:12.960000pt;}
.ls1b{letter-spacing:386.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.557333pt;}
.ws4{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.870933pt;}
.ws8{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.348267pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-3.240320pt;}
._9{margin-left:-2.018560pt;}
._4{margin-left:-1.062400pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._5{width:3.520853pt;}
._d{width:5.205760pt;}
._c{width:6.161920pt;}
._8{width:7.436800pt;}
._7{width:8.392960pt;}
._e{width:10.145920pt;}
._6{width:11.261440pt;}
._b{width:12.376960pt;}
._12{width:14.926720pt;}
._16{width:16.095360pt;}
._11{width:16.998400pt;}
._10{width:17.954560pt;}
._17{width:18.938240pt;}
._18{width:22.894720pt;}
._f{width:25.285120pt;}
._a{width:34.791040pt;}
._13{width:457.256960pt;}
._0{width:682.533547pt;}
._15{width:754.858667pt;}
._3{width:1086.694187pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.880000pt;}
.y7e{bottom:3.520000pt;}
.y61{bottom:17.600000pt;}
.y5e{bottom:18.240000pt;}
.y7d{bottom:18.880000pt;}
.y5d{bottom:33.600000pt;}
.y7c{bottom:34.240000pt;}
.y2{bottom:49.600000pt;}
.yd0{bottom:88.160000pt;}
.y3b{bottom:91.200000pt;}
.ycf{bottom:103.520000pt;}
.y3a{bottom:106.560000pt;}
.y7a{bottom:117.760000pt;}
.yce{bottom:118.880000pt;}
.y39{bottom:121.952000pt;}
.y79{bottom:133.152000pt;}
.ycd{bottom:134.266667pt;}
.y38{bottom:137.306667pt;}
.y78{bottom:148.506667pt;}
.ycc{bottom:149.466667pt;}
.y37{bottom:152.666667pt;}
.y77{bottom:163.866667pt;}
.ycb{bottom:164.826667pt;}
.y36{bottom:168.026667pt;}
.y76{bottom:179.226667pt;}
.yca{bottom:180.186667pt;}
.y35{bottom:183.226667pt;}
.y34{bottom:194.426667pt;}
.y75{bottom:194.586667pt;}
.yc9{bottom:195.546667pt;}
.y74{bottom:209.786667pt;}
.yc8{bottom:210.906667pt;}
.yae{bottom:224.506667pt;}
.y73{bottom:225.146667pt;}
.yc7{bottom:226.266667pt;}
.yad{bottom:239.866667pt;}
.y72{bottom:240.506667pt;}
.yc6{bottom:241.466667pt;}
.yac{bottom:255.226667pt;}
.y71{bottom:255.866667pt;}
.yc5{bottom:256.826667pt;}
.yab{bottom:270.426667pt;}
.y70{bottom:271.226667pt;}
.yc4{bottom:272.186667pt;}
.y32{bottom:280.666667pt;}
.yaa{bottom:285.786667pt;}
.y6f{bottom:286.426667pt;}
.yc3{bottom:287.546667pt;}
.y31{bottom:295.866667pt;}
.ya9{bottom:301.146667pt;}
.y6e{bottom:301.786667pt;}
.yc2{bottom:302.906667pt;}
.y30{bottom:311.226667pt;}
.ya8{bottom:316.506667pt;}
.y6d{bottom:317.146667pt;}
.yc1{bottom:318.266667pt;}
.y2f{bottom:326.586667pt;}
.ya7{bottom:331.866667pt;}
.y6c{bottom:332.506667pt;}
.yc0{bottom:333.466667pt;}
.y2e{bottom:341.946667pt;}
.ya6{bottom:347.266667pt;}
.y6b{bottom:347.906667pt;}
.ybf{bottom:348.866667pt;}
.y2d{bottom:357.346667pt;}
.ya5{bottom:362.466667pt;}
.y6a{bottom:363.266667pt;}
.ybe{bottom:364.226667pt;}
.y2c{bottom:372.706667pt;}
.ya4{bottom:377.826667pt;}
.y69{bottom:378.466667pt;}
.ybd{bottom:379.586667pt;}
.y2b{bottom:387.906667pt;}
.y68{bottom:391.586667pt;}
.ya3{bottom:393.186667pt;}
.ybc{bottom:394.946667pt;}
.y2a{bottom:403.266667pt;}
.y67{bottom:407.586667pt;}
.ya2{bottom:408.546667pt;}
.ybb{bottom:410.306667pt;}
.y29{bottom:418.626667pt;}
.y66{bottom:423.586667pt;}
.ya1{bottom:423.906667pt;}
.yba{bottom:425.506667pt;}
.y28{bottom:433.986667pt;}
.ya0{bottom:439.266667pt;}
.y65{bottom:439.586667pt;}
.yb9{bottom:440.866667pt;}
.y33{bottom:449.346667pt;}
.y9f{bottom:454.466667pt;}
.y64{bottom:455.586667pt;}
.yb8{bottom:456.226667pt;}
.y27{bottom:464.706667pt;}
.y9e{bottom:469.826667pt;}
.y63{bottom:471.586667pt;}
.y26{bottom:479.906667pt;}
.y9d{bottom:485.186667pt;}
.yb7{bottom:486.946667pt;}
.y62{bottom:487.586667pt;}
.y25{bottom:495.266667pt;}
.y9c{bottom:500.546667pt;}
.yb6{bottom:502.146667pt;}
.y5c{bottom:503.586667pt;}
.y24{bottom:510.626667pt;}
.y9b{bottom:515.906667pt;}
.yb5{bottom:517.506667pt;}
.y23{bottom:525.986667pt;}
.y9a{bottom:531.266667pt;}
.yb4{bottom:532.866667pt;}
.y60{bottom:534.306667pt;}
.y22{bottom:541.346667pt;}
.y99{bottom:546.466667pt;}
.yb3{bottom:548.226667pt;}
.y5b{bottom:553.186667pt;}
.y21{bottom:556.706667pt;}
.y98{bottom:561.826667pt;}
.yb2{bottom:563.586667pt;}
.y20{bottom:571.933333pt;}
.y97{bottom:577.213333pt;}
.yb1{bottom:578.973333pt;}
.y5a{bottom:583.933333pt;}
.y1f{bottom:587.293333pt;}
.y96{bottom:592.573333pt;}
.yb0{bottom:594.173333pt;}
.y59{bottom:599.133333pt;}
.y1e{bottom:602.653333pt;}
.yaf{bottom:606.653333pt;}
.y95{bottom:607.933333pt;}
.y58{bottom:614.493333pt;}
.y1d{bottom:618.013333pt;}
.y94{bottom:623.133333pt;}
.y57{bottom:629.853333pt;}
.y1c{bottom:633.373333pt;}
.y93{bottom:638.493333pt;}
.y56{bottom:645.213333pt;}
.y1b{bottom:648.573333pt;}
.y92{bottom:653.853333pt;}
.y55{bottom:660.573333pt;}
.y1a{bottom:663.933333pt;}
.y91{bottom:669.213333pt;}
.y54{bottom:675.933333pt;}
.y19{bottom:679.293333pt;}
.y90{bottom:684.573333pt;}
.y53{bottom:691.133333pt;}
.y18{bottom:694.653333pt;}
.y8f{bottom:699.933333pt;}
.y52{bottom:706.493333pt;}
.y17{bottom:710.013333pt;}
.y8e{bottom:715.133333pt;}
.y51{bottom:721.853333pt;}
.y16{bottom:725.373333pt;}
.y8d{bottom:730.493333pt;}
.y50{bottom:737.213333pt;}
.y15{bottom:740.573333pt;}
.y8c{bottom:745.853333pt;}
.y4f{bottom:752.573333pt;}
.y14{bottom:755.933333pt;}
.y8b{bottom:761.213333pt;}
.y4e{bottom:767.933333pt;}
.y13{bottom:771.293333pt;}
.y8a{bottom:776.573333pt;}
.y4d{bottom:783.133333pt;}
.y12{bottom:786.653333pt;}
.y89{bottom:791.933333pt;}
.y4c{bottom:798.533333pt;}
.y11{bottom:802.053333pt;}
.y88{bottom:807.173333pt;}
.y4b{bottom:813.893333pt;}
.y10{bottom:817.413333pt;}
.y87{bottom:822.533333pt;}
.y4a{bottom:829.253333pt;}
.yf{bottom:832.613333pt;}
.y49{bottom:844.613333pt;}
.ye{bottom:847.973333pt;}
.y86{bottom:851.013333pt;}
.y48{bottom:859.973333pt;}
.yd{bottom:863.333333pt;}
.y85{bottom:867.013333pt;}
.y47{bottom:875.173333pt;}
.yc{bottom:878.693333pt;}
.y84{bottom:883.013333pt;}
.y46{bottom:890.533333pt;}
.yb{bottom:894.053333pt;}
.y83{bottom:899.013333pt;}
.y45{bottom:905.893333pt;}
.ya{bottom:909.413333pt;}
.y82{bottom:915.013333pt;}
.y44{bottom:921.253333pt;}
.y9{bottom:924.613333pt;}
.y81{bottom:931.013333pt;}
.y43{bottom:936.613333pt;}
.y8{bottom:939.973333pt;}
.y80{bottom:947.013333pt;}
.y42{bottom:951.813333pt;}
.y7{bottom:955.333333pt;}
.y7b{bottom:963.013333pt;}
.y41{bottom:967.173333pt;}
.y40{bottom:982.533333pt;}
.y6{bottom:986.053333pt;}
.y7f{bottom:994.373333pt;}
.y3f{bottom:997.893333pt;}
.y5{bottom:1001.253333pt;}
.y3e{bottom:1013.253333pt;}
.y4{bottom:1016.613333pt;}
.y3d{bottom:1028.640000pt;}
.y3{bottom:1034.560000pt;}
.y3c{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.hb{height:15.360000pt;}
.hc{height:30.080000pt;}
.h10{height:30.720000pt;}
.h9{height:33.901875pt;}
.hf{height:44.638438pt;}
.ha{height:46.080000pt;}
.hd{height:46.480000pt;}
.he{height:46.720000pt;}
.h3{height:47.109375pt;}
.h8{height:47.621250pt;}
.h6{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.h4{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:43.680000pt;}
.we{width:52.320000pt;}
.w10{width:52.352000pt;}
.wd{width:52.512000pt;}
.w9{width:84.032000pt;}
.w4{width:111.392000pt;}
.wc{width:116.960000pt;}
.w6{width:120.800000pt;}
.wa{width:123.200000pt;}
.w8{width:129.760000pt;}
.w7{width:147.520000pt;}
.w3{width:214.426667pt;}
.w5{width:268.986667pt;}
.wb{width:361.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x1d{left:9.920000pt;}
.x31{left:11.680000pt;}
.x38{left:13.440000pt;}
.x1e{left:14.560000pt;}
.x32{left:16.160000pt;}
.x1a{left:17.120000pt;}
.x1b{left:18.880000pt;}
.x37{left:21.760000pt;}
.x24{left:23.040000pt;}
.x27{left:26.920000pt;}
.x22{left:29.600000pt;}
.x1f{left:40.000000pt;}
.x2a{left:41.960000pt;}
.x2e{left:44.000000pt;}
.x28{left:48.640000pt;}
.x3c{left:49.914667pt;}
.x2b{left:55.680000pt;}
.x2c{left:60.320000pt;}
.x29{left:62.080000pt;}
.x33{left:63.080000pt;}
.x2d{left:73.760000pt;}
.x21{left:79.680000pt;}
.x1{left:94.591988pt;}
.x19{left:102.432000pt;}
.x4{left:111.231988pt;}
.x14{left:120.991988pt;}
.xf{left:127.551988pt;}
.x46{left:161.786655pt;}
.x45{left:171.866655pt;}
.x44{left:175.866655pt;}
.x43{left:178.106655pt;}
.xb{left:202.746655pt;}
.x18{left:218.906655pt;}
.x26{left:232.826667pt;}
.x7{left:237.186655pt;}
.x35{left:272.226667pt;}
.x2{left:274.306655pt;}
.x9{left:309.026655pt;}
.x1c{left:317.506667pt;}
.x11{left:318.626655pt;}
.x36{left:325.186667pt;}
.x30{left:342.466655pt;}
.x5{left:369.506655pt;}
.xd{left:392.733322pt;}
.xc{left:394.013322pt;}
.x15{left:406.493322pt;}
.x3{left:410.173322pt;}
.x39{left:422.493333pt;}
.x20{left:429.693333pt;}
.x16{left:432.893322pt;}
.x41{left:446.493322pt;}
.x3d{left:463.613322pt;}
.x3e{left:465.853322pt;}
.x3a{left:475.453333pt;}
.x12{left:478.173322pt;}
.x40{left:481.213322pt;}
.x3f{left:490.973322pt;}
.x8{left:524.093322pt;}
.x3b{left:528.413333pt;}
.x23{left:551.173333pt;}
.x34{left:581.733333pt;}
.x6{left:612.613322pt;}
.x10{left:624.453322pt;}
.xe{left:639.333322pt;}
.x2f{left:655.493322pt;}
.xa{left:659.333322pt;}
.x42{left:694.373322pt;}
.x17{left:695.973322pt;}
.x13{left:699.333322pt;}
}




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