
    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_88dee3af83d00202d32db524.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_52b1f1937c658af90ce03823.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_935c7273780b0a5758e34851.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d321b310772af4f001aad708.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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);}
.v1{vertical-align:-63.018000px;}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-0.918000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls1f{letter-spacing:-0.816000px;}
.ls26{letter-spacing:-0.810000px;}
.ls29{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.378000px;}
.ls28{letter-spacing:-0.270000px;}
.ls27{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls2e{letter-spacing:-0.060000px;}
.ls15{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.048000px;}
.ls14{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.486000px;}
.lsa{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.594000px;}
.ls2{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.756000px;}
.ls9{letter-spacing:0.810000px;}
.ls11{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.918000px;}
.lsf{letter-spacing:0.972000px;}
.ls7{letter-spacing:1.026000px;}
.lsd{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.134000px;}
.lse{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.242000px;}
.ls16{letter-spacing:1.296000px;}
.ls17{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.404000px;}
.ls6{letter-spacing:1.566000px;}
.ls21{letter-spacing:1.620000px;}
.ls13{letter-spacing:1.836000px;}
.ls5{letter-spacing:2.052000px;}
.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:-15.000000px;}
.ws3c{word-spacing:-14.940000px;}
.ws35{word-spacing:-14.904000px;}
.ws3a{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.418000px;}
.ws0{word-spacing:-14.310000px;}
.ws2d{word-spacing:-14.148000px;}
.ws2c{word-spacing:-14.094000px;}
.ws38{word-spacing:-14.040000px;}
.ws37{word-spacing:-13.986000px;}
.ws33{word-spacing:-13.932000px;}
.ws2a{word-spacing:-13.878000px;}
.ws32{word-spacing:-13.716000px;}
.ws31{word-spacing:-13.608000px;}
.ws30{word-spacing:-13.554000px;}
.ws2b{word-spacing:-13.500000px;}
.ws2e{word-spacing:-13.446000px;}
.ws28{word-spacing:-13.338000px;}
.ws2f{word-spacing:-13.284000px;}
.ws39{word-spacing:-13.122000px;}
.ws36{word-spacing:-13.068000px;}
.ws27{word-spacing:-13.014000px;}
.ws34{word-spacing:-12.852000px;}
.ws2{word-spacing:-11.250000px;}
.ws26{word-spacing:-8.016000px;}
.ws12{word-spacing:-0.648000px;}
.ws42{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.486000px;}
.wsb{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.324000px;}
.ws8{word-spacing:-0.270000px;}
.wsd{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.162000px;}
.ws6{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.054000px;}
.ws43{word-spacing:0.108000px;}
.ws1a{word-spacing:0.162000px;}
.ws1f{word-spacing:0.216000px;}
.ws22{word-spacing:0.270000px;}
.ws1b{word-spacing:0.324000px;}
.ws17{word-spacing:0.378000px;}
.ws10{word-spacing:0.432000px;}
.ws1d{word-spacing:0.486000px;}
.ws1e{word-spacing:0.540000px;}
.wsc{word-spacing:0.594000px;}
.ws41{word-spacing:0.648000px;}
.wsa{word-spacing:0.702000px;}
.ws9{word-spacing:0.756000px;}
.ws18{word-spacing:0.810000px;}
.ws7{word-spacing:0.864000px;}
.ws46{word-spacing:0.918000px;}
.ws16{word-spacing:0.972000px;}
.ws11{word-spacing:1.026000px;}
.ws23{word-spacing:1.080000px;}
.ws15{word-spacing:1.134000px;}
.ws21{word-spacing:1.188000px;}
.ws13{word-spacing:1.242000px;}
.ws1c{word-spacing:1.296000px;}
.ws5{word-spacing:1.350000px;}
.ws25{word-spacing:1.500000px;}
.ws47{word-spacing:2.214000px;}
.wse{word-spacing:2.862000px;}
.ws44{word-spacing:2.970000px;}
.ws3f{word-spacing:3.564000px;}
.ws3e{word-spacing:3.618000px;}
.ws45{word-spacing:4.590000px;}
.ws3d{word-spacing:5.205000px;}
.ws48{word-spacing:8.802000px;}
.ws24{word-spacing:14.526000px;}
.ws40{word-spacing:15.390000px;}
.ws3b{word-spacing:36.000000px;}
._2{margin-left:-5.886000px;}
._4{margin-left:-3.780000px;}
._0{margin-left:-1.680000px;}
._3{width:1.242000px;}
._6{width:2.538000px;}
._5{width:11.880000px;}
._1{width:47.244000px;}
._7{width:1238.640000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:56.856000px;}
.y57{bottom:56.950500px;}
.y20{bottom:57.784500px;}
.y3d{bottom:57.856500px;}
.y6c{bottom:72.610500px;}
.y56{bottom:72.705000px;}
.y1f{bottom:73.539000px;}
.y3c{bottom:73.611000px;}
.y6b{bottom:88.365000px;}
.y55{bottom:88.459500px;}
.y1e{bottom:89.293500px;}
.y3b{bottom:89.365500px;}
.y6a{bottom:104.119500px;}
.y54{bottom:104.214000px;}
.y1d{bottom:105.048000px;}
.y3a{bottom:105.120000px;}
.y69{bottom:119.874000px;}
.y53{bottom:119.968500px;}
.y1c{bottom:120.802500px;}
.y39{bottom:120.874500px;}
.y68{bottom:135.628500px;}
.y52{bottom:135.723000px;}
.y1b{bottom:136.557000px;}
.y38{bottom:136.629000px;}
.y67{bottom:151.383000px;}
.y51{bottom:151.477500px;}
.y1a{bottom:152.311500px;}
.y37{bottom:152.383500px;}
.y66{bottom:167.137500px;}
.y50{bottom:167.232000px;}
.y19{bottom:168.066000px;}
.y36{bottom:168.138000px;}
.y65{bottom:182.892000px;}
.y4f{bottom:182.986500px;}
.y18{bottom:183.820500px;}
.y35{bottom:183.892500px;}
.y64{bottom:198.646500px;}
.y4e{bottom:198.741000px;}
.y17{bottom:199.575000px;}
.y34{bottom:199.647000px;}
.y63{bottom:214.401000px;}
.y4d{bottom:214.495500px;}
.y16{bottom:215.329500px;}
.y33{bottom:215.401500px;}
.y62{bottom:230.155500px;}
.y4c{bottom:230.250000px;}
.y15{bottom:231.084000px;}
.y32{bottom:231.156000px;}
.y61{bottom:245.910000px;}
.y4b{bottom:246.004500px;}
.y14{bottom:246.838500px;}
.y31{bottom:246.910500px;}
.y60{bottom:261.664500px;}
.y4a{bottom:261.759000px;}
.y13{bottom:262.593000px;}
.y5f{bottom:277.419000px;}
.y49{bottom:277.513500px;}
.y30{bottom:278.212500px;}
.y12{bottom:278.347500px;}
.y5e{bottom:293.173500px;}
.y48{bottom:293.268000px;}
.y2f{bottom:293.967000px;}
.y11{bottom:294.102000px;}
.y5d{bottom:308.928000px;}
.y47{bottom:309.022500px;}
.y2e{bottom:309.721500px;}
.y10{bottom:309.856500px;}
.y5c{bottom:324.682500px;}
.y46{bottom:324.777000px;}
.y2d{bottom:325.476000px;}
.yf{bottom:325.611000px;}
.y5b{bottom:340.437000px;}
.y45{bottom:340.531500px;}
.y2c{bottom:341.230500px;}
.ye{bottom:341.365500px;}
.y5a{bottom:356.191500px;}
.y44{bottom:356.286000px;}
.y2b{bottom:356.985000px;}
.yd{bottom:357.120000px;}
.y59{bottom:371.946000px;}
.y43{bottom:372.040500px;}
.y2a{bottom:372.739500px;}
.yc{bottom:372.874500px;}
.y58{bottom:387.700500px;}
.y42{bottom:387.795000px;}
.y29{bottom:388.494000px;}
.yb{bottom:388.629000px;}
.y28{bottom:404.248500px;}
.ya{bottom:404.383500px;}
.y27{bottom:420.003000px;}
.y9{bottom:420.138000px;}
.y90{bottom:431.955000px;}
.y26{bottom:435.757500px;}
.y8{bottom:435.892500px;}
.y8f{bottom:449.205000px;}
.y25{bottom:451.512000px;}
.y7{bottom:451.647000px;}
.y8e{bottom:466.455000px;}
.y24{bottom:467.266500px;}
.y6{bottom:467.401500px;}
.y23{bottom:483.021000px;}
.y5{bottom:483.156000px;}
.y8d{bottom:483.705000px;}
.y22{bottom:498.775500px;}
.y4{bottom:498.910500px;}
.y8c{bottom:500.955000px;}
.y21{bottom:514.530000px;}
.y3{bottom:514.665000px;}
.y8b{bottom:518.205000px;}
.y40{bottom:548.385000px;}
.y3f{bottom:565.635000px;}
.y3e{bottom:582.885000px;}
.y8a{bottom:593.076000px;}
.y7c{bottom:593.130000px;}
.y89{bottom:608.830500px;}
.y7b{bottom:608.884500px;}
.y7a{bottom:624.639000px;}
.y88{bottom:640.326000px;}
.y79{bottom:640.393500px;}
.y87{bottom:656.080500px;}
.y78{bottom:656.148000px;}
.y86{bottom:671.835000px;}
.y77{bottom:671.902500px;}
.y85{bottom:687.589500px;}
.y76{bottom:687.657000px;}
.y84{bottom:703.344000px;}
.y75{bottom:703.411500px;}
.y83{bottom:719.098500px;}
.y74{bottom:719.166000px;}
.y82{bottom:734.853000px;}
.y73{bottom:734.920500px;}
.y81{bottom:750.607500px;}
.y72{bottom:750.675000px;}
.y80{bottom:766.362000px;}
.y71{bottom:766.429500px;}
.y7f{bottom:782.116500px;}
.y70{bottom:782.184000px;}
.y7e{bottom:797.871000px;}
.y6f{bottom:797.938500px;}
.y2{bottom:807.345000px;}
.y7d{bottom:813.625500px;}
.y6e{bottom:813.693000px;}
.y1{bottom:861.345000px;}
.y41{bottom:924.000000px;}
.h5{height:47.085938px;}
.h1{height:48.375000px;}
.h6{height:52.971680px;}
.h3{height:52.998047px;}
.h7{height:58.857422px;}
.h4{height:58.886719px;}
.h2{height:94.218750px;}
.h0{height:892.500000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x7{left:4.500000px;}
.x3{left:74.700000px;}
.x8{left:75.915000px;}
.x4{left:90.454500px;}
.x9{left:91.710000px;}
.x2{left:250.365000px;}
.x5{left:328.945500px;}
.xb{left:330.268500px;}
.x6{left:344.700000px;}
.xa{left:346.009500px;}
.x1{left:412.380000px;}
.xd{left:428.386500px;}
.xc{left:494.712000px;}
@media print{
.v1{vertical-align:-56.016000pt;}
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-0.816000pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls1f{letter-spacing:-0.725333pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls29{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.336000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.432000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.672000pt;}
.ls9{letter-spacing:0.720000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.816000pt;}
.lsf{letter-spacing:0.864000pt;}
.ls7{letter-spacing:0.912000pt;}
.lsd{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.008000pt;}
.lse{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.104000pt;}
.ls16{letter-spacing:1.152000pt;}
.ls17{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.248000pt;}
.ls6{letter-spacing:1.392000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.632000pt;}
.ls5{letter-spacing:1.824000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3c{word-spacing:-13.280000pt;}
.ws35{word-spacing:-13.248000pt;}
.ws3a{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.816000pt;}
.ws0{word-spacing:-12.720000pt;}
.ws2d{word-spacing:-12.576000pt;}
.ws2c{word-spacing:-12.528000pt;}
.ws38{word-spacing:-12.480000pt;}
.ws37{word-spacing:-12.432000pt;}
.ws33{word-spacing:-12.384000pt;}
.ws2a{word-spacing:-12.336000pt;}
.ws32{word-spacing:-12.192000pt;}
.ws31{word-spacing:-12.096000pt;}
.ws30{word-spacing:-12.048000pt;}
.ws2b{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-11.952000pt;}
.ws28{word-spacing:-11.856000pt;}
.ws2f{word-spacing:-11.808000pt;}
.ws39{word-spacing:-11.664000pt;}
.ws36{word-spacing:-11.616000pt;}
.ws27{word-spacing:-11.568000pt;}
.ws34{word-spacing:-11.424000pt;}
.ws2{word-spacing:-10.000000pt;}
.ws26{word-spacing:-7.125333pt;}
.ws12{word-spacing:-0.576000pt;}
.ws42{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.432000pt;}
.wsb{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.288000pt;}
.ws8{word-spacing:-0.240000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.144000pt;}
.ws6{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.048000pt;}
.ws43{word-spacing:0.096000pt;}
.ws1a{word-spacing:0.144000pt;}
.ws1f{word-spacing:0.192000pt;}
.ws22{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.288000pt;}
.ws17{word-spacing:0.336000pt;}
.ws10{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.432000pt;}
.ws1e{word-spacing:0.480000pt;}
.wsc{word-spacing:0.528000pt;}
.ws41{word-spacing:0.576000pt;}
.wsa{word-spacing:0.624000pt;}
.ws9{word-spacing:0.672000pt;}
.ws18{word-spacing:0.720000pt;}
.ws7{word-spacing:0.768000pt;}
.ws46{word-spacing:0.816000pt;}
.ws16{word-spacing:0.864000pt;}
.ws11{word-spacing:0.912000pt;}
.ws23{word-spacing:0.960000pt;}
.ws15{word-spacing:1.008000pt;}
.ws21{word-spacing:1.056000pt;}
.ws13{word-spacing:1.104000pt;}
.ws1c{word-spacing:1.152000pt;}
.ws5{word-spacing:1.200000pt;}
.ws25{word-spacing:1.333333pt;}
.ws47{word-spacing:1.968000pt;}
.wse{word-spacing:2.544000pt;}
.ws44{word-spacing:2.640000pt;}
.ws3f{word-spacing:3.168000pt;}
.ws3e{word-spacing:3.216000pt;}
.ws45{word-spacing:4.080000pt;}
.ws3d{word-spacing:4.626667pt;}
.ws48{word-spacing:7.824000pt;}
.ws24{word-spacing:12.912000pt;}
.ws40{word-spacing:13.680000pt;}
.ws3b{word-spacing:32.000000pt;}
._2{margin-left:-5.232000pt;}
._4{margin-left:-3.360000pt;}
._0{margin-left:-1.493333pt;}
._3{width:1.104000pt;}
._6{width:2.256000pt;}
._5{width:10.560000pt;}
._1{width:41.994667pt;}
._7{width:1101.013333pt;}
.fs4{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:50.538667pt;}
.y57{bottom:50.622667pt;}
.y20{bottom:51.364000pt;}
.y3d{bottom:51.428000pt;}
.y6c{bottom:64.542667pt;}
.y56{bottom:64.626667pt;}
.y1f{bottom:65.368000pt;}
.y3c{bottom:65.432000pt;}
.y6b{bottom:78.546667pt;}
.y55{bottom:78.630667pt;}
.y1e{bottom:79.372000pt;}
.y3b{bottom:79.436000pt;}
.y6a{bottom:92.550667pt;}
.y54{bottom:92.634667pt;}
.y1d{bottom:93.376000pt;}
.y3a{bottom:93.440000pt;}
.y69{bottom:106.554667pt;}
.y53{bottom:106.638667pt;}
.y1c{bottom:107.380000pt;}
.y39{bottom:107.444000pt;}
.y68{bottom:120.558667pt;}
.y52{bottom:120.642667pt;}
.y1b{bottom:121.384000pt;}
.y38{bottom:121.448000pt;}
.y67{bottom:134.562667pt;}
.y51{bottom:134.646667pt;}
.y1a{bottom:135.388000pt;}
.y37{bottom:135.452000pt;}
.y66{bottom:148.566667pt;}
.y50{bottom:148.650667pt;}
.y19{bottom:149.392000pt;}
.y36{bottom:149.456000pt;}
.y65{bottom:162.570667pt;}
.y4f{bottom:162.654667pt;}
.y18{bottom:163.396000pt;}
.y35{bottom:163.460000pt;}
.y64{bottom:176.574667pt;}
.y4e{bottom:176.658667pt;}
.y17{bottom:177.400000pt;}
.y34{bottom:177.464000pt;}
.y63{bottom:190.578667pt;}
.y4d{bottom:190.662667pt;}
.y16{bottom:191.404000pt;}
.y33{bottom:191.468000pt;}
.y62{bottom:204.582667pt;}
.y4c{bottom:204.666667pt;}
.y15{bottom:205.408000pt;}
.y32{bottom:205.472000pt;}
.y61{bottom:218.586667pt;}
.y4b{bottom:218.670667pt;}
.y14{bottom:219.412000pt;}
.y31{bottom:219.476000pt;}
.y60{bottom:232.590667pt;}
.y4a{bottom:232.674667pt;}
.y13{bottom:233.416000pt;}
.y5f{bottom:246.594667pt;}
.y49{bottom:246.678667pt;}
.y30{bottom:247.300000pt;}
.y12{bottom:247.420000pt;}
.y5e{bottom:260.598667pt;}
.y48{bottom:260.682667pt;}
.y2f{bottom:261.304000pt;}
.y11{bottom:261.424000pt;}
.y5d{bottom:274.602667pt;}
.y47{bottom:274.686667pt;}
.y2e{bottom:275.308000pt;}
.y10{bottom:275.428000pt;}
.y5c{bottom:288.606667pt;}
.y46{bottom:288.690667pt;}
.y2d{bottom:289.312000pt;}
.yf{bottom:289.432000pt;}
.y5b{bottom:302.610667pt;}
.y45{bottom:302.694667pt;}
.y2c{bottom:303.316000pt;}
.ye{bottom:303.436000pt;}
.y5a{bottom:316.614667pt;}
.y44{bottom:316.698667pt;}
.y2b{bottom:317.320000pt;}
.yd{bottom:317.440000pt;}
.y59{bottom:330.618667pt;}
.y43{bottom:330.702667pt;}
.y2a{bottom:331.324000pt;}
.yc{bottom:331.444000pt;}
.y58{bottom:344.622667pt;}
.y42{bottom:344.706667pt;}
.y29{bottom:345.328000pt;}
.yb{bottom:345.448000pt;}
.y28{bottom:359.332000pt;}
.ya{bottom:359.452000pt;}
.y27{bottom:373.336000pt;}
.y9{bottom:373.456000pt;}
.y90{bottom:383.960000pt;}
.y26{bottom:387.340000pt;}
.y8{bottom:387.460000pt;}
.y8f{bottom:399.293333pt;}
.y25{bottom:401.344000pt;}
.y7{bottom:401.464000pt;}
.y8e{bottom:414.626667pt;}
.y24{bottom:415.348000pt;}
.y6{bottom:415.468000pt;}
.y23{bottom:429.352000pt;}
.y5{bottom:429.472000pt;}
.y8d{bottom:429.960000pt;}
.y22{bottom:443.356000pt;}
.y4{bottom:443.476000pt;}
.y8c{bottom:445.293333pt;}
.y21{bottom:457.360000pt;}
.y3{bottom:457.480000pt;}
.y8b{bottom:460.626667pt;}
.y40{bottom:487.453333pt;}
.y3f{bottom:502.786667pt;}
.y3e{bottom:518.120000pt;}
.y8a{bottom:527.178667pt;}
.y7c{bottom:527.226667pt;}
.y89{bottom:541.182667pt;}
.y7b{bottom:541.230667pt;}
.y7a{bottom:555.234667pt;}
.y88{bottom:569.178667pt;}
.y79{bottom:569.238667pt;}
.y87{bottom:583.182667pt;}
.y78{bottom:583.242667pt;}
.y86{bottom:597.186667pt;}
.y77{bottom:597.246667pt;}
.y85{bottom:611.190667pt;}
.y76{bottom:611.250667pt;}
.y84{bottom:625.194667pt;}
.y75{bottom:625.254667pt;}
.y83{bottom:639.198667pt;}
.y74{bottom:639.258667pt;}
.y82{bottom:653.202667pt;}
.y73{bottom:653.262667pt;}
.y81{bottom:667.206667pt;}
.y72{bottom:667.266667pt;}
.y80{bottom:681.210667pt;}
.y71{bottom:681.270667pt;}
.y7f{bottom:695.214667pt;}
.y70{bottom:695.274667pt;}
.y7e{bottom:709.218667pt;}
.y6f{bottom:709.278667pt;}
.y2{bottom:717.640000pt;}
.y7d{bottom:723.222667pt;}
.y6e{bottom:723.282667pt;}
.y1{bottom:765.640000pt;}
.y41{bottom:821.333333pt;}
.h5{height:41.854167pt;}
.h1{height:43.000000pt;}
.h6{height:47.085938pt;}
.h3{height:47.109375pt;}
.h7{height:52.317708pt;}
.h4{height:52.343750pt;}
.h2{height:83.750000pt;}
.h0{height:793.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x7{left:4.000000pt;}
.x3{left:66.400000pt;}
.x8{left:67.480000pt;}
.x4{left:80.404000pt;}
.x9{left:81.520000pt;}
.x2{left:222.546667pt;}
.x5{left:292.396000pt;}
.xb{left:293.572000pt;}
.x6{left:306.400000pt;}
.xa{left:307.564000pt;}
.x1{left:366.560000pt;}
.xd{left:380.788000pt;}
.xc{left:439.744000pt;}
}




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