
    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_1fc8f4859992ede98e812217.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914551;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_4061eeafd8b572a2e13a624c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_9b0222afba585d553266b66b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e8825ab33de6792c28d6ae13.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c637cabe2dea69dd5a637a1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_1fc8f4859992ede98e812217.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914551;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{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:2.273400px;}
.ls1{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.660000px;}
.ls4{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.348000px;}
.wsf{word-spacing:-3.630000px;}
.ws18{word-spacing:-3.300000px;}
.ws19{word-spacing:-2.970000px;}
.ws11{word-spacing:-2.706000px;}
.ws2c{word-spacing:-2.640000px;}
.ws1d{word-spacing:-2.442000px;}
.ws10{word-spacing:-2.244000px;}
.ws22{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.650000px;}
.ws5{word-spacing:-1.518000px;}
.ws13{word-spacing:-1.452000px;}
.ws14{word-spacing:-1.320000px;}
.ws3c{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.188000px;}
.ws35{word-spacing:-1.122000px;}
.ws21{word-spacing:-1.056000px;}
.ws37{word-spacing:-0.924000px;}
.wsa{word-spacing:-0.858000px;}
.ws27{word-spacing:-0.726000px;}
.ws12{word-spacing:-0.660000px;}
.ws3b{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.462000px;}
.ws9{word-spacing:-0.396000px;}
.wsb{word-spacing:-0.264000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.066000px;}
.ws39{word-spacing:0.198000px;}
.wsd{word-spacing:0.264000px;}
.ws32{word-spacing:0.330000px;}
.ws4{word-spacing:0.660000px;}
.ws2a{word-spacing:0.726000px;}
.ws34{word-spacing:0.990000px;}
.ws3a{word-spacing:1.080000px;}
.ws1e{word-spacing:1.320000px;}
.ws2b{word-spacing:1.452000px;}
.ws3d{word-spacing:1.458000px;}
.ws16{word-spacing:1.716000px;}
.ws2f{word-spacing:1.848000px;}
.wse{word-spacing:1.980000px;}
.ws17{word-spacing:2.310000px;}
.ws29{word-spacing:2.574000px;}
.ws26{word-spacing:2.640000px;}
.ws30{word-spacing:2.904000px;}
.ws38{word-spacing:3.036000px;}
.ws2d{word-spacing:3.102000px;}
.ws1a{word-spacing:3.234000px;}
.ws33{word-spacing:3.300000px;}
.ws1f{word-spacing:3.366000px;}
.wsc{word-spacing:3.432000px;}
.ws7{word-spacing:3.498000px;}
.ws1b{word-spacing:4.224000px;}
.ws15{word-spacing:4.422000px;}
.ws36{word-spacing:4.752000px;}
.ws2e{word-spacing:4.818000px;}
.ws20{word-spacing:4.884000px;}
.ws6{word-spacing:4.950000px;}
.ws3{word-spacing:5.148000px;}
.ws23{word-spacing:7.194000px;}
.ws1c{word-spacing:7.590000px;}
.ws31{word-spacing:8.778000px;}
.ws0{word-spacing:68.481600px;}
._1{margin-left:-12.374400px;}
._6{margin-left:-7.956000px;}
._f{margin-left:-5.994000px;}
._9{margin-left:-4.897200px;}
._5{margin-left:-3.722400px;}
._0{margin-left:-1.776000px;}
._4{width:1.730400px;}
._3{width:2.969400px;}
._2{width:4.132200px;}
._7{width:6.085200px;}
._8{width:7.160400px;}
._a{width:8.279400px;}
._b{width:9.655800px;}
._c{width:10.923000px;}
._d{width:394.205400px;}
._e{width:449.300400px;}
.fc3{color:rgb(5,98,193);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(54,94,144);}
.fc0{color:rgb(114,142,177);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:67.770150px;}
.ybf{bottom:86.740200px;}
.y9d{bottom:87.483600px;}
.y68{bottom:91.452150px;}
.ybe{bottom:103.240200px;}
.y9c{bottom:105.483600px;}
.y67{bottom:109.452150px;}
.y9b{bottom:123.483600px;}
.y66{bottom:127.452150px;}
.y9a{bottom:141.483600px;}
.y32{bottom:145.548450px;}
.ybd{bottom:154.590750px;}
.y99{bottom:159.483600px;}
.y65{bottom:162.460050px;}
.y98{bottom:177.483600px;}
.y64{bottom:180.460050px;}
.y31{bottom:180.556200px;}
.ybc{bottom:181.094700px;}
.y97{bottom:195.483600px;}
.y63{bottom:198.460050px;}
.ybb{bottom:207.598650px;}
.yb7{bottom:211.850550px;}
.yd4{bottom:213.483600px;}
.y30{bottom:215.564250px;}
.y62{bottom:216.460050px;}
.y35{bottom:226.456200px;}
.yb6{bottom:229.850550px;}
.y96{bottom:230.491500px;}
.yd3{bottom:231.483600px;}
.y2f{bottom:233.564250px;}
.yb4{bottom:234.102600px;}
.y61{bottom:234.460050px;}
.y1{bottom:234.960000px;}
.y95{bottom:248.491500px;}
.yd2{bottom:249.483600px;}
.y2e{bottom:251.564250px;}
.y60{bottom:252.460050px;}
.yb5{bottom:256.354500px;}
.yba{bottom:260.606550px;}
.y94{bottom:266.491500px;}
.yd1{bottom:267.483600px;}
.y2d{bottom:269.564250px;}
.y5f{bottom:270.460050px;}
.y93{bottom:284.491500px;}
.yd0{bottom:285.483600px;}
.yb9{bottom:287.110500px;}
.y2c{bottom:287.564250px;}
.y92{bottom:302.491500px;}
.ycf{bottom:303.483600px;}
.y2b{bottom:305.564250px;}
.yb8{bottom:313.614300px;}
.y91{bottom:320.491500px;}
.yce{bottom:321.483600px;}
.y5e{bottom:322.475700px;}
.y2a{bottom:323.564250px;}
.y90{bottom:338.491500px;}
.ycd{bottom:339.483600px;}
.y5d{bottom:340.475700px;}
.y29{bottom:341.564250px;}
.yb3{bottom:347.476200px;}
.y8f{bottom:356.491500px;}
.y28{bottom:359.564250px;}
.yb2{bottom:373.499400px;}
.yc1{bottom:374.491500px;}
.y27{bottom:377.564250px;}
.y8e{bottom:391.499400px;}
.y5c{bottom:392.491500px;}
.y26{bottom:395.564250px;}
.yb1{bottom:408.507300px;}
.y8d{bottom:409.499400px;}
.y5b{bottom:410.491500px;}
.y25{bottom:413.564250px;}
.yb0{bottom:426.507300px;}
.y8c{bottom:427.499400px;}
.y5a{bottom:428.491500px;}
.y24{bottom:431.564100px;}
.yaf{bottom:444.507300px;}
.y8b{bottom:445.499400px;}
.y59{bottom:446.491500px;}
.y23{bottom:449.564100px;}
.yae{bottom:462.507300px;}
.y8a{bottom:463.499400px;}
.y58{bottom:464.491500px;}
.y22{bottom:467.564100px;}
.yad{bottom:480.507300px;}
.y89{bottom:481.499400px;}
.y57{bottom:482.491500px;}
.y21{bottom:485.564100px;}
.yac{bottom:498.507300px;}
.y88{bottom:499.499400px;}
.y56{bottom:500.491500px;}
.y20{bottom:503.564100px;}
.yab{bottom:516.507300px;}
.y87{bottom:517.499400px;}
.ycc{bottom:518.491500px;}
.y1f{bottom:521.564100px;}
.yaa{bottom:534.507300px;}
.y55{bottom:535.499400px;}
.y1e{bottom:539.564100px;}
.ya9{bottom:552.507300px;}
.y54{bottom:553.499400px;}
.y1d{bottom:566.068200px;}
.y86{bottom:570.507300px;}
.y53{bottom:571.499400px;}
.y85{bottom:588.507300px;}
.y52{bottom:589.499400px;}
.y1c{bottom:601.075950px;}
.y84{bottom:606.507300px;}
.y51{bottom:607.499400px;}
.y1b{bottom:619.075950px;}
.ya8{bottom:623.515200px;}
.y83{bottom:624.507300px;}
.y50{bottom:625.499400px;}
.y1a{bottom:637.075950px;}
.ya7{bottom:641.515200px;}
.y82{bottom:642.507300px;}
.y4f{bottom:643.499400px;}
.y34{bottom:647.110650px;}
.y19{bottom:655.075950px;}
.ya6{bottom:659.515200px;}
.y81{bottom:660.507300px;}
.y4e{bottom:661.499400px;}
.y18{bottom:673.075950px;}
.ya5{bottom:677.515200px;}
.y80{bottom:678.507300px;}
.ycb{bottom:679.499400px;}
.y17{bottom:691.075950px;}
.ya4{bottom:695.515200px;}
.y4d{bottom:696.507300px;}
.y16{bottom:709.075950px;}
.y7f{bottom:713.515200px;}
.y4c{bottom:714.507300px;}
.y15{bottom:727.075950px;}
.y7e{bottom:731.515200px;}
.y4b{bottom:732.507300px;}
.y14{bottom:745.075950px;}
.y7d{bottom:749.515200px;}
.y4a{bottom:750.507300px;}
.yf2{bottom:752.930850px;}
.y13{bottom:763.075950px;}
.y7c{bottom:767.515200px;}
.y49{bottom:768.507150px;}
.yf1{bottom:776.480850px;}
.y12{bottom:781.075950px;}
.ya3{bottom:784.523100px;}
.yc0{bottom:785.515200px;}
.yca{bottom:786.507150px;}
.yf0{bottom:794.480850px;}
.y11{bottom:799.075950px;}
.y7b{bottom:802.523100px;}
.y48{bottom:803.515200px;}
.yc9{bottom:804.507150px;}
.y10{bottom:817.075950px;}
.yef{bottom:818.030850px;}
.y7a{bottom:820.522950px;}
.y47{bottom:821.515200px;}
.yc8{bottom:822.507300px;}
.yf{bottom:835.075950px;}
.ydf{bottom:837.530850px;}
.y79{bottom:838.522950px;}
.y46{bottom:839.515200px;}
.yc7{bottom:840.507300px;}
.yee{bottom:841.581000px;}
.ye{bottom:853.075950px;}
.yde{bottom:855.530850px;}
.y78{bottom:856.522950px;}
.y45{bottom:857.515200px;}
.yc6{bottom:858.507300px;}
.yed{bottom:859.581000px;}
.yd{bottom:871.075950px;}
.ydd{bottom:873.530850px;}
.y77{bottom:874.522950px;}
.y44{bottom:875.515200px;}
.yec{bottom:883.130850px;}
.yc{bottom:889.075950px;}
.ydc{bottom:891.530850px;}
.y76{bottom:892.522950px;}
.y43{bottom:893.515200px;}
.yeb{bottom:906.680850px;}
.yb{bottom:907.075950px;}
.ydb{bottom:909.530850px;}
.y75{bottom:910.522950px;}
.y42{bottom:911.515200px;}
.ya{bottom:925.075950px;}
.yda{bottom:927.530850px;}
.y74{bottom:928.522950px;}
.y41{bottom:929.515200px;}
.yea{bottom:930.230850px;}
.y9{bottom:943.075950px;}
.yd9{bottom:945.530850px;}
.ya2{bottom:946.522950px;}
.y40{bottom:947.515200px;}
.ye9{bottom:948.230850px;}
.y73{bottom:963.530850px;}
.ya1{bottom:964.522950px;}
.yc5{bottom:965.515200px;}
.y8{bottom:969.579900px;}
.ye8{bottom:971.780850px;}
.y72{bottom:981.530850px;}
.y3f{bottom:982.522950px;}
.yc4{bottom:983.515200px;}
.ye7{bottom:989.780850px;}
.y71{bottom:999.530850px;}
.y3e{bottom:1000.522950px;}
.yc3{bottom:1001.515200px;}
.y7{bottom:1004.587800px;}
.ye6{bottom:1013.331000px;}
.yd8{bottom:1016.538750px;}
.y70{bottom:1017.530850px;}
.y3d{bottom:1018.522950px;}
.yc2{bottom:1019.515200px;}
.y6{bottom:1022.587800px;}
.ye5{bottom:1031.331000px;}
.yd7{bottom:1034.538750px;}
.y6f{bottom:1035.530850px;}
.y3c{bottom:1036.522950px;}
.y5{bottom:1040.587800px;}
.yd6{bottom:1052.538750px;}
.y6e{bottom:1053.530850px;}
.y3b{bottom:1054.522950px;}
.ye4{bottom:1054.880850px;}
.yd5{bottom:1070.538750px;}
.ya0{bottom:1071.530850px;}
.y3a{bottom:1072.522950px;}
.ye3{bottom:1072.880850px;}
.y6d{bottom:1088.538750px;}
.y9f{bottom:1089.530850px;}
.y39{bottom:1090.522950px;}
.ye2{bottom:1096.430850px;}
.y6c{bottom:1106.538750px;}
.y9e{bottom:1107.530850px;}
.y38{bottom:1108.522950px;}
.y4{bottom:1113.078600px;}
.ye1{bottom:1114.430850px;}
.y6b{bottom:1124.538750px;}
.y37{bottom:1126.522950px;}
.ye0{bottom:1137.980850px;}
.y6a{bottom:1142.538750px;}
.y3{bottom:1143.078600px;}
.y69{bottom:1160.538750px;}
.y2{bottom:1173.078600px;}
.y36{bottom:1178.538750px;}
.h6{height:48.410156px;}
.h7{height:48.911133px;}
.h2{height:51.184533px;}
.h5{height:59.167969px;}
.h4{height:59.586914px;}
.h8{height:65.003906px;}
.h3{height:86.062500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:40.977000px;}
.xa{left:72.283350px;}
.x8{left:85.039350px;}
.xb{left:114.803100px;}
.xc{left:123.307050px;}
.xd{left:132.450900px;}
.xe{left:133.719750px;}
.x2{left:165.146400px;}
.x3{left:210.128550px;}
.x4{left:277.526400px;}
.x10{left:323.218500px;}
.xf{left:369.380850px;}
.x11{left:403.902150px;}
.x12{left:633.262950px;}
.x7{left:637.151700px;}
.x6{left:640.675650px;}
.x14{left:645.635700px;}
.x5{left:651.618750px;}
.x16{left:652.764750px;}
.x13{left:656.525400px;}
.x15{left:657.649350px;}
.x1{left:861.015300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.020800pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.173333pt;}
.ws1{word-spacing:-16.309333pt;}
.wsf{word-spacing:-3.226667pt;}
.ws18{word-spacing:-2.933333pt;}
.ws19{word-spacing:-2.640000pt;}
.ws11{word-spacing:-2.405333pt;}
.ws2c{word-spacing:-2.346667pt;}
.ws1d{word-spacing:-2.170667pt;}
.ws10{word-spacing:-1.994667pt;}
.ws22{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.466667pt;}
.ws5{word-spacing:-1.349333pt;}
.ws13{word-spacing:-1.290667pt;}
.ws14{word-spacing:-1.173333pt;}
.ws3c{word-spacing:-1.152000pt;}
.ws24{word-spacing:-1.056000pt;}
.ws35{word-spacing:-0.997333pt;}
.ws21{word-spacing:-0.938667pt;}
.ws37{word-spacing:-0.821333pt;}
.wsa{word-spacing:-0.762667pt;}
.ws27{word-spacing:-0.645333pt;}
.ws12{word-spacing:-0.586667pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.410667pt;}
.ws9{word-spacing:-0.352000pt;}
.wsb{word-spacing:-0.234667pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.058667pt;}
.ws39{word-spacing:0.176000pt;}
.wsd{word-spacing:0.234667pt;}
.ws32{word-spacing:0.293333pt;}
.ws4{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.645333pt;}
.ws34{word-spacing:0.880000pt;}
.ws3a{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.290667pt;}
.ws3d{word-spacing:1.296000pt;}
.ws16{word-spacing:1.525333pt;}
.ws2f{word-spacing:1.642667pt;}
.wse{word-spacing:1.760000pt;}
.ws17{word-spacing:2.053333pt;}
.ws29{word-spacing:2.288000pt;}
.ws26{word-spacing:2.346667pt;}
.ws30{word-spacing:2.581333pt;}
.ws38{word-spacing:2.698667pt;}
.ws2d{word-spacing:2.757333pt;}
.ws1a{word-spacing:2.874667pt;}
.ws33{word-spacing:2.933333pt;}
.ws1f{word-spacing:2.992000pt;}
.wsc{word-spacing:3.050667pt;}
.ws7{word-spacing:3.109333pt;}
.ws1b{word-spacing:3.754667pt;}
.ws15{word-spacing:3.930667pt;}
.ws36{word-spacing:4.224000pt;}
.ws2e{word-spacing:4.282667pt;}
.ws20{word-spacing:4.341333pt;}
.ws6{word-spacing:4.400000pt;}
.ws3{word-spacing:4.576000pt;}
.ws23{word-spacing:6.394667pt;}
.ws1c{word-spacing:6.746667pt;}
.ws31{word-spacing:7.802667pt;}
.ws0{word-spacing:60.872533pt;}
._1{margin-left:-10.999467pt;}
._6{margin-left:-7.072000pt;}
._f{margin-left:-5.328000pt;}
._9{margin-left:-4.353067pt;}
._5{margin-left:-3.308800pt;}
._0{margin-left:-1.578667pt;}
._4{width:1.538133pt;}
._3{width:2.639467pt;}
._2{width:3.673067pt;}
._7{width:5.409067pt;}
._8{width:6.364800pt;}
._a{width:7.359467pt;}
._b{width:8.582933pt;}
._c{width:9.709333pt;}
._d{width:350.404800pt;}
._e{width:399.378133pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:60.240133pt;}
.ybf{bottom:77.102400pt;}
.y9d{bottom:77.763200pt;}
.y68{bottom:81.290800pt;}
.ybe{bottom:91.769067pt;}
.y9c{bottom:93.763200pt;}
.y67{bottom:97.290800pt;}
.y9b{bottom:109.763200pt;}
.y66{bottom:113.290800pt;}
.y9a{bottom:125.763200pt;}
.y32{bottom:129.376400pt;}
.ybd{bottom:137.414000pt;}
.y99{bottom:141.763200pt;}
.y65{bottom:144.408933pt;}
.y98{bottom:157.763200pt;}
.y64{bottom:160.408933pt;}
.y31{bottom:160.494400pt;}
.ybc{bottom:160.973067pt;}
.y97{bottom:173.763200pt;}
.y63{bottom:176.408933pt;}
.ybb{bottom:184.532133pt;}
.yb7{bottom:188.311600pt;}
.yd4{bottom:189.763200pt;}
.y30{bottom:191.612667pt;}
.y62{bottom:192.408933pt;}
.y35{bottom:201.294400pt;}
.yb6{bottom:204.311600pt;}
.y96{bottom:204.881333pt;}
.yd3{bottom:205.763200pt;}
.y2f{bottom:207.612667pt;}
.yb4{bottom:208.091200pt;}
.y61{bottom:208.408933pt;}
.y1{bottom:208.853333pt;}
.y95{bottom:220.881333pt;}
.yd2{bottom:221.763200pt;}
.y2e{bottom:223.612667pt;}
.y60{bottom:224.408933pt;}
.yb5{bottom:227.870667pt;}
.yba{bottom:231.650267pt;}
.y94{bottom:236.881333pt;}
.yd1{bottom:237.763200pt;}
.y2d{bottom:239.612667pt;}
.y5f{bottom:240.408933pt;}
.y93{bottom:252.881333pt;}
.yd0{bottom:253.763200pt;}
.yb9{bottom:255.209333pt;}
.y2c{bottom:255.612667pt;}
.y92{bottom:268.881333pt;}
.ycf{bottom:269.763200pt;}
.y2b{bottom:271.612667pt;}
.yb8{bottom:278.768267pt;}
.y91{bottom:284.881333pt;}
.yce{bottom:285.763200pt;}
.y5e{bottom:286.645067pt;}
.y2a{bottom:287.612667pt;}
.y90{bottom:300.881333pt;}
.ycd{bottom:301.763200pt;}
.y5d{bottom:302.645067pt;}
.y29{bottom:303.612667pt;}
.yb3{bottom:308.867733pt;}
.y8f{bottom:316.881333pt;}
.y28{bottom:319.612667pt;}
.yb2{bottom:331.999467pt;}
.yc1{bottom:332.881333pt;}
.y27{bottom:335.612667pt;}
.y8e{bottom:347.999467pt;}
.y5c{bottom:348.881333pt;}
.y26{bottom:351.612667pt;}
.yb1{bottom:363.117600pt;}
.y8d{bottom:363.999467pt;}
.y5b{bottom:364.881333pt;}
.y25{bottom:367.612667pt;}
.yb0{bottom:379.117600pt;}
.y8c{bottom:379.999467pt;}
.y5a{bottom:380.881333pt;}
.y24{bottom:383.612533pt;}
.yaf{bottom:395.117600pt;}
.y8b{bottom:395.999467pt;}
.y59{bottom:396.881333pt;}
.y23{bottom:399.612533pt;}
.yae{bottom:411.117600pt;}
.y8a{bottom:411.999467pt;}
.y58{bottom:412.881333pt;}
.y22{bottom:415.612533pt;}
.yad{bottom:427.117600pt;}
.y89{bottom:427.999467pt;}
.y57{bottom:428.881333pt;}
.y21{bottom:431.612533pt;}
.yac{bottom:443.117600pt;}
.y88{bottom:443.999467pt;}
.y56{bottom:444.881333pt;}
.y20{bottom:447.612533pt;}
.yab{bottom:459.117600pt;}
.y87{bottom:459.999467pt;}
.ycc{bottom:460.881333pt;}
.y1f{bottom:463.612533pt;}
.yaa{bottom:475.117600pt;}
.y55{bottom:475.999467pt;}
.y1e{bottom:479.612533pt;}
.ya9{bottom:491.117600pt;}
.y54{bottom:491.999467pt;}
.y1d{bottom:503.171733pt;}
.y86{bottom:507.117600pt;}
.y53{bottom:507.999467pt;}
.y85{bottom:523.117600pt;}
.y52{bottom:523.999467pt;}
.y1c{bottom:534.289733pt;}
.y84{bottom:539.117600pt;}
.y51{bottom:539.999467pt;}
.y1b{bottom:550.289733pt;}
.ya8{bottom:554.235733pt;}
.y83{bottom:555.117600pt;}
.y50{bottom:555.999467pt;}
.y1a{bottom:566.289733pt;}
.ya7{bottom:570.235733pt;}
.y82{bottom:571.117600pt;}
.y4f{bottom:571.999467pt;}
.y34{bottom:575.209467pt;}
.y19{bottom:582.289733pt;}
.ya6{bottom:586.235733pt;}
.y81{bottom:587.117600pt;}
.y4e{bottom:587.999467pt;}
.y18{bottom:598.289733pt;}
.ya5{bottom:602.235733pt;}
.y80{bottom:603.117600pt;}
.ycb{bottom:603.999467pt;}
.y17{bottom:614.289733pt;}
.ya4{bottom:618.235733pt;}
.y4d{bottom:619.117600pt;}
.y16{bottom:630.289733pt;}
.y7f{bottom:634.235733pt;}
.y4c{bottom:635.117600pt;}
.y15{bottom:646.289733pt;}
.y7e{bottom:650.235733pt;}
.y4b{bottom:651.117600pt;}
.y14{bottom:662.289733pt;}
.y7d{bottom:666.235733pt;}
.y4a{bottom:667.117600pt;}
.yf2{bottom:669.271867pt;}
.y13{bottom:678.289733pt;}
.y7c{bottom:682.235733pt;}
.y49{bottom:683.117467pt;}
.yf1{bottom:690.205200pt;}
.y12{bottom:694.289733pt;}
.ya3{bottom:697.353867pt;}
.yc0{bottom:698.235733pt;}
.yca{bottom:699.117467pt;}
.yf0{bottom:706.205200pt;}
.y11{bottom:710.289733pt;}
.y7b{bottom:713.353867pt;}
.y48{bottom:714.235733pt;}
.yc9{bottom:715.117467pt;}
.y10{bottom:726.289733pt;}
.yef{bottom:727.138533pt;}
.y7a{bottom:729.353733pt;}
.y47{bottom:730.235733pt;}
.yc8{bottom:731.117600pt;}
.yf{bottom:742.289733pt;}
.ydf{bottom:744.471867pt;}
.y79{bottom:745.353733pt;}
.y46{bottom:746.235733pt;}
.yc7{bottom:747.117600pt;}
.yee{bottom:748.072000pt;}
.ye{bottom:758.289733pt;}
.yde{bottom:760.471867pt;}
.y78{bottom:761.353733pt;}
.y45{bottom:762.235733pt;}
.yc6{bottom:763.117600pt;}
.yed{bottom:764.072000pt;}
.yd{bottom:774.289733pt;}
.ydd{bottom:776.471867pt;}
.y77{bottom:777.353733pt;}
.y44{bottom:778.235733pt;}
.yec{bottom:785.005200pt;}
.yc{bottom:790.289733pt;}
.ydc{bottom:792.471867pt;}
.y76{bottom:793.353733pt;}
.y43{bottom:794.235733pt;}
.yeb{bottom:805.938533pt;}
.yb{bottom:806.289733pt;}
.ydb{bottom:808.471867pt;}
.y75{bottom:809.353733pt;}
.y42{bottom:810.235733pt;}
.ya{bottom:822.289733pt;}
.yda{bottom:824.471867pt;}
.y74{bottom:825.353733pt;}
.y41{bottom:826.235733pt;}
.yea{bottom:826.871867pt;}
.y9{bottom:838.289733pt;}
.yd9{bottom:840.471867pt;}
.ya2{bottom:841.353733pt;}
.y40{bottom:842.235733pt;}
.ye9{bottom:842.871867pt;}
.y73{bottom:856.471867pt;}
.ya1{bottom:857.353733pt;}
.yc5{bottom:858.235733pt;}
.y8{bottom:861.848800pt;}
.ye8{bottom:863.805200pt;}
.y72{bottom:872.471867pt;}
.y3f{bottom:873.353733pt;}
.yc4{bottom:874.235733pt;}
.ye7{bottom:879.805200pt;}
.y71{bottom:888.471867pt;}
.y3e{bottom:889.353733pt;}
.yc3{bottom:890.235733pt;}
.y7{bottom:892.966933pt;}
.ye6{bottom:900.738667pt;}
.yd8{bottom:903.590000pt;}
.y70{bottom:904.471867pt;}
.y3d{bottom:905.353733pt;}
.yc2{bottom:906.235733pt;}
.y6{bottom:908.966933pt;}
.ye5{bottom:916.738667pt;}
.yd7{bottom:919.590000pt;}
.y6f{bottom:920.471867pt;}
.y3c{bottom:921.353733pt;}
.y5{bottom:924.966933pt;}
.yd6{bottom:935.590000pt;}
.y6e{bottom:936.471867pt;}
.y3b{bottom:937.353733pt;}
.ye4{bottom:937.671867pt;}
.yd5{bottom:951.590000pt;}
.ya0{bottom:952.471867pt;}
.y3a{bottom:953.353733pt;}
.ye3{bottom:953.671867pt;}
.y6d{bottom:967.590000pt;}
.y9f{bottom:968.471867pt;}
.y39{bottom:969.353733pt;}
.ye2{bottom:974.605200pt;}
.y6c{bottom:983.590000pt;}
.y9e{bottom:984.471867pt;}
.y38{bottom:985.353733pt;}
.y4{bottom:989.403200pt;}
.ye1{bottom:990.605200pt;}
.y6b{bottom:999.590000pt;}
.y37{bottom:1001.353733pt;}
.ye0{bottom:1011.538533pt;}
.y6a{bottom:1015.590000pt;}
.y3{bottom:1016.069867pt;}
.y69{bottom:1031.590000pt;}
.y2{bottom:1042.736533pt;}
.y36{bottom:1047.590000pt;}
.h6{height:43.031250pt;}
.h7{height:43.476562pt;}
.h2{height:45.497362pt;}
.h5{height:52.593750pt;}
.h4{height:52.966146pt;}
.h8{height:57.781250pt;}
.h3{height:76.500000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:36.424000pt;}
.xa{left:64.251867pt;}
.x8{left:75.590533pt;}
.xb{left:102.047200pt;}
.xc{left:109.606267pt;}
.xd{left:117.734133pt;}
.xe{left:118.862000pt;}
.x2{left:146.796800pt;}
.x3{left:186.780933pt;}
.x4{left:246.690133pt;}
.x10{left:287.305333pt;}
.xf{left:328.338533pt;}
.x11{left:359.024133pt;}
.x12{left:562.900400pt;}
.x7{left:566.357067pt;}
.x6{left:569.489467pt;}
.x14{left:573.898400pt;}
.x5{left:579.216667pt;}
.x16{left:580.235333pt;}
.x13{left:583.578133pt;}
.x15{left:584.577200pt;}
.x1{left:765.346933pt;}
}




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