
    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_b0eb16042353f23d32ee964a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_334a7e4d72b88683ce313dec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_339147dbe4d08e6a4d194251.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_084eb1384fdba8805735614d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_7f822b5356bb1ac87afa18d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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;}
.v1{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.501916px;}
.ls1{letter-spacing:9.321000px;}
.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:-18.348000px;}
.ws22{word-spacing:-3.630000px;}
.ws7{word-spacing:-3.432000px;}
.ws2{word-spacing:-3.108000px;}
.ws25{word-spacing:-3.036000px;}
.ws4c{word-spacing:-2.772000px;}
.ws3c{word-spacing:-2.706000px;}
.ws33{word-spacing:-2.574000px;}
.ws34{word-spacing:-2.442000px;}
.ws12{word-spacing:-2.376000px;}
.ws18{word-spacing:-2.178000px;}
.ws27{word-spacing:-2.112000px;}
.ws29{word-spacing:-1.914000px;}
.ws2a{word-spacing:-1.848000px;}
.ws54{word-spacing:-1.782000px;}
.ws9{word-spacing:-1.122000px;}
.ws14{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.264000px;}
.ws1{word-spacing:0.000000px;}
.ws37{word-spacing:0.198000px;}
.ws20{word-spacing:0.264000px;}
.ws50{word-spacing:0.330000px;}
.wsa{word-spacing:0.528000px;}
.ws31{word-spacing:0.726000px;}
.ws28{word-spacing:0.924000px;}
.ws46{word-spacing:1.122000px;}
.ws5{word-spacing:1.782000px;}
.ws2f{word-spacing:2.046000px;}
.ws4e{word-spacing:2.112000px;}
.ws48{word-spacing:2.508000px;}
.ws3f{word-spacing:2.640000px;}
.ws13{word-spacing:2.838000px;}
.wse{word-spacing:3.366000px;}
.ws6{word-spacing:3.432000px;}
.ws1f{word-spacing:3.828000px;}
.ws1e{word-spacing:3.894000px;}
.ws45{word-spacing:4.092000px;}
.ws8{word-spacing:4.224000px;}
.ws3b{word-spacing:4.290000px;}
.wsf{word-spacing:4.422000px;}
.wsd{word-spacing:4.554000px;}
.ws19{word-spacing:4.752000px;}
.ws55{word-spacing:5.016000px;}
.ws23{word-spacing:5.082000px;}
.ws3a{word-spacing:5.280000px;}
.ws30{word-spacing:5.346000px;}
.ws16{word-spacing:5.412000px;}
.ws1a{word-spacing:5.478000px;}
.ws24{word-spacing:5.610000px;}
.ws4a{word-spacing:5.676000px;}
.ws17{word-spacing:6.270000px;}
.wsb{word-spacing:6.402000px;}
.ws2b{word-spacing:6.534000px;}
.ws4{word-spacing:6.996000px;}
.ws2c{word-spacing:7.062000px;}
.ws11{word-spacing:7.458000px;}
.ws49{word-spacing:7.524000px;}
.ws4b{word-spacing:7.590000px;}
.ws1b{word-spacing:7.920000px;}
.ws15{word-spacing:7.986000px;}
.ws43{word-spacing:8.052000px;}
.ws1d{word-spacing:8.250000px;}
.ws32{word-spacing:8.448000px;}
.ws1c{word-spacing:8.580000px;}
.ws36{word-spacing:8.712000px;}
.ws26{word-spacing:8.778000px;}
.ws4f{word-spacing:8.844000px;}
.ws21{word-spacing:8.910000px;}
.ws4d{word-spacing:9.306000px;}
.ws53{word-spacing:9.438000px;}
.ws2d{word-spacing:9.570000px;}
.ws3d{word-spacing:9.966000px;}
.wsc{word-spacing:10.032000px;}
.ws3e{word-spacing:10.428000px;}
.ws42{word-spacing:10.560000px;}
.ws3{word-spacing:10.758000px;}
.ws35{word-spacing:11.286000px;}
.ws40{word-spacing:11.748000px;}
.ws47{word-spacing:12.078000px;}
.ws10{word-spacing:14.322000px;}
.ws52{word-spacing:14.850000px;}
.ws41{word-spacing:16.302000px;}
.ws44{word-spacing:19.734000px;}
.ws51{word-spacing:22.308000px;}
.ws39{word-spacing:70.752000px;}
.ws38{word-spacing:154.374000px;}
._1{margin-left:-6.232800px;}
._0{margin-left:-4.302000px;}
._3{margin-left:-3.301200px;}
._d{margin-left:-1.128600px;}
._7{width:1.553400px;}
._2{width:3.066000px;}
._4{width:4.237200px;}
._b{width:6.015600px;}
._a{width:8.106000px;}
._9{width:9.318600px;}
._8{width:10.587000px;}
._6{width:12.064800px;}
._c{width:13.404600px;}
._5{width:66.552000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.478000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:87.768300px;}
.yab{bottom:99.920700px;}
.y27{bottom:107.568300px;}
.yaa{bottom:124.670700px;}
.y26{bottom:126.318300px;}
.y25{bottom:149.320200px;}
.y24{bottom:172.322250px;}
.y23{bottom:195.324150px;}
.y86{bottom:208.481550px;}
.y22{bottom:214.074150px;}
.y46{bottom:219.879300px;}
.y85{bottom:227.231550px;}
.y21{bottom:237.076200px;}
.y45{bottom:238.629300px;}
.y84{bottom:245.981550px;}
.y44{bottom:257.379300px;}
.yba{bottom:259.307850px;}
.y20{bottom:260.078100px;}
.y83{bottom:264.731550px;}
.y43{bottom:276.129300px;}
.y1f{bottom:283.080150px;}
.yb9{bottom:283.359750px;}
.y82{bottom:283.481550px;}
.y42{bottom:294.879300px;}
.y33{bottom:297.979650px;}
.yb8{bottom:302.109750px;}
.y81{bottom:302.231550px;}
.y41{bottom:313.629300px;}
.y1e{bottom:314.586000px;}
.y32{bottom:316.729650px;}
.yd3{bottom:318.894300px;}
.yb7{bottom:320.859750px;}
.y80{bottom:320.981550px;}
.y31{bottom:335.479650px;}
.y40{bottom:336.631350px;}
.y1d{bottom:337.086000px;}
.yd2{bottom:337.644300px;}
.yb6{bottom:339.609750px;}
.y7f{bottom:339.731550px;}
.y96{bottom:342.077700px;}
.ya9{bottom:346.215900px;}
.y30{bottom:354.229650px;}
.y3f{bottom:355.381350px;}
.yd1{bottom:356.394300px;}
.yb5{bottom:358.359750px;}
.y95{bottom:360.827700px;}
.y7e{bottom:362.733600px;}
.ya8{bottom:364.965900px;}
.ycd{bottom:367.469850px;}
.y2f{bottom:372.979650px;}
.y3e{bottom:374.131350px;}
.yd0{bottom:375.144300px;}
.yb4{bottom:377.109750px;}
.y94{bottom:379.577700px;}
.y1c{bottom:380.845800px;}
.ya7{bottom:383.715900px;}
.y7d{bottom:385.735500px;}
.ycc{bottom:386.219850px;}
.y3d{bottom:392.881350px;}
.yb3{bottom:395.859750px;}
.ycf{bottom:398.146200px;}
.y93{bottom:398.327700px;}
.ya6{bottom:402.465900px;}
.ycb{bottom:404.969850px;}
.y7c{bottom:408.737550px;}
.y3c{bottom:411.631350px;}
.yb2{bottom:414.609750px;}
.yce{bottom:416.896200px;}
.y92{bottom:417.077700px;}
.y1b{bottom:418.351800px;}
.y2e{bottom:418.983600px;}
.ya5{bottom:421.215900px;}
.yca{bottom:423.719850px;}
.y3b{bottom:430.381350px;}
.y7b{bottom:431.739450px;}
.y1a{bottom:437.101800px;}
.y65{bottom:437.456100px;}
.yb1{bottom:437.611650px;}
.y91{bottom:440.079600px;}
.yc9{bottom:442.469850px;}
.ya4{bottom:444.217950px;}
.y3a{bottom:453.383250px;}
.y7a{bottom:454.741350px;}
.y64{bottom:456.206100px;}
.yb0{bottom:456.361650px;}
.y90{bottom:458.829600px;}
.y19{bottom:460.103700px;}
.yc8{bottom:461.219850px;}
.ya3{bottom:462.967950px;}
.y2d{bottom:464.987550px;}
.y39{bottom:472.133250px;}
.y79{bottom:473.491350px;}
.y63{bottom:474.956100px;}
.y8f{bottom:477.579600px;}
.yaf{bottom:479.363700px;}
.yc7{bottom:479.969850px;}
.y18{bottom:483.105750px;}
.ya2{bottom:485.969850px;}
.y2c{bottom:487.989600px;}
.y78{bottom:492.241350px;}
.y62{bottom:493.706100px;}
.y38{bottom:495.135150px;}
.y8e{bottom:496.329600px;}
.yae{bottom:502.365750px;}
.yc6{bottom:502.971900px;}
.y17{bottom:506.107650px;}
.ya1{bottom:508.971900px;}
.y77{bottom:510.991350px;}
.y2b{bottom:510.991500px;}
.y61{bottom:512.456100px;}
.y8d{bottom:515.079600px;}
.y37{bottom:518.137200px;}
.yc5{bottom:521.721900px;}
.y16{bottom:524.857650px;}
.y60{bottom:531.206100px;}
.yad{bottom:533.871600px;}
.y76{bottom:533.993400px;}
.y2a{bottom:533.993550px;}
.yc4{bottom:540.471900px;}
.y36{bottom:541.139250px;}
.y8c{bottom:546.585600px;}
.y15{bottom:547.859550px;}
.y5f{bottom:549.956100px;}
.yac{bottom:558.621600px;}
.yc3{bottom:559.221900px;}
.y35{bottom:564.141150px;}
.y14{bottom:566.609550px;}
.y5e{bottom:572.958000px;}
.yc2{bottom:577.971900px;}
.y8b{bottom:584.091450px;}
.y13{bottom:585.359550px;}
.y34{bottom:587.143050px;}
.y5d{bottom:591.708000px;}
.yc1{bottom:596.721900px;}
.y8a{bottom:603.891450px;}
.y12{bottom:604.109550px;}
.y5c{bottom:610.458000px;}
.yc0{bottom:619.723800px;}
.y11{bottom:622.859550px;}
.y89{bottom:627.943500px;}
.y5b{bottom:633.460050px;}
.y9d{bottom:634.503000px;}
.ybf{bottom:638.473800px;}
.y10{bottom:641.609550px;}
.y75{bottom:646.319850px;}
.y88{bottom:650.945400px;}
.y9c{bottom:653.253000px;}
.y5a{bottom:656.461950px;}
.ybe{bottom:657.223800px;}
.yf{bottom:660.359550px;}
.y74{bottom:666.119850px;}
.y9b{bottom:672.003000px;}
.y87{bottom:673.947450px;}
.ybd{bottom:675.973800px;}
.y59{bottom:679.464000px;}
.ye{bottom:683.361600px;}
.y73{bottom:685.919850px;}
.y9a{bottom:695.005050px;}
.ybc{bottom:698.975850px;}
.yd{bottom:702.111600px;}
.y58{bottom:702.465900px;}
.y72{bottom:705.719850px;}
.y99{bottom:713.755050px;}
.yc{bottom:720.861600px;}
.y57{bottom:725.467950px;}
.y71{bottom:725.519850px;}
.y98{bottom:736.756950px;}
.yb{bottom:739.611600px;}
.y70{bottom:745.319850px;}
.y56{bottom:748.469850px;}
.ya{bottom:758.361600px;}
.y97{bottom:759.759000px;}
.y6f{bottom:765.119850px;}
.y55{bottom:771.471900px;}
.y9{bottom:777.111600px;}
.y6e{bottom:789.171900px;}
.y54{bottom:790.221900px;}
.y8{bottom:795.861600px;}
.y53{bottom:808.971900px;}
.y52{bottom:827.721900px;}
.y51{bottom:846.471900px;}
.y6d{bottom:865.221900px;}
.y50{bottom:869.473800px;}
.y7{bottom:875.955900px;}
.y6c{bottom:883.971900px;}
.y4f{bottom:888.223800px;}
.y6b{bottom:902.721900px;}
.y4e{bottom:906.973800px;}
.y6{bottom:911.955900px;}
.y6a{bottom:921.471900px;}
.y4d{bottom:925.723800px;}
.ya0{bottom:929.975850px;}
.y69{bottom:940.221900px;}
.y4c{bottom:944.473800px;}
.y5{bottom:944.955900px;}
.y9f{bottom:948.725850px;}
.y4b{bottom:963.223800px;}
.y9e{bottom:967.475850px;}
.y4a{bottom:981.973800px;}
.y68{bottom:986.225850px;}
.y49{bottom:1000.723800px;}
.y67{bottom:1009.227750px;}
.y4{bottom:1023.323700px;}
.y48{bottom:1023.725850px;}
.ybb{bottom:1030.481700px;}
.y66{bottom:1032.229650px;}
.y3{bottom:1039.823700px;}
.y47{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y29{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h9{height:48.049805px;}
.h7{height:52.417969px;}
.h4{height:53.789062px;}
.h3{height:54.169922px;}
.h8{height:59.167969px;}
.ha{height:59.586914px;}
.h6{height:61.154297px;}
.h2{height:75.304688px;}
.h5{height:75.837891px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:90.013950px;}
.x8{left:106.299300px;}
.x9{left:133.299300px;}
.x7{left:297.199950px;}
.x5{left:303.023400px;}
.xc{left:476.716500px;}
.xb{left:497.976300px;}
.x3{left:508.762800px;}
.x4{left:536.477700px;}
.x2{left:775.393650px;}
.xa{left:815.356050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.890592pt;}
.ls1{letter-spacing:8.285333pt;}
.ws0{word-spacing:-16.309333pt;}
.ws22{word-spacing:-3.226667pt;}
.ws7{word-spacing:-3.050667pt;}
.ws2{word-spacing:-2.762667pt;}
.ws25{word-spacing:-2.698667pt;}
.ws4c{word-spacing:-2.464000pt;}
.ws3c{word-spacing:-2.405333pt;}
.ws33{word-spacing:-2.288000pt;}
.ws34{word-spacing:-2.170667pt;}
.ws12{word-spacing:-2.112000pt;}
.ws18{word-spacing:-1.936000pt;}
.ws27{word-spacing:-1.877333pt;}
.ws29{word-spacing:-1.701333pt;}
.ws2a{word-spacing:-1.642667pt;}
.ws54{word-spacing:-1.584000pt;}
.ws9{word-spacing:-0.997333pt;}
.ws14{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.234667pt;}
.ws1{word-spacing:0.000000pt;}
.ws37{word-spacing:0.176000pt;}
.ws20{word-spacing:0.234667pt;}
.ws50{word-spacing:0.293333pt;}
.wsa{word-spacing:0.469333pt;}
.ws31{word-spacing:0.645333pt;}
.ws28{word-spacing:0.821333pt;}
.ws46{word-spacing:0.997333pt;}
.ws5{word-spacing:1.584000pt;}
.ws2f{word-spacing:1.818667pt;}
.ws4e{word-spacing:1.877333pt;}
.ws48{word-spacing:2.229333pt;}
.ws3f{word-spacing:2.346667pt;}
.ws13{word-spacing:2.522667pt;}
.wse{word-spacing:2.992000pt;}
.ws6{word-spacing:3.050667pt;}
.ws1f{word-spacing:3.402667pt;}
.ws1e{word-spacing:3.461333pt;}
.ws45{word-spacing:3.637333pt;}
.ws8{word-spacing:3.754667pt;}
.ws3b{word-spacing:3.813333pt;}
.wsf{word-spacing:3.930667pt;}
.wsd{word-spacing:4.048000pt;}
.ws19{word-spacing:4.224000pt;}
.ws55{word-spacing:4.458667pt;}
.ws23{word-spacing:4.517333pt;}
.ws3a{word-spacing:4.693333pt;}
.ws30{word-spacing:4.752000pt;}
.ws16{word-spacing:4.810667pt;}
.ws1a{word-spacing:4.869333pt;}
.ws24{word-spacing:4.986667pt;}
.ws4a{word-spacing:5.045333pt;}
.ws17{word-spacing:5.573333pt;}
.wsb{word-spacing:5.690667pt;}
.ws2b{word-spacing:5.808000pt;}
.ws4{word-spacing:6.218667pt;}
.ws2c{word-spacing:6.277333pt;}
.ws11{word-spacing:6.629333pt;}
.ws49{word-spacing:6.688000pt;}
.ws4b{word-spacing:6.746667pt;}
.ws1b{word-spacing:7.040000pt;}
.ws15{word-spacing:7.098667pt;}
.ws43{word-spacing:7.157333pt;}
.ws1d{word-spacing:7.333333pt;}
.ws32{word-spacing:7.509333pt;}
.ws1c{word-spacing:7.626667pt;}
.ws36{word-spacing:7.744000pt;}
.ws26{word-spacing:7.802667pt;}
.ws4f{word-spacing:7.861333pt;}
.ws21{word-spacing:7.920000pt;}
.ws4d{word-spacing:8.272000pt;}
.ws53{word-spacing:8.389333pt;}
.ws2d{word-spacing:8.506667pt;}
.ws3d{word-spacing:8.858667pt;}
.wsc{word-spacing:8.917333pt;}
.ws3e{word-spacing:9.269333pt;}
.ws42{word-spacing:9.386667pt;}
.ws3{word-spacing:9.562667pt;}
.ws35{word-spacing:10.032000pt;}
.ws40{word-spacing:10.442667pt;}
.ws47{word-spacing:10.736000pt;}
.ws10{word-spacing:12.730667pt;}
.ws52{word-spacing:13.200000pt;}
.ws41{word-spacing:14.490667pt;}
.ws44{word-spacing:17.541333pt;}
.ws51{word-spacing:19.829333pt;}
.ws39{word-spacing:62.890667pt;}
.ws38{word-spacing:137.221333pt;}
._1{margin-left:-5.540267pt;}
._0{margin-left:-3.824000pt;}
._3{margin-left:-2.934400pt;}
._d{margin-left:-1.003200pt;}
._7{width:1.380800pt;}
._2{width:2.725333pt;}
._4{width:3.766400pt;}
._b{width:5.347200pt;}
._a{width:7.205333pt;}
._9{width:8.283200pt;}
._8{width:9.410667pt;}
._6{width:10.724267pt;}
._c{width:11.915200pt;}
._5{width:59.157333pt;}
.fs4{font-size:34.202667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:78.016267pt;}
.yab{bottom:88.818400pt;}
.y27{bottom:95.616267pt;}
.yaa{bottom:110.818400pt;}
.y26{bottom:112.282933pt;}
.y25{bottom:132.729067pt;}
.y24{bottom:153.175333pt;}
.y23{bottom:173.621467pt;}
.y86{bottom:185.316933pt;}
.y22{bottom:190.288133pt;}
.y46{bottom:195.448267pt;}
.y85{bottom:201.983600pt;}
.y21{bottom:210.734400pt;}
.y45{bottom:212.114933pt;}
.y84{bottom:218.650267pt;}
.y44{bottom:228.781600pt;}
.yba{bottom:230.495867pt;}
.y20{bottom:231.180533pt;}
.y83{bottom:235.316933pt;}
.y43{bottom:245.448267pt;}
.y1f{bottom:251.626800pt;}
.yb9{bottom:251.875333pt;}
.y82{bottom:251.983600pt;}
.y42{bottom:262.114933pt;}
.y33{bottom:264.870800pt;}
.yb8{bottom:268.542000pt;}
.y81{bottom:268.650267pt;}
.y41{bottom:278.781600pt;}
.y1e{bottom:279.632000pt;}
.y32{bottom:281.537467pt;}
.yd3{bottom:283.461600pt;}
.yb7{bottom:285.208667pt;}
.y80{bottom:285.316933pt;}
.y31{bottom:298.204133pt;}
.y40{bottom:299.227867pt;}
.y1d{bottom:299.632000pt;}
.yd2{bottom:300.128267pt;}
.yb6{bottom:301.875333pt;}
.y7f{bottom:301.983600pt;}
.y96{bottom:304.069067pt;}
.ya9{bottom:307.747467pt;}
.y30{bottom:314.870800pt;}
.y3f{bottom:315.894533pt;}
.yd1{bottom:316.794933pt;}
.yb5{bottom:318.542000pt;}
.y95{bottom:320.735733pt;}
.y7e{bottom:322.429867pt;}
.ya8{bottom:324.414133pt;}
.ycd{bottom:326.639867pt;}
.y2f{bottom:331.537467pt;}
.y3e{bottom:332.561200pt;}
.yd0{bottom:333.461600pt;}
.yb4{bottom:335.208667pt;}
.y94{bottom:337.402400pt;}
.y1c{bottom:338.529600pt;}
.ya7{bottom:341.080800pt;}
.y7d{bottom:342.876000pt;}
.ycc{bottom:343.306533pt;}
.y3d{bottom:349.227867pt;}
.yb3{bottom:351.875333pt;}
.ycf{bottom:353.907733pt;}
.y93{bottom:354.069067pt;}
.ya6{bottom:357.747467pt;}
.ycb{bottom:359.973200pt;}
.y7c{bottom:363.322267pt;}
.y3c{bottom:365.894533pt;}
.yb2{bottom:368.542000pt;}
.yce{bottom:370.574400pt;}
.y92{bottom:370.735733pt;}
.y1b{bottom:371.868267pt;}
.y2e{bottom:372.429867pt;}
.ya5{bottom:374.414133pt;}
.yca{bottom:376.639867pt;}
.y3b{bottom:382.561200pt;}
.y7b{bottom:383.768400pt;}
.y1a{bottom:388.534933pt;}
.y65{bottom:388.849867pt;}
.yb1{bottom:388.988133pt;}
.y91{bottom:391.181867pt;}
.yc9{bottom:393.306533pt;}
.ya4{bottom:394.860400pt;}
.y3a{bottom:403.007333pt;}
.y7a{bottom:404.214533pt;}
.y64{bottom:405.516533pt;}
.yb0{bottom:405.654800pt;}
.y90{bottom:407.848533pt;}
.y19{bottom:408.981067pt;}
.yc8{bottom:409.973200pt;}
.ya3{bottom:411.527067pt;}
.y2d{bottom:413.322267pt;}
.y39{bottom:419.674000pt;}
.y79{bottom:420.881200pt;}
.y63{bottom:422.183200pt;}
.y8f{bottom:424.515200pt;}
.yaf{bottom:426.101067pt;}
.yc7{bottom:426.639867pt;}
.y18{bottom:429.427333pt;}
.ya2{bottom:431.973200pt;}
.y2c{bottom:433.768533pt;}
.y78{bottom:437.547867pt;}
.y62{bottom:438.849867pt;}
.y38{bottom:440.120133pt;}
.y8e{bottom:441.181867pt;}
.yae{bottom:446.547333pt;}
.yc6{bottom:447.086133pt;}
.y17{bottom:449.873467pt;}
.ya1{bottom:452.419467pt;}
.y77{bottom:454.214533pt;}
.y2b{bottom:454.214667pt;}
.y61{bottom:455.516533pt;}
.y8d{bottom:457.848533pt;}
.y37{bottom:460.566400pt;}
.yc5{bottom:463.752800pt;}
.y16{bottom:466.540133pt;}
.y60{bottom:472.183200pt;}
.yad{bottom:474.552533pt;}
.y76{bottom:474.660800pt;}
.y2a{bottom:474.660933pt;}
.yc4{bottom:480.419467pt;}
.y36{bottom:481.012667pt;}
.y8c{bottom:485.853867pt;}
.y15{bottom:486.986267pt;}
.y5f{bottom:488.849867pt;}
.yac{bottom:496.552533pt;}
.yc3{bottom:497.086133pt;}
.y35{bottom:501.458800pt;}
.y14{bottom:503.652933pt;}
.y5e{bottom:509.296000pt;}
.yc2{bottom:513.752800pt;}
.y8b{bottom:519.192400pt;}
.y13{bottom:520.319600pt;}
.y34{bottom:521.904933pt;}
.y5d{bottom:525.962667pt;}
.yc1{bottom:530.419467pt;}
.y8a{bottom:536.792400pt;}
.y12{bottom:536.986267pt;}
.y5c{bottom:542.629333pt;}
.yc0{bottom:550.865600pt;}
.y11{bottom:553.652933pt;}
.y89{bottom:558.172000pt;}
.y5b{bottom:563.075600pt;}
.y9d{bottom:564.002667pt;}
.ybf{bottom:567.532267pt;}
.y10{bottom:570.319600pt;}
.y75{bottom:574.506533pt;}
.y88{bottom:578.618133pt;}
.y9c{bottom:580.669333pt;}
.y5a{bottom:583.521733pt;}
.ybe{bottom:584.198933pt;}
.yf{bottom:586.986267pt;}
.y74{bottom:592.106533pt;}
.y9b{bottom:597.336000pt;}
.y87{bottom:599.064400pt;}
.ybd{bottom:600.865600pt;}
.y59{bottom:603.968000pt;}
.ye{bottom:607.432533pt;}
.y73{bottom:609.706533pt;}
.y9a{bottom:617.782267pt;}
.ybc{bottom:621.311867pt;}
.yd{bottom:624.099200pt;}
.y58{bottom:624.414133pt;}
.y72{bottom:627.306533pt;}
.y99{bottom:634.448933pt;}
.yc{bottom:640.765867pt;}
.y57{bottom:644.860400pt;}
.y71{bottom:644.906533pt;}
.y98{bottom:654.895067pt;}
.yb{bottom:657.432533pt;}
.y70{bottom:662.506533pt;}
.y56{bottom:665.306533pt;}
.ya{bottom:674.099200pt;}
.y97{bottom:675.341333pt;}
.y6f{bottom:680.106533pt;}
.y55{bottom:685.752800pt;}
.y9{bottom:690.765867pt;}
.y6e{bottom:701.486133pt;}
.y54{bottom:702.419467pt;}
.y8{bottom:707.432533pt;}
.y53{bottom:719.086133pt;}
.y52{bottom:735.752800pt;}
.y51{bottom:752.419467pt;}
.y6d{bottom:769.086133pt;}
.y50{bottom:772.865600pt;}
.y7{bottom:778.627467pt;}
.y6c{bottom:785.752800pt;}
.y4f{bottom:789.532267pt;}
.y6b{bottom:802.419467pt;}
.y4e{bottom:806.198933pt;}
.y6{bottom:810.627467pt;}
.y6a{bottom:819.086133pt;}
.y4d{bottom:822.865600pt;}
.ya0{bottom:826.645200pt;}
.y69{bottom:835.752800pt;}
.y4c{bottom:839.532267pt;}
.y5{bottom:839.960800pt;}
.y9f{bottom:843.311867pt;}
.y4b{bottom:856.198933pt;}
.y9e{bottom:859.978533pt;}
.y4a{bottom:872.865600pt;}
.y68{bottom:876.645200pt;}
.y49{bottom:889.532267pt;}
.y67{bottom:897.091333pt;}
.y4{bottom:909.621067pt;}
.y48{bottom:909.978533pt;}
.ybb{bottom:915.983733pt;}
.y66{bottom:917.537467pt;}
.y3{bottom:924.287733pt;}
.y47{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y29{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h9{height:42.710938pt;}
.h7{height:46.593750pt;}
.h4{height:47.812500pt;}
.h3{height:48.151042pt;}
.h8{height:52.593750pt;}
.ha{height:52.966146pt;}
.h6{height:54.359375pt;}
.h2{height:66.937500pt;}
.h5{height:67.411458pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:80.012400pt;}
.x8{left:94.488267pt;}
.x9{left:118.488267pt;}
.x7{left:264.177733pt;}
.x5{left:269.354133pt;}
.xc{left:423.748000pt;}
.xb{left:442.645600pt;}
.x3{left:452.233600pt;}
.x4{left:476.869067pt;}
.x2{left:689.238800pt;}
.xa{left:724.760933pt;}
}




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