
    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_1fd299ab07222b5909cbb291.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.077000;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_2348579cbfad913ca21e5f3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_feaaf7f7c3512300a2f31d94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_47a09c09cddadb9a8b85a4bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_d446fb2026dbe51402bfce63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_52a956c3d1fead2175a1ab90.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.757000;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_af6c00ab08cef3427c8be1e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.364258;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.600000px;}
.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:-13.020000px;}
.ws20{word-spacing:-6.318000px;}
.ws3f{word-spacing:-5.538000px;}
.ws29{word-spacing:-4.914000px;}
.ws42{word-spacing:-4.836000px;}
.ws48{word-spacing:-4.212000px;}
.ws6d{word-spacing:-3.900000px;}
.ws43{word-spacing:-3.822000px;}
.ws6b{word-spacing:-3.666000px;}
.ws45{word-spacing:-3.276000px;}
.ws8{word-spacing:-3.240000px;}
.ws25{word-spacing:-3.120000px;}
.ws9{word-spacing:-2.808000px;}
.ws40{word-spacing:-2.730000px;}
.ws2a{word-spacing:-2.262000px;}
.ws2d{word-spacing:-2.184000px;}
.ws17{word-spacing:-1.794000px;}
.ws5e{word-spacing:-1.716000px;}
.ws6c{word-spacing:-1.560000px;}
.ws2c{word-spacing:-1.326000px;}
.ws44{word-spacing:-1.248000px;}
.ws11{word-spacing:-0.936000px;}
.ws4e{word-spacing:-0.546000px;}
.ws60{word-spacing:-0.468000px;}
.ws2{word-spacing:-0.300000px;}
.ws65{word-spacing:-0.234000px;}
.ws1{word-spacing:0.000000px;}
.ws73{word-spacing:0.312000px;}
.ws77{word-spacing:0.624000px;}
.ws2b{word-spacing:0.702000px;}
.ws1f{word-spacing:0.858000px;}
.ws18{word-spacing:1.092000px;}
.ws61{word-spacing:1.170000px;}
.ws57{word-spacing:1.248000px;}
.ws38{word-spacing:1.326000px;}
.ws15{word-spacing:1.482000px;}
.ws70{word-spacing:1.560000px;}
.ws72{word-spacing:1.638000px;}
.ws10{word-spacing:1.716000px;}
.wsa{word-spacing:1.872000px;}
.ws71{word-spacing:1.950000px;}
.ws46{word-spacing:2.106000px;}
.ws5c{word-spacing:2.418000px;}
.ws1d{word-spacing:2.496000px;}
.ws23{word-spacing:2.574000px;}
.ws63{word-spacing:2.652000px;}
.ws4c{word-spacing:2.730000px;}
.wsd{word-spacing:2.964000px;}
.ws32{word-spacing:3.120000px;}
.wsf{word-spacing:3.432000px;}
.ws36{word-spacing:3.510000px;}
.ws59{word-spacing:3.588000px;}
.ws1a{word-spacing:3.666000px;}
.ws22{word-spacing:3.744000px;}
.ws64{word-spacing:3.822000px;}
.ws4f{word-spacing:4.134000px;}
.ws76{word-spacing:4.290000px;}
.ws55{word-spacing:4.368000px;}
.ws58{word-spacing:4.524000px;}
.ws19{word-spacing:4.602000px;}
.ws6a{word-spacing:4.680000px;}
.ws12{word-spacing:4.758000px;}
.ws26{word-spacing:5.070000px;}
.ws3b{word-spacing:5.148000px;}
.ws52{word-spacing:5.304000px;}
.ws2f{word-spacing:5.616000px;}
.ws1b{word-spacing:5.772000px;}
.ws5b{word-spacing:6.006000px;}
.ws37{word-spacing:6.084000px;}
.ws21{word-spacing:6.162000px;}
.ws13{word-spacing:6.240000px;}
.wsc{word-spacing:6.474000px;}
.ws47{word-spacing:6.630000px;}
.ws69{word-spacing:6.708000px;}
.ws1e{word-spacing:7.098000px;}
.ws5f{word-spacing:7.176000px;}
.ws33{word-spacing:7.332000px;}
.ws74{word-spacing:7.410000px;}
.ws27{word-spacing:7.566000px;}
.ws6e{word-spacing:7.722000px;}
.ws68{word-spacing:7.878000px;}
.ws53{word-spacing:7.956000px;}
.ws4b{word-spacing:8.112000px;}
.ws4d{word-spacing:8.502000px;}
.ws51{word-spacing:8.580000px;}
.ws50{word-spacing:8.736000px;}
.wsb{word-spacing:8.892000px;}
.ws3a{word-spacing:9.048000px;}
.ws1c{word-spacing:9.204000px;}
.ws78{word-spacing:9.360000px;}
.ws28{word-spacing:9.516000px;}
.ws14{word-spacing:9.984000px;}
.ws34{word-spacing:10.062000px;}
.ws35{word-spacing:10.374000px;}
.ws56{word-spacing:10.530000px;}
.ws49{word-spacing:11.076000px;}
.ws79{word-spacing:11.154000px;}
.ws67{word-spacing:11.310000px;}
.ws54{word-spacing:11.388000px;}
.ws39{word-spacing:12.168000px;}
.ws41{word-spacing:12.246000px;}
.ws24{word-spacing:12.402000px;}
.ws4a{word-spacing:12.480000px;}
.ws2e{word-spacing:12.636000px;}
.ws5a{word-spacing:13.494000px;}
.ws3e{word-spacing:14.508000px;}
.ws5d{word-spacing:14.586000px;}
.ws31{word-spacing:14.742000px;}
.ws75{word-spacing:14.898000px;}
.wse{word-spacing:15.132000px;}
.ws3c{word-spacing:15.444000px;}
.ws3d{word-spacing:16.692000px;}
.ws62{word-spacing:17.238000px;}
.ws30{word-spacing:18.330000px;}
.ws66{word-spacing:18.954000px;}
.ws6f{word-spacing:24.804000px;}
.ws16{word-spacing:33.306000px;}
.ws7{word-spacing:36.072000px;}
.ws6{word-spacing:36.396000px;}
.ws3{word-spacing:71.496000px;}
.ws4{word-spacing:72.144000px;}
.ws5{word-spacing:94.176000px;}
.ws7a{word-spacing:198.276000px;}
._9{margin-left:-12.006000px;}
._6{margin-left:-10.884000px;}
._5{margin-left:-8.448000px;}
._8{margin-left:-7.278000px;}
._0{margin-left:-5.760000px;}
._7{margin-left:-4.344000px;}
._1{margin-left:-3.300000px;}
._2{margin-left:-1.500000px;}
._3{width:1.020000px;}
._4{width:2.400000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.900000px;}
.y1e{bottom:39.426110px;}
.y1d{bottom:113.495550px;}
.y6b{bottom:117.575700px;}
.y45{bottom:118.638600px;}
.y83{bottom:130.328700px;}
.y1c{bottom:140.503050px;}
.y6a{bottom:144.583200px;}
.y44{bottom:145.646100px;}
.y82{bottom:157.336200px;}
.y1b{bottom:167.510550px;}
.y69{bottom:171.590700px;}
.y43{bottom:172.653600px;}
.y81{bottom:184.343700px;}
.y1a{bottom:194.518050px;}
.y68{bottom:198.598200px;}
.y42{bottom:199.661100px;}
.y80{bottom:211.351200px;}
.y19{bottom:221.525550px;}
.y67{bottom:225.605700px;}
.y41{bottom:226.668600px;}
.y7f{bottom:238.358700px;}
.y90{bottom:240.091500px;}
.y18{bottom:248.533050px;}
.y66{bottom:252.613200px;}
.y40{bottom:253.676100px;}
.y7e{bottom:265.366200px;}
.y17{bottom:275.540550px;}
.y65{bottom:279.620700px;}
.y3f{bottom:280.683600px;}
.y7d{bottom:292.373700px;}
.y16{bottom:302.548050px;}
.y64{bottom:306.628200px;}
.y3e{bottom:307.691100px;}
.y7c{bottom:319.381200px;}
.y15{bottom:329.555550px;}
.y63{bottom:333.635700px;}
.y3d{bottom:334.698600px;}
.y7b{bottom:346.388700px;}
.y14{bottom:356.563050px;}
.y8f{bottom:360.643200px;}
.y3c{bottom:361.706100px;}
.y62{bottom:373.396200px;}
.y13{bottom:383.570550px;}
.y8e{bottom:387.650700px;}
.y3b{bottom:388.713600px;}
.y61{bottom:400.403700px;}
.y12{bottom:410.578050px;}
.y8d{bottom:414.658200px;}
.y60{bottom:427.411200px;}
.y3a{bottom:428.474100px;}
.y7a{bottom:440.164200px;}
.y8c{bottom:441.665700px;}
.y5f{bottom:454.418700px;}
.y39{bottom:455.481600px;}
.y79{bottom:467.171700px;}
.y8b{bottom:468.673200px;}
.y5e{bottom:481.426200px;}
.y38{bottom:482.489100px;}
.y11{bottom:490.099050px;}
.y78{bottom:494.179200px;}
.y5d{bottom:508.433700px;}
.y37{bottom:509.496600px;}
.y10{bottom:517.106550px;}
.y77{bottom:521.186700px;}
.y5c{bottom:535.441200px;}
.y36{bottom:536.504100px;}
.y76{bottom:548.194200px;}
.yf{bottom:556.867050px;}
.y5b{bottom:562.448700px;}
.y35{bottom:563.511600px;}
.y75{bottom:575.201700px;}
.ye{bottom:583.874550px;}
.y5a{bottom:589.456200px;}
.y34{bottom:590.519100px;}
.y74{bottom:602.209200px;}
.y59{bottom:616.463700px;}
.y33{bottom:617.526600px;}
.y73{bottom:629.216700px;}
.y58{bottom:643.471200px;}
.y32{bottom:644.534100px;}
.yd{bottom:650.623050px;}
.y72{bottom:656.224200px;}
.y57{bottom:670.478700px;}
.y31{bottom:671.541600px;}
.yc{bottom:677.630550px;}
.y71{bottom:683.231700px;}
.y56{bottom:697.486200px;}
.y30{bottom:698.549100px;}
.y70{bottom:710.239200px;}
.y55{bottom:724.493700px;}
.y2f{bottom:725.556600px;}
.y6f{bottom:737.246700px;}
.yb{bottom:749.603550px;}
.y54{bottom:751.501200px;}
.y2e{bottom:752.564100px;}
.y6e{bottom:764.254200px;}
.y53{bottom:778.508700px;}
.y2d{bottom:779.571600px;}
.ya{bottom:781.112550px;}
.y6d{bottom:791.261700px;}
.y52{bottom:805.516200px;}
.y2c{bottom:806.579100px;}
.y9{bottom:812.621550px;}
.y6c{bottom:818.269200px;}
.y8a{bottom:832.523700px;}
.y2b{bottom:833.586600px;}
.y8{bottom:844.130550px;}
.y51{bottom:845.276700px;}
.y89{bottom:859.531200px;}
.y2a{bottom:860.594100px;}
.y50{bottom:872.284200px;}
.y88{bottom:886.538700px;}
.y29{bottom:887.601600px;}
.y4f{bottom:899.291700px;}
.y87{bottom:913.546200px;}
.y28{bottom:914.609100px;}
.y7{bottom:925.130550px;}
.y4e{bottom:926.299200px;}
.y86{bottom:940.553700px;}
.y27{bottom:941.616600px;}
.y4d{bottom:953.306700px;}
.y85{bottom:967.561200px;}
.y26{bottom:968.624100px;}
.y4c{bottom:980.314200px;}
.y84{bottom:994.568700px;}
.y25{bottom:995.631600px;}
.y4b{bottom:1007.321700px;}
.y6{bottom:1019.630550px;}
.y24{bottom:1022.639100px;}
.y4a{bottom:1034.329200px;}
.y49{bottom:1061.336700px;}
.y23{bottom:1062.399600px;}
.y5{bottom:1073.630550px;}
.y48{bottom:1088.344200px;}
.y22{bottom:1089.407100px;}
.y4{bottom:1091.630550px;}
.y3{bottom:1109.630550px;}
.y47{bottom:1115.351700px;}
.y21{bottom:1116.414600px;}
.y2{bottom:1127.630550px;}
.y46{bottom:1142.359200px;}
.y20{bottom:1143.422100px;}
.y1{bottom:1145.630550px;}
.h8{height:16.380000px;}
.h9{height:49.898438px;}
.h2{height:49.980000px;}
.h6{height:55.536000px;}
.h5{height:55.848000px;}
.h7{height:64.974000px;}
.h4{height:75.600000px;}
.h3{height:89.964000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:20.016000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x2{left:436.445984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.533333pt;}
.ws0{word-spacing:-11.573333pt;}
.ws20{word-spacing:-5.616000pt;}
.ws3f{word-spacing:-4.922667pt;}
.ws29{word-spacing:-4.368000pt;}
.ws42{word-spacing:-4.298667pt;}
.ws48{word-spacing:-3.744000pt;}
.ws6d{word-spacing:-3.466667pt;}
.ws43{word-spacing:-3.397333pt;}
.ws6b{word-spacing:-3.258667pt;}
.ws45{word-spacing:-2.912000pt;}
.ws8{word-spacing:-2.880000pt;}
.ws25{word-spacing:-2.773333pt;}
.ws9{word-spacing:-2.496000pt;}
.ws40{word-spacing:-2.426667pt;}
.ws2a{word-spacing:-2.010667pt;}
.ws2d{word-spacing:-1.941333pt;}
.ws17{word-spacing:-1.594667pt;}
.ws5e{word-spacing:-1.525333pt;}
.ws6c{word-spacing:-1.386667pt;}
.ws2c{word-spacing:-1.178667pt;}
.ws44{word-spacing:-1.109333pt;}
.ws11{word-spacing:-0.832000pt;}
.ws4e{word-spacing:-0.485333pt;}
.ws60{word-spacing:-0.416000pt;}
.ws2{word-spacing:-0.266667pt;}
.ws65{word-spacing:-0.208000pt;}
.ws1{word-spacing:0.000000pt;}
.ws73{word-spacing:0.277333pt;}
.ws77{word-spacing:0.554667pt;}
.ws2b{word-spacing:0.624000pt;}
.ws1f{word-spacing:0.762667pt;}
.ws18{word-spacing:0.970667pt;}
.ws61{word-spacing:1.040000pt;}
.ws57{word-spacing:1.109333pt;}
.ws38{word-spacing:1.178667pt;}
.ws15{word-spacing:1.317333pt;}
.ws70{word-spacing:1.386667pt;}
.ws72{word-spacing:1.456000pt;}
.ws10{word-spacing:1.525333pt;}
.wsa{word-spacing:1.664000pt;}
.ws71{word-spacing:1.733333pt;}
.ws46{word-spacing:1.872000pt;}
.ws5c{word-spacing:2.149333pt;}
.ws1d{word-spacing:2.218667pt;}
.ws23{word-spacing:2.288000pt;}
.ws63{word-spacing:2.357333pt;}
.ws4c{word-spacing:2.426667pt;}
.wsd{word-spacing:2.634667pt;}
.ws32{word-spacing:2.773333pt;}
.wsf{word-spacing:3.050667pt;}
.ws36{word-spacing:3.120000pt;}
.ws59{word-spacing:3.189333pt;}
.ws1a{word-spacing:3.258667pt;}
.ws22{word-spacing:3.328000pt;}
.ws64{word-spacing:3.397333pt;}
.ws4f{word-spacing:3.674667pt;}
.ws76{word-spacing:3.813333pt;}
.ws55{word-spacing:3.882667pt;}
.ws58{word-spacing:4.021333pt;}
.ws19{word-spacing:4.090667pt;}
.ws6a{word-spacing:4.160000pt;}
.ws12{word-spacing:4.229333pt;}
.ws26{word-spacing:4.506667pt;}
.ws3b{word-spacing:4.576000pt;}
.ws52{word-spacing:4.714667pt;}
.ws2f{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.130667pt;}
.ws5b{word-spacing:5.338667pt;}
.ws37{word-spacing:5.408000pt;}
.ws21{word-spacing:5.477333pt;}
.ws13{word-spacing:5.546667pt;}
.wsc{word-spacing:5.754667pt;}
.ws47{word-spacing:5.893333pt;}
.ws69{word-spacing:5.962667pt;}
.ws1e{word-spacing:6.309333pt;}
.ws5f{word-spacing:6.378667pt;}
.ws33{word-spacing:6.517333pt;}
.ws74{word-spacing:6.586667pt;}
.ws27{word-spacing:6.725333pt;}
.ws6e{word-spacing:6.864000pt;}
.ws68{word-spacing:7.002667pt;}
.ws53{word-spacing:7.072000pt;}
.ws4b{word-spacing:7.210667pt;}
.ws4d{word-spacing:7.557333pt;}
.ws51{word-spacing:7.626667pt;}
.ws50{word-spacing:7.765333pt;}
.wsb{word-spacing:7.904000pt;}
.ws3a{word-spacing:8.042667pt;}
.ws1c{word-spacing:8.181333pt;}
.ws78{word-spacing:8.320000pt;}
.ws28{word-spacing:8.458667pt;}
.ws14{word-spacing:8.874667pt;}
.ws34{word-spacing:8.944000pt;}
.ws35{word-spacing:9.221333pt;}
.ws56{word-spacing:9.360000pt;}
.ws49{word-spacing:9.845333pt;}
.ws79{word-spacing:9.914667pt;}
.ws67{word-spacing:10.053333pt;}
.ws54{word-spacing:10.122667pt;}
.ws39{word-spacing:10.816000pt;}
.ws41{word-spacing:10.885333pt;}
.ws24{word-spacing:11.024000pt;}
.ws4a{word-spacing:11.093333pt;}
.ws2e{word-spacing:11.232000pt;}
.ws5a{word-spacing:11.994667pt;}
.ws3e{word-spacing:12.896000pt;}
.ws5d{word-spacing:12.965333pt;}
.ws31{word-spacing:13.104000pt;}
.ws75{word-spacing:13.242667pt;}
.wse{word-spacing:13.450667pt;}
.ws3c{word-spacing:13.728000pt;}
.ws3d{word-spacing:14.837333pt;}
.ws62{word-spacing:15.322667pt;}
.ws30{word-spacing:16.293333pt;}
.ws66{word-spacing:16.848000pt;}
.ws6f{word-spacing:22.048000pt;}
.ws16{word-spacing:29.605333pt;}
.ws7{word-spacing:32.064000pt;}
.ws6{word-spacing:32.352000pt;}
.ws3{word-spacing:63.552000pt;}
.ws4{word-spacing:64.128000pt;}
.ws5{word-spacing:83.712000pt;}
.ws7a{word-spacing:176.245333pt;}
._9{margin-left:-10.672000pt;}
._6{margin-left:-9.674667pt;}
._5{margin-left:-7.509333pt;}
._8{margin-left:-6.469333pt;}
._0{margin-left:-5.120000pt;}
._7{margin-left:-3.861333pt;}
._1{margin-left:-2.933333pt;}
._2{margin-left:-1.333333pt;}
._3{width:0.906667pt;}
._4{width:2.133333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.466667pt;}
.y1e{bottom:35.045431pt;}
.y1d{bottom:100.884933pt;}
.y6b{bottom:104.511733pt;}
.y45{bottom:105.456533pt;}
.y83{bottom:115.847733pt;}
.y1c{bottom:124.891600pt;}
.y6a{bottom:128.518400pt;}
.y44{bottom:129.463200pt;}
.y82{bottom:139.854400pt;}
.y1b{bottom:148.898267pt;}
.y69{bottom:152.525067pt;}
.y43{bottom:153.469867pt;}
.y81{bottom:163.861067pt;}
.y1a{bottom:172.904933pt;}
.y68{bottom:176.531733pt;}
.y42{bottom:177.476533pt;}
.y80{bottom:187.867733pt;}
.y19{bottom:196.911600pt;}
.y67{bottom:200.538400pt;}
.y41{bottom:201.483200pt;}
.y7f{bottom:211.874400pt;}
.y90{bottom:213.414667pt;}
.y18{bottom:220.918267pt;}
.y66{bottom:224.545067pt;}
.y40{bottom:225.489867pt;}
.y7e{bottom:235.881067pt;}
.y17{bottom:244.924933pt;}
.y65{bottom:248.551733pt;}
.y3f{bottom:249.496533pt;}
.y7d{bottom:259.887733pt;}
.y16{bottom:268.931600pt;}
.y64{bottom:272.558400pt;}
.y3e{bottom:273.503200pt;}
.y7c{bottom:283.894400pt;}
.y15{bottom:292.938267pt;}
.y63{bottom:296.565067pt;}
.y3d{bottom:297.509867pt;}
.y7b{bottom:307.901067pt;}
.y14{bottom:316.944933pt;}
.y8f{bottom:320.571733pt;}
.y3c{bottom:321.516533pt;}
.y62{bottom:331.907733pt;}
.y13{bottom:340.951600pt;}
.y8e{bottom:344.578400pt;}
.y3b{bottom:345.523200pt;}
.y61{bottom:355.914400pt;}
.y12{bottom:364.958267pt;}
.y8d{bottom:368.585067pt;}
.y60{bottom:379.921067pt;}
.y3a{bottom:380.865867pt;}
.y7a{bottom:391.257067pt;}
.y8c{bottom:392.591733pt;}
.y5f{bottom:403.927733pt;}
.y39{bottom:404.872533pt;}
.y79{bottom:415.263733pt;}
.y8b{bottom:416.598400pt;}
.y5e{bottom:427.934400pt;}
.y38{bottom:428.879200pt;}
.y11{bottom:435.643600pt;}
.y78{bottom:439.270400pt;}
.y5d{bottom:451.941067pt;}
.y37{bottom:452.885867pt;}
.y10{bottom:459.650267pt;}
.y77{bottom:463.277067pt;}
.y5c{bottom:475.947733pt;}
.y36{bottom:476.892533pt;}
.y76{bottom:487.283733pt;}
.yf{bottom:494.992933pt;}
.y5b{bottom:499.954400pt;}
.y35{bottom:500.899200pt;}
.y75{bottom:511.290400pt;}
.ye{bottom:518.999600pt;}
.y5a{bottom:523.961067pt;}
.y34{bottom:524.905867pt;}
.y74{bottom:535.297067pt;}
.y59{bottom:547.967733pt;}
.y33{bottom:548.912533pt;}
.y73{bottom:559.303733pt;}
.y58{bottom:571.974400pt;}
.y32{bottom:572.919200pt;}
.yd{bottom:578.331600pt;}
.y72{bottom:583.310400pt;}
.y57{bottom:595.981067pt;}
.y31{bottom:596.925867pt;}
.yc{bottom:602.338267pt;}
.y71{bottom:607.317067pt;}
.y56{bottom:619.987733pt;}
.y30{bottom:620.932533pt;}
.y70{bottom:631.323733pt;}
.y55{bottom:643.994400pt;}
.y2f{bottom:644.939200pt;}
.y6f{bottom:655.330400pt;}
.yb{bottom:666.314267pt;}
.y54{bottom:668.001067pt;}
.y2e{bottom:668.945867pt;}
.y6e{bottom:679.337067pt;}
.y53{bottom:692.007733pt;}
.y2d{bottom:692.952533pt;}
.ya{bottom:694.322267pt;}
.y6d{bottom:703.343733pt;}
.y52{bottom:716.014400pt;}
.y2c{bottom:716.959200pt;}
.y9{bottom:722.330267pt;}
.y6c{bottom:727.350400pt;}
.y8a{bottom:740.021067pt;}
.y2b{bottom:740.965867pt;}
.y8{bottom:750.338267pt;}
.y51{bottom:751.357067pt;}
.y89{bottom:764.027733pt;}
.y2a{bottom:764.972533pt;}
.y50{bottom:775.363733pt;}
.y88{bottom:788.034400pt;}
.y29{bottom:788.979200pt;}
.y4f{bottom:799.370400pt;}
.y87{bottom:812.041067pt;}
.y28{bottom:812.985867pt;}
.y7{bottom:822.338267pt;}
.y4e{bottom:823.377067pt;}
.y86{bottom:836.047733pt;}
.y27{bottom:836.992533pt;}
.y4d{bottom:847.383733pt;}
.y85{bottom:860.054400pt;}
.y26{bottom:860.999200pt;}
.y4c{bottom:871.390400pt;}
.y84{bottom:884.061067pt;}
.y25{bottom:885.005867pt;}
.y4b{bottom:895.397067pt;}
.y6{bottom:906.338267pt;}
.y24{bottom:909.012533pt;}
.y4a{bottom:919.403733pt;}
.y49{bottom:943.410400pt;}
.y23{bottom:944.355200pt;}
.y5{bottom:954.338267pt;}
.y48{bottom:967.417067pt;}
.y22{bottom:968.361867pt;}
.y4{bottom:970.338267pt;}
.y3{bottom:986.338267pt;}
.y47{bottom:991.423733pt;}
.y21{bottom:992.368533pt;}
.y2{bottom:1002.338267pt;}
.y46{bottom:1015.430400pt;}
.y20{bottom:1016.375200pt;}
.y1{bottom:1018.338267pt;}
.h8{height:14.560000pt;}
.h9{height:44.354167pt;}
.h2{height:44.426667pt;}
.h6{height:49.365333pt;}
.h5{height:49.642667pt;}
.h7{height:57.754667pt;}
.h4{height:67.200000pt;}
.h3{height:79.968000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:17.792000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x2{left:387.951986pt;}
}




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