
    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_dc79b4301b58593f634de8f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_ddbf59456e67e21ef803e29e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_1a6df896778c5e7efa7f03cb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_384ab4545abfdd0d1dc62ef8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987305;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_4ba8d8f0a40aa971055181ec.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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;}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-21.000000px;}
.v1{vertical-align:-12.000000px;}
.v2{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v4{vertical-align:21.000000px;}
.v5{vertical-align:30.000000px;}
.ls17{letter-spacing:-2.976000px;}
.ls19{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.032000px;}
.lsb{letter-spacing:-0.984000px;}
.ls9{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.024000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.024000px;}
.ls1a{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.312000px;}
.ls13{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.462000px;}
.ls11{letter-spacing:0.492000px;}
.ls4{letter-spacing:0.636000px;}
.ls10{letter-spacing:0.696000px;}
.ls6{letter-spacing:0.936000px;}
.ls8{letter-spacing:0.984000px;}
.ls14{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.320000px;}
.ls5{letter-spacing:1.344000px;}
.lsf{letter-spacing:1.968000px;}
.ls18{letter-spacing:2.016000px;}
.ls12{letter-spacing:3.312000px;}
.ls15{letter-spacing:3.492000px;}
.lse{letter-spacing:3.984000px;}
.ls0{letter-spacing:166.806000px;}
.ls3{letter-spacing:488.016000px;}
.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;}
}
.ws4{word-spacing:-30.048000px;}
.ws3{word-spacing:-29.988000px;}
.ws8{word-spacing:-21.984000px;}
.wsd{word-spacing:-21.024000px;}
.wsa{word-spacing:-21.000000px;}
.ws7{word-spacing:-20.040000px;}
.wsb{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.992000px;}
.ws6{word-spacing:-19.032000px;}
.wsc{word-spacing:-18.984000px;}
.ws5{word-spacing:-16.680000px;}
.wse{word-spacing:-14.688000px;}
.ws2{word-spacing:-14.328000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-5.496000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._b{width:4.362000px;}
._7{width:5.664000px;}
._a{width:6.834000px;}
._e{width:8.148000px;}
._c{width:9.912000px;}
._d{width:10.986000px;}
._8{width:12.816000px;}
._9{width:13.830000px;}
._12{width:15.612000px;}
._13{width:16.758000px;}
._11{width:18.864000px;}
._10{width:21.408000px;}
._f{width:22.710000px;}
._26{width:25.056000px;}
._1a{width:27.288000px;}
._1d{width:28.734000px;}
._1b{width:30.696000px;}
._1c{width:31.734000px;}
._14{width:33.588000px;}
._15{width:34.806000px;}
._17{width:36.906000px;}
._18{width:38.058000px;}
._19{width:39.888000px;}
._1f{width:41.388000px;}
._1e{width:42.570000px;}
._25{width:45.462000px;}
._23{width:46.566000px;}
._24{width:48.492000px;}
._22{width:57.156000px;}
._21{width:58.338000px;}
._20{width:71.070000px;}
._4{width:508.986000px;}
._6{width:1172.868000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs6{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y59{bottom:124.575000px;}
.yc8{bottom:126.075000px;}
.y29{bottom:138.075000px;}
.y7d{bottom:144.112500px;}
.yc7{bottom:146.362500px;}
.yad{bottom:149.362500px;}
.y28{bottom:155.355000px;}
.y58{bottom:163.620000px;}
.y7c{bottom:165.120000px;}
.yac{bottom:170.370000px;}
.y7b{bottom:181.620000px;}
.y57{bottom:184.620000px;}
.yc6{bottom:185.370000px;}
.yab{bottom:190.620000px;}
.y9b{bottom:198.120000px;}
.y56{bottom:204.900000px;}
.yc5{bottom:206.400000px;}
.yaa{bottom:211.650000px;}
.y9a{bottom:219.150000px;}
.yc4{bottom:228.900000px;}
.ya9{bottom:232.650000px;}
.y99{bottom:239.400000px;}
.y55{bottom:243.900000px;}
.yc3{bottom:249.900000px;}
.ya8{bottom:253.650000px;}
.y98{bottom:260.400000px;}
.y54{bottom:264.900000px;}
.yc2{bottom:270.195000px;}
.ya7{bottom:276.945000px;}
.y97{bottom:280.695000px;}
.y53{bottom:285.195000px;}
.yc1{bottom:291.195000px;}
.ya6{bottom:297.945000px;}
.y96{bottom:301.695000px;}
.y52{bottom:306.195000px;}
.yc0{bottom:311.445000px;}
.ya5{bottom:318.945000px;}
.y95{bottom:322.695000px;}
.y51{bottom:326.445000px;}
.ybf{bottom:332.475000px;}
.ya4{bottom:339.225000px;}
.y94{bottom:342.975000px;}
.y50{bottom:347.475000px;}
.ybe{bottom:353.475000px;}
.ya3{bottom:360.225000px;}
.y93{bottom:363.975000px;}
.y4f{bottom:368.475000px;}
.ybd{bottom:373.725000px;}
.ya2{bottom:380.475000px;}
.y92{bottom:384.225000px;}
.y4e{bottom:388.725000px;}
.ybc{bottom:394.725000px;}
.ya1{bottom:402.255000px;}
.y91{bottom:405.255000px;}
.y7a{bottom:408.255000px;}
.y4d{bottom:409.755000px;}
.ybb{bottom:415.005000px;}
.ya0{bottom:425.505000px;}
.y90{bottom:426.255000px;}
.y79{bottom:429.255000px;}
.y4c{bottom:430.005000px;}
.yba{bottom:436.005000px;}
.y8f{bottom:446.505000px;}
.y78{bottom:449.505000px;}
.y4b{bottom:451.005000px;}
.y27{bottom:457.005000px;}
.y9f{bottom:466.800000px;}
.y8e{bottom:467.550000px;}
.y77{bottom:470.550000px;}
.y4a{bottom:472.050000px;}
.y26{bottom:477.300000px;}
.y8d{bottom:487.800000px;}
.y76{bottom:491.550000px;}
.y49{bottom:492.300000px;}
.y25{bottom:498.300000px;}
.y8c{bottom:508.800000px;}
.y75{bottom:511.800000px;}
.y24{bottom:518.550000px;}
.y9e{bottom:529.095000px;}
.y8b{bottom:529.830000px;}
.y48{bottom:530.595000px;}
.y74{bottom:532.830000px;}
.y23{bottom:539.580000px;}
.y8a{bottom:550.080000px;}
.y47{bottom:551.580000px;}
.y73{bottom:553.080000px;}
.y22{bottom:560.595000px;}
.y9d{bottom:570.330000px;}
.y89{bottom:571.095000px;}
.y46{bottom:572.595000px;}
.y72{bottom:574.095000px;}
.y21{bottom:580.845000px;}
.y88{bottom:591.375000px;}
.y45{bottom:593.625000px;}
.y71{bottom:595.125000px;}
.y20{bottom:601.875000px;}
.y9c{bottom:608.625000px;}
.y87{bottom:612.375000px;}
.y44{bottom:613.875000px;}
.y70{bottom:615.375000px;}
.y1f{bottom:622.125000px;}
.y86{bottom:633.375000px;}
.y43{bottom:634.875000px;}
.y6f{bottom:636.375000px;}
.y1e{bottom:643.125000px;}
.y85{bottom:653.625000px;}
.y42{bottom:655.905000px;}
.y6e{bottom:656.670000px;}
.y1d{bottom:664.155000px;}
.y84{bottom:674.655000px;}
.y41{bottom:676.920000px;}
.y6d{bottom:677.655000px;}
.y1c{bottom:684.405000px;}
.y83{bottom:694.905000px;}
.y40{bottom:697.905000px;}
.y6c{bottom:698.670000px;}
.y1b{bottom:705.420000px;}
.y82{bottom:715.905000px;}
.y3f{bottom:718.200000px;}
.y6b{bottom:718.950000px;}
.y1a{bottom:725.700000px;}
.y81{bottom:736.950000px;}
.y3e{bottom:739.200000px;}
.y6a{bottom:740.700000px;}
.y19{bottom:746.700000px;}
.y80{bottom:757.200000px;}
.y3d{bottom:759.450000px;}
.y69{bottom:763.950000px;}
.y18{bottom:767.700000px;}
.y7f{bottom:778.200000px;}
.y3c{bottom:780.450000px;}
.y68{bottom:784.995000px;}
.y17{bottom:787.995000px;}
.y7e{bottom:795.495000px;}
.y3b{bottom:801.495000px;}
.y67{bottom:805.245000px;}
.yb9{bottom:808.995000px;}
.y16{bottom:809.730000px;}
.y3a{bottom:821.745000px;}
.y66{bottom:826.230000px;}
.yb8{bottom:829.245000px;}
.y15{bottom:832.995000px;}
.y39{bottom:842.730000px;}
.y65{bottom:846.495000px;}
.yb7{bottom:850.275000px;}
.y14{bottom:854.025000px;}
.y38{bottom:864.525000px;}
.y64{bottom:867.525000px;}
.yb6{bottom:871.275000px;}
.y13{bottom:874.275000px;}
.y37{bottom:887.775000px;}
.y63{bottom:888.525000px;}
.yb5{bottom:891.525000px;}
.y12{bottom:894.525000px;}
.y36{bottom:908.025000px;}
.y62{bottom:908.775000px;}
.y11{bottom:912.570000px;}
.y35{bottom:929.070000px;}
.y61{bottom:929.820000px;}
.y10{bottom:932.820000px;}
.y34{bottom:949.320000px;}
.y60{bottom:950.070000px;}
.yf{bottom:953.820000px;}
.y33{bottom:970.320000px;}
.y5f{bottom:971.070000px;}
.ye{bottom:974.820000px;}
.y32{bottom:991.350000px;}
.y5e{bottom:992.100000px;}
.yd{bottom:995.100000px;}
.y31{bottom:1011.600000px;}
.y5d{bottom:1012.350000px;}
.yc{bottom:1016.100000px;}
.y30{bottom:1032.600000px;}
.y5c{bottom:1033.350000px;}
.yb4{bottom:1036.350000px;}
.yb{bottom:1038.600000px;}
.y2f{bottom:1053.630000px;}
.yb3{bottom:1057.380000px;}
.ya{bottom:1067.880000px;}
.y2e{bottom:1073.880000px;}
.y5b{bottom:1074.630000px;}
.yb2{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.y2d{bottom:1094.880000px;}
.y5a{bottom:1095.630000px;}
.yb1{bottom:1098.630000px;}
.y2c{bottom:1115.925000px;}
.yb0{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y2b{bottom:1136.925000px;}
.yaf{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y2a{bottom:1158.675000px;}
.yae{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h7{height:33.876323px;}
.h3{height:35.625000px;}
.h1{height:43.429688px;}
.h4{height:44.070184px;}
.h6{height:44.098032px;}
.hc{height:44.531250px;}
.h2{height:49.992188px;}
.h11{height:53.121094px;}
.hb{height:53.437500px;}
.hf{height:56.625000px;}
.h10{height:56.685000px;}
.he{height:60.679688px;}
.ha{height:65.144531px;}
.h5{height:66.396148px;}
.hd{height:76.001953px;}
.h8{height:80.156250px;}
.h9{height:97.716797px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x16{left:87.074987px;}
.x18{left:88.574987px;}
.x19{left:96.074987px;}
.x17{left:108.074987px;}
.x8{left:114.862487px;}
.x13{left:126.112487px;}
.x1d{left:127.612487px;}
.x6{left:131.362487px;}
.x5{left:151.604987px;}
.x7{left:170.399987px;}
.x1e{left:180.899987px;}
.x15{left:198.149987px;}
.xe{left:223.694987px;}
.xb{left:226.694987px;}
.x9{left:267.224987px;}
.x1a{left:281.474987px;}
.xf{left:336.254987px;}
.x1b{left:347.549987px;}
.xa{left:350.549987px;}
.x10{left:371.549987px;}
.x1c{left:389.594987px;}
.x11{left:397.094987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x4{left:446.624987px;}
.x14{left:661.274987px;}
.x12{left:807.674987px;}
.xd{left:820.424987px;}
@media print{
.v6{vertical-align:-18.666667pt;}
.v1{vertical-align:-10.666667pt;}
.v2{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v4{vertical-align:18.666667pt;}
.v5{vertical-align:26.666667pt;}
.ls17{letter-spacing:-2.645333pt;}
.ls19{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-0.917333pt;}
.lsb{letter-spacing:-0.874667pt;}
.ls9{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.021333pt;}
.ls1a{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.277333pt;}
.ls13{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.410667pt;}
.ls11{letter-spacing:0.437333pt;}
.ls4{letter-spacing:0.565333pt;}
.ls10{letter-spacing:0.618667pt;}
.ls6{letter-spacing:0.832000pt;}
.ls8{letter-spacing:0.874667pt;}
.ls14{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls5{letter-spacing:1.194667pt;}
.lsf{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.792000pt;}
.ls12{letter-spacing:2.944000pt;}
.ls15{letter-spacing:3.104000pt;}
.lse{letter-spacing:3.541333pt;}
.ls0{letter-spacing:148.272000pt;}
.ls3{letter-spacing:433.792000pt;}
.ws4{word-spacing:-26.709333pt;}
.ws3{word-spacing:-26.656000pt;}
.ws8{word-spacing:-19.541333pt;}
.wsd{word-spacing:-18.688000pt;}
.wsa{word-spacing:-18.666667pt;}
.ws7{word-spacing:-17.813333pt;}
.wsb{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.770667pt;}
.ws6{word-spacing:-16.917333pt;}
.wsc{word-spacing:-16.874667pt;}
.ws5{word-spacing:-14.826667pt;}
.wse{word-spacing:-13.056000pt;}
.ws2{word-spacing:-12.736000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-4.885333pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._b{width:3.877333pt;}
._7{width:5.034667pt;}
._a{width:6.074667pt;}
._e{width:7.242667pt;}
._c{width:8.810667pt;}
._d{width:9.765333pt;}
._8{width:11.392000pt;}
._9{width:12.293333pt;}
._12{width:13.877333pt;}
._13{width:14.896000pt;}
._11{width:16.768000pt;}
._10{width:19.029333pt;}
._f{width:20.186667pt;}
._26{width:22.272000pt;}
._1a{width:24.256000pt;}
._1d{width:25.541333pt;}
._1b{width:27.285333pt;}
._1c{width:28.208000pt;}
._14{width:29.856000pt;}
._15{width:30.938667pt;}
._17{width:32.805333pt;}
._18{width:33.829333pt;}
._19{width:35.456000pt;}
._1f{width:36.789333pt;}
._1e{width:37.840000pt;}
._25{width:40.410667pt;}
._23{width:41.392000pt;}
._24{width:43.104000pt;}
._22{width:50.805333pt;}
._21{width:51.856000pt;}
._20{width:63.173333pt;}
._4{width:452.432000pt;}
._6{width:1042.549333pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs6{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y59{bottom:110.733333pt;}
.yc8{bottom:112.066667pt;}
.y29{bottom:122.733333pt;}
.y7d{bottom:128.100000pt;}
.yc7{bottom:130.100000pt;}
.yad{bottom:132.766667pt;}
.y28{bottom:138.093333pt;}
.y58{bottom:145.440000pt;}
.y7c{bottom:146.773333pt;}
.yac{bottom:151.440000pt;}
.y7b{bottom:161.440000pt;}
.y57{bottom:164.106667pt;}
.yc6{bottom:164.773333pt;}
.yab{bottom:169.440000pt;}
.y9b{bottom:176.106667pt;}
.y56{bottom:182.133333pt;}
.yc5{bottom:183.466667pt;}
.yaa{bottom:188.133333pt;}
.y9a{bottom:194.800000pt;}
.yc4{bottom:203.466667pt;}
.ya9{bottom:206.800000pt;}
.y99{bottom:212.800000pt;}
.y55{bottom:216.800000pt;}
.yc3{bottom:222.133333pt;}
.ya8{bottom:225.466667pt;}
.y98{bottom:231.466667pt;}
.y54{bottom:235.466667pt;}
.yc2{bottom:240.173333pt;}
.ya7{bottom:246.173333pt;}
.y97{bottom:249.506667pt;}
.y53{bottom:253.506667pt;}
.yc1{bottom:258.840000pt;}
.ya6{bottom:264.840000pt;}
.y96{bottom:268.173333pt;}
.y52{bottom:272.173333pt;}
.yc0{bottom:276.840000pt;}
.ya5{bottom:283.506667pt;}
.y95{bottom:286.840000pt;}
.y51{bottom:290.173333pt;}
.ybf{bottom:295.533333pt;}
.ya4{bottom:301.533333pt;}
.y94{bottom:304.866667pt;}
.y50{bottom:308.866667pt;}
.ybe{bottom:314.200000pt;}
.ya3{bottom:320.200000pt;}
.y93{bottom:323.533333pt;}
.y4f{bottom:327.533333pt;}
.ybd{bottom:332.200000pt;}
.ya2{bottom:338.200000pt;}
.y92{bottom:341.533333pt;}
.y4e{bottom:345.533333pt;}
.ybc{bottom:350.866667pt;}
.ya1{bottom:357.560000pt;}
.y91{bottom:360.226667pt;}
.y7a{bottom:362.893333pt;}
.y4d{bottom:364.226667pt;}
.ybb{bottom:368.893333pt;}
.ya0{bottom:378.226667pt;}
.y90{bottom:378.893333pt;}
.y79{bottom:381.560000pt;}
.y4c{bottom:382.226667pt;}
.yba{bottom:387.560000pt;}
.y8f{bottom:396.893333pt;}
.y78{bottom:399.560000pt;}
.y4b{bottom:400.893333pt;}
.y27{bottom:406.226667pt;}
.y9f{bottom:414.933333pt;}
.y8e{bottom:415.600000pt;}
.y77{bottom:418.266667pt;}
.y4a{bottom:419.600000pt;}
.y26{bottom:424.266667pt;}
.y8d{bottom:433.600000pt;}
.y76{bottom:436.933333pt;}
.y49{bottom:437.600000pt;}
.y25{bottom:442.933333pt;}
.y8c{bottom:452.266667pt;}
.y75{bottom:454.933333pt;}
.y24{bottom:460.933333pt;}
.y9e{bottom:470.306667pt;}
.y8b{bottom:470.960000pt;}
.y48{bottom:471.640000pt;}
.y74{bottom:473.626667pt;}
.y23{bottom:479.626667pt;}
.y8a{bottom:488.960000pt;}
.y47{bottom:490.293333pt;}
.y73{bottom:491.626667pt;}
.y22{bottom:498.306667pt;}
.y9d{bottom:506.960000pt;}
.y89{bottom:507.640000pt;}
.y46{bottom:508.973333pt;}
.y72{bottom:510.306667pt;}
.y21{bottom:516.306667pt;}
.y88{bottom:525.666667pt;}
.y45{bottom:527.666667pt;}
.y71{bottom:529.000000pt;}
.y20{bottom:535.000000pt;}
.y9c{bottom:541.000000pt;}
.y87{bottom:544.333333pt;}
.y44{bottom:545.666667pt;}
.y70{bottom:547.000000pt;}
.y1f{bottom:553.000000pt;}
.y86{bottom:563.000000pt;}
.y43{bottom:564.333333pt;}
.y6f{bottom:565.666667pt;}
.y1e{bottom:571.666667pt;}
.y85{bottom:581.000000pt;}
.y42{bottom:583.026667pt;}
.y6e{bottom:583.706667pt;}
.y1d{bottom:590.360000pt;}
.y84{bottom:599.693333pt;}
.y41{bottom:601.706667pt;}
.y6d{bottom:602.360000pt;}
.y1c{bottom:608.360000pt;}
.y83{bottom:617.693333pt;}
.y40{bottom:620.360000pt;}
.y6c{bottom:621.040000pt;}
.y1b{bottom:627.040000pt;}
.y82{bottom:636.360000pt;}
.y3f{bottom:638.400000pt;}
.y6b{bottom:639.066667pt;}
.y1a{bottom:645.066667pt;}
.y81{bottom:655.066667pt;}
.y3e{bottom:657.066667pt;}
.y6a{bottom:658.400000pt;}
.y19{bottom:663.733333pt;}
.y80{bottom:673.066667pt;}
.y3d{bottom:675.066667pt;}
.y69{bottom:679.066667pt;}
.y18{bottom:682.400000pt;}
.y7f{bottom:691.733333pt;}
.y3c{bottom:693.733333pt;}
.y68{bottom:697.773333pt;}
.y17{bottom:700.440000pt;}
.y7e{bottom:707.106667pt;}
.y3b{bottom:712.440000pt;}
.y67{bottom:715.773333pt;}
.yb9{bottom:719.106667pt;}
.y16{bottom:719.760000pt;}
.y3a{bottom:730.440000pt;}
.y66{bottom:734.426667pt;}
.yb8{bottom:737.106667pt;}
.y15{bottom:740.440000pt;}
.y39{bottom:749.093333pt;}
.y65{bottom:752.440000pt;}
.yb7{bottom:755.800000pt;}
.y14{bottom:759.133333pt;}
.y38{bottom:768.466667pt;}
.y64{bottom:771.133333pt;}
.yb6{bottom:774.466667pt;}
.y13{bottom:777.133333pt;}
.y37{bottom:789.133333pt;}
.y63{bottom:789.800000pt;}
.yb5{bottom:792.466667pt;}
.y12{bottom:795.133333pt;}
.y36{bottom:807.133333pt;}
.y62{bottom:807.800000pt;}
.y11{bottom:811.173333pt;}
.y35{bottom:825.840000pt;}
.y61{bottom:826.506667pt;}
.y10{bottom:829.173333pt;}
.y34{bottom:843.840000pt;}
.y60{bottom:844.506667pt;}
.yf{bottom:847.840000pt;}
.y33{bottom:862.506667pt;}
.y5f{bottom:863.173333pt;}
.ye{bottom:866.506667pt;}
.y32{bottom:881.200000pt;}
.y5e{bottom:881.866667pt;}
.yd{bottom:884.533333pt;}
.y31{bottom:899.200000pt;}
.y5d{bottom:899.866667pt;}
.yc{bottom:903.200000pt;}
.y30{bottom:917.866667pt;}
.y5c{bottom:918.533333pt;}
.yb4{bottom:921.200000pt;}
.yb{bottom:923.200000pt;}
.y2f{bottom:936.560000pt;}
.yb3{bottom:939.893333pt;}
.ya{bottom:949.226667pt;}
.y2e{bottom:954.560000pt;}
.y5b{bottom:955.226667pt;}
.yb2{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.y2d{bottom:973.226667pt;}
.y5a{bottom:973.893333pt;}
.yb1{bottom:976.560000pt;}
.y2c{bottom:991.933333pt;}
.yb0{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y2b{bottom:1010.600000pt;}
.yaf{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y2a{bottom:1029.933333pt;}
.yae{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h7{height:30.112287pt;}
.h3{height:31.666667pt;}
.h1{height:38.604167pt;}
.h4{height:39.173497pt;}
.h6{height:39.198251pt;}
.hc{height:39.583333pt;}
.h2{height:44.437500pt;}
.h11{height:47.218750pt;}
.hb{height:47.500000pt;}
.hf{height:50.333333pt;}
.h10{height:50.386667pt;}
.he{height:53.937500pt;}
.ha{height:57.906250pt;}
.h5{height:59.018798pt;}
.hd{height:67.557292pt;}
.h8{height:71.250000pt;}
.h9{height:86.859375pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x16{left:77.399988pt;}
.x18{left:78.733322pt;}
.x19{left:85.399988pt;}
.x17{left:96.066655pt;}
.x8{left:102.099988pt;}
.x13{left:112.099988pt;}
.x1d{left:113.433322pt;}
.x6{left:116.766655pt;}
.x5{left:134.759988pt;}
.x7{left:151.466655pt;}
.x1e{left:160.799988pt;}
.x15{left:176.133322pt;}
.xe{left:198.839988pt;}
.xb{left:201.506655pt;}
.x9{left:237.533322pt;}
.x1a{left:250.199988pt;}
.xf{left:298.893322pt;}
.x1b{left:308.933322pt;}
.xa{left:311.599988pt;}
.x10{left:330.266655pt;}
.x1c{left:346.306655pt;}
.x11{left:352.973322pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x4{left:396.999988pt;}
.x14{left:587.799988pt;}
.x12{left:717.933322pt;}
.xd{left:729.266655pt;}
}




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