
    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_956af6016069bad44b8b6a24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aa6f27dd31b4630801a03d39.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8d1415b4b909aa0f940cfe65.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117676;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_aafe155cd50dc38844d60d2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121582;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_e185b71f76939919c4a725f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.886719;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_933c24ebc52c35ecabb8d821.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888672;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_6792634d9bf19f7623d94cfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-3.630000px;}
.ls9{letter-spacing:-1.728000px;}
.ls5{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.368000px;}
.ls3{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-1.296000px;}
.lsa{letter-spacing:-1.224000px;}
.ls6{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.576000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.864000px;}
.ls2{letter-spacing:15.180000px;}
.ls1{letter-spacing:16.500000px;}
.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;}
}
.ws35{word-spacing:-18.000000px;}
.wse{word-spacing:-16.962000px;}
.ws36{word-spacing:-16.776000px;}
.ws2b{word-spacing:-16.434000px;}
.wsb{word-spacing:-16.368000px;}
.ws2a{word-spacing:-16.302000px;}
.ws24{word-spacing:-16.170000px;}
.ws32{word-spacing:-16.104000px;}
.ws30{word-spacing:-16.038000px;}
.ws2f{word-spacing:-15.906000px;}
.ws1e{word-spacing:-15.840000px;}
.ws2d{word-spacing:-14.718000px;}
.ws29{word-spacing:-14.652000px;}
.ws3{word-spacing:-14.586000px;}
.wsa{word-spacing:-14.520000px;}
.ws1c{word-spacing:-14.124000px;}
.ws25{word-spacing:-12.540000px;}
.ws20{word-spacing:-12.276000px;}
.ws33{word-spacing:-12.210000px;}
.ws2c{word-spacing:-12.144000px;}
.ws27{word-spacing:-10.824000px;}
.ws10{word-spacing:-10.626000px;}
.ws21{word-spacing:-10.560000px;}
.ws23{word-spacing:-8.778000px;}
.ws22{word-spacing:-8.646000px;}
.ws12{word-spacing:-8.514000px;}
.ws8{word-spacing:-7.260000px;}
.ws15{word-spacing:-7.194000px;}
.ws31{word-spacing:-6.930000px;}
.ws1d{word-spacing:-6.864000px;}
.ws1f{word-spacing:-6.732000px;}
.ws7{word-spacing:-5.412000px;}
.wsc{word-spacing:-5.346000px;}
.wsf{word-spacing:-5.280000px;}
.ws1a{word-spacing:-5.214000px;}
.ws4{word-spacing:-5.148000px;}
.ws14{word-spacing:-5.016000px;}
.ws34{word-spacing:-4.884000px;}
.ws9{word-spacing:-4.818000px;}
.wsd{word-spacing:-3.432000px;}
.ws19{word-spacing:-3.366000px;}
.ws13{word-spacing:-3.234000px;}
.ws11{word-spacing:-3.102000px;}
.ws40{word-spacing:-2.736000px;}
.ws3f{word-spacing:-2.664000px;}
.ws37{word-spacing:-2.160000px;}
.ws6{word-spacing:-1.650000px;}
.ws1b{word-spacing:-1.518000px;}
.ws38{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.386000px;}
.ws28{word-spacing:-1.320000px;}
.ws26{word-spacing:-1.188000px;}
.ws1{word-spacing:-1.122000px;}
.ws16{word-spacing:-1.056000px;}
.ws4a{word-spacing:-0.864000px;}
.ws4c{word-spacing:-0.792000px;}
.ws3a{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.648000px;}
.ws47{word-spacing:-0.576000px;}
.ws3d{word-spacing:-0.432000px;}
.ws41{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.288000px;}
.ws42{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.576000px;}
.ws44{word-spacing:0.792000px;}
.ws46{word-spacing:0.936000px;}
.ws45{word-spacing:1.224000px;}
.ws3b{word-spacing:1.296000px;}
.ws18{word-spacing:1.320000px;}
.ws3e{word-spacing:1.368000px;}
.ws3c{word-spacing:1.440000px;}
.ws43{word-spacing:1.512000px;}
.ws39{word-spacing:1.800000px;}
.ws2e{word-spacing:12.210000px;}
.ws2{word-spacing:14.652000px;}
.ws5{word-spacing:16.500000px;}
._7{margin-left:-33.000000px;}
._b{margin-left:-19.317600px;}
._5{margin-left:-16.519800px;}
._2{margin-left:-10.239600px;}
._1{margin-left:-5.119800px;}
._0{margin-left:-2.511600px;}
._3{margin-left:-1.171800px;}
._6{width:1.375200px;}
._a{width:2.511600px;}
._8{width:3.554400px;}
._4{width:14.652000px;}
._9{width:17.820000px;}
.fc4{color:rgb(101,98,99);}
.fc3{color:rgb(0,171,196);}
.fc2{color:rgb(64,164,174);}
.fc1{color:rgb(0,131,151);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:52.290000px;}
.fs0{font-size:52.500000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:138.000000px;}
.fs6{font-size:755.626200px;}
.y0{bottom:0.000000px;}
.y41{bottom:121.770900px;}
.y40{bottom:147.263400px;}
.y21{bottom:157.386000px;}
.yb{bottom:170.956050px;}
.y3f{bottom:172.755900px;}
.y20{bottom:182.878500px;}
.y3e{bottom:198.248400px;}
.y1f{bottom:208.371000px;}
.ya{bottom:223.614307px;}
.y3d{bottom:223.740900px;}
.y1e{bottom:233.863500px;}
.y9{bottom:241.039950px;}
.y3c{bottom:249.233400px;}
.y1d{bottom:259.356000px;}
.y3b{bottom:274.725900px;}
.y6d{bottom:277.350750px;}
.y1c{bottom:284.848500px;}
.y8{bottom:288.172650px;}
.y6c{bottom:299.850750px;}
.y3a{bottom:300.218400px;}
.y7{bottom:309.167400px;}
.y1b{bottom:310.341000px;}
.y6b{bottom:322.350750px;}
.y39{bottom:325.710900px;}
.y1a{bottom:335.833500px;}
.y6a{bottom:344.850750px;}
.y38{bottom:351.203400px;}
.y19{bottom:361.326000px;}
.y69{bottom:367.350750px;}
.y37{bottom:376.695900px;}
.y18{bottom:386.818500px;}
.y68{bottom:389.850750px;}
.y36{bottom:402.188400px;}
.y56{bottom:402.550950px;}
.y17{bottom:412.311000px;}
.y67{bottom:412.350750px;}
.y35{bottom:427.680900px;}
.y55{bottom:428.043450px;}
.y66{bottom:434.850750px;}
.y16{bottom:437.803500px;}
.y34{bottom:453.173400px;}
.y54{bottom:453.535950px;}
.y65{bottom:457.350750px;}
.y15{bottom:463.296000px;}
.y81{bottom:464.314800px;}
.y6{bottom:466.218300px;}
.y33{bottom:478.665900px;}
.y53{bottom:479.028450px;}
.y64{bottom:479.850750px;}
.y80{bottom:486.814800px;}
.y14{bottom:488.788500px;}
.y63{bottom:502.350750px;}
.y32{bottom:504.158400px;}
.y52{bottom:504.520950px;}
.y5{bottom:508.204800px;}
.y7f{bottom:509.314800px;}
.y13{bottom:514.281000px;}
.y62{bottom:524.850750px;}
.y31{bottom:529.650900px;}
.y51{bottom:530.013450px;}
.y7e{bottom:531.814800px;}
.y12{bottom:539.773500px;}
.y61{bottom:547.350750px;}
.y4{bottom:550.191300px;}
.y7d{bottom:554.314800px;}
.y30{bottom:555.143400px;}
.y50{bottom:555.505950px;}
.y11{bottom:565.266000px;}
.y60{bottom:569.850750px;}
.y7c{bottom:576.814800px;}
.y2f{bottom:580.635900px;}
.y4f{bottom:580.998450px;}
.y10{bottom:590.758500px;}
.y3{bottom:592.177800px;}
.y5f{bottom:592.350750px;}
.y7b{bottom:599.314800px;}
.y2e{bottom:606.128400px;}
.y4e{bottom:606.490950px;}
.y5e{bottom:614.850750px;}
.yf{bottom:616.251000px;}
.y7a{bottom:621.814800px;}
.y2d{bottom:631.620900px;}
.y4d{bottom:631.983450px;}
.y5d{bottom:637.350750px;}
.ye{bottom:641.743500px;}
.y79{bottom:644.314800px;}
.y2c{bottom:657.113400px;}
.y4c{bottom:657.475950px;}
.y5c{bottom:659.850750px;}
.y78{bottom:666.814800px;}
.yd{bottom:667.236000px;}
.y2b{bottom:682.605900px;}
.y4b{bottom:682.968450px;}
.y77{bottom:689.314800px;}
.y5b{bottom:701.844750px;}
.y2a{bottom:708.098400px;}
.y4a{bottom:708.460950px;}
.y76{bottom:711.814800px;}
.y2{bottom:724.589850px;}
.y29{bottom:733.590900px;}
.y49{bottom:733.953450px;}
.y75{bottom:734.314800px;}
.y1{bottom:741.652350px;}
.y74{bottom:756.814800px;}
.y28{bottom:759.083400px;}
.y48{bottom:759.445950px;}
.y73{bottom:779.314800px;}
.y27{bottom:784.575900px;}
.y47{bottom:784.938450px;}
.yc{bottom:793.438800px;}
.y57{bottom:799.988700px;}
.y72{bottom:801.814800px;}
.y26{bottom:810.068400px;}
.y46{bottom:810.430950px;}
.y71{bottom:824.314800px;}
.y25{bottom:835.560900px;}
.y45{bottom:835.923450px;}
.y70{bottom:846.814800px;}
.y5a{bottom:856.790550px;}
.y24{bottom:861.053400px;}
.y44{bottom:861.415950px;}
.y6f{bottom:869.314800px;}
.y23{bottom:886.545900px;}
.y43{bottom:886.908450px;}
.y59{bottom:888.290550px;}
.y6e{bottom:911.308800px;}
.y22{bottom:912.038400px;}
.y42{bottom:912.400950px;}
.y58{bottom:951.644550px;}
.h7{height:46.877168px;}
.h2{height:47.065430px;}
.h6{height:47.209087px;}
.h10{height:49.148438px;}
.h5{height:56.478516px;}
.h4{height:56.878418px;}
.ha{height:59.200195px;}
.h9{height:59.586914px;}
.h11{height:63.808594px;}
.hf{height:64.406250px;}
.he{height:64.582031px;}
.hd{height:65.003906px;}
.hc{height:75.837891px;}
.h8{height:108.339844px;}
.h3{height:124.590820px;}
.hb{height:682.203537px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xd{left:108.035400px;}
.x5{left:109.225200px;}
.x11{left:116.025150px;}
.x10{left:118.291950px;}
.x4{left:120.403200px;}
.x14{left:125.045400px;}
.x3{left:137.342700px;}
.x13{left:154.809150px;}
.x6{left:171.187200px;}
.xf{left:195.549150px;}
.xe{left:211.160400px;}
.x7{left:246.195450px;}
.x2{left:257.588850px;}
.x8{left:260.732700px;}
.x12{left:278.683950px;}
.x1{left:292.973850px;}
.xa{left:304.281150px;}
.xb{left:311.203350px;}
.x9{left:345.590250px;}
.xc{left:356.961750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-3.226667pt;}
.ls9{letter-spacing:-1.536000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.216000pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-1.152000pt;}
.lsa{letter-spacing:-1.088000pt;}
.ls6{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls2{letter-spacing:13.493333pt;}
.ls1{letter-spacing:14.666667pt;}
.ws35{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.077333pt;}
.ws36{word-spacing:-14.912000pt;}
.ws2b{word-spacing:-14.608000pt;}
.wsb{word-spacing:-14.549333pt;}
.ws2a{word-spacing:-14.490667pt;}
.ws24{word-spacing:-14.373333pt;}
.ws32{word-spacing:-14.314667pt;}
.ws30{word-spacing:-14.256000pt;}
.ws2f{word-spacing:-14.138667pt;}
.ws1e{word-spacing:-14.080000pt;}
.ws2d{word-spacing:-13.082667pt;}
.ws29{word-spacing:-13.024000pt;}
.ws3{word-spacing:-12.965333pt;}
.wsa{word-spacing:-12.906667pt;}
.ws1c{word-spacing:-12.554667pt;}
.ws25{word-spacing:-11.146667pt;}
.ws20{word-spacing:-10.912000pt;}
.ws33{word-spacing:-10.853333pt;}
.ws2c{word-spacing:-10.794667pt;}
.ws27{word-spacing:-9.621333pt;}
.ws10{word-spacing:-9.445333pt;}
.ws21{word-spacing:-9.386667pt;}
.ws23{word-spacing:-7.802667pt;}
.ws22{word-spacing:-7.685333pt;}
.ws12{word-spacing:-7.568000pt;}
.ws8{word-spacing:-6.453333pt;}
.ws15{word-spacing:-6.394667pt;}
.ws31{word-spacing:-6.160000pt;}
.ws1d{word-spacing:-6.101333pt;}
.ws1f{word-spacing:-5.984000pt;}
.ws7{word-spacing:-4.810667pt;}
.wsc{word-spacing:-4.752000pt;}
.wsf{word-spacing:-4.693333pt;}
.ws1a{word-spacing:-4.634667pt;}
.ws4{word-spacing:-4.576000pt;}
.ws14{word-spacing:-4.458667pt;}
.ws34{word-spacing:-4.341333pt;}
.ws9{word-spacing:-4.282667pt;}
.wsd{word-spacing:-3.050667pt;}
.ws19{word-spacing:-2.992000pt;}
.ws13{word-spacing:-2.874667pt;}
.ws11{word-spacing:-2.757333pt;}
.ws40{word-spacing:-2.432000pt;}
.ws3f{word-spacing:-2.368000pt;}
.ws37{word-spacing:-1.920000pt;}
.ws6{word-spacing:-1.466667pt;}
.ws1b{word-spacing:-1.349333pt;}
.ws38{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.232000pt;}
.ws28{word-spacing:-1.173333pt;}
.ws26{word-spacing:-1.056000pt;}
.ws1{word-spacing:-0.997333pt;}
.ws16{word-spacing:-0.938667pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws4c{word-spacing:-0.704000pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws47{word-spacing:-0.512000pt;}
.ws3d{word-spacing:-0.384000pt;}
.ws41{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.256000pt;}
.ws42{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.512000pt;}
.ws44{word-spacing:0.704000pt;}
.ws46{word-spacing:0.832000pt;}
.ws45{word-spacing:1.088000pt;}
.ws3b{word-spacing:1.152000pt;}
.ws18{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.216000pt;}
.ws3c{word-spacing:1.280000pt;}
.ws43{word-spacing:1.344000pt;}
.ws39{word-spacing:1.600000pt;}
.ws2e{word-spacing:10.853333pt;}
.ws2{word-spacing:13.024000pt;}
.ws5{word-spacing:14.666667pt;}
._7{margin-left:-29.333333pt;}
._b{margin-left:-17.171200pt;}
._5{margin-left:-14.684267pt;}
._2{margin-left:-9.101867pt;}
._1{margin-left:-4.550933pt;}
._0{margin-left:-2.232533pt;}
._3{margin-left:-1.041600pt;}
._6{width:1.222400pt;}
._a{width:2.232533pt;}
._8{width:3.159467pt;}
._4{width:13.024000pt;}
._9{width:15.840000pt;}
.fs3{font-size:46.480000pt;}
.fs0{font-size:46.666667pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:122.666667pt;}
.fs6{font-size:671.667733pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:108.240800pt;}
.y40{bottom:130.900800pt;}
.y21{bottom:139.898667pt;}
.yb{bottom:151.960933pt;}
.y3f{bottom:153.560800pt;}
.y20{bottom:162.558667pt;}
.y3e{bottom:176.220800pt;}
.y1f{bottom:185.218667pt;}
.ya{bottom:198.768273pt;}
.y3d{bottom:198.880800pt;}
.y1e{bottom:207.878667pt;}
.y9{bottom:214.257733pt;}
.y3c{bottom:221.540800pt;}
.y1d{bottom:230.538667pt;}
.y3b{bottom:244.200800pt;}
.y6d{bottom:246.534000pt;}
.y1c{bottom:253.198667pt;}
.y8{bottom:256.153467pt;}
.y6c{bottom:266.534000pt;}
.y3a{bottom:266.860800pt;}
.y7{bottom:274.815467pt;}
.y1b{bottom:275.858667pt;}
.y6b{bottom:286.534000pt;}
.y39{bottom:289.520800pt;}
.y1a{bottom:298.518667pt;}
.y6a{bottom:306.534000pt;}
.y38{bottom:312.180800pt;}
.y19{bottom:321.178667pt;}
.y69{bottom:326.534000pt;}
.y37{bottom:334.840800pt;}
.y18{bottom:343.838667pt;}
.y68{bottom:346.534000pt;}
.y36{bottom:357.500800pt;}
.y56{bottom:357.823067pt;}
.y17{bottom:366.498667pt;}
.y67{bottom:366.534000pt;}
.y35{bottom:380.160800pt;}
.y55{bottom:380.483067pt;}
.y66{bottom:386.534000pt;}
.y16{bottom:389.158667pt;}
.y34{bottom:402.820800pt;}
.y54{bottom:403.143067pt;}
.y65{bottom:406.534000pt;}
.y15{bottom:411.818667pt;}
.y81{bottom:412.724267pt;}
.y6{bottom:414.416267pt;}
.y33{bottom:425.480800pt;}
.y53{bottom:425.803067pt;}
.y64{bottom:426.534000pt;}
.y80{bottom:432.724267pt;}
.y14{bottom:434.478667pt;}
.y63{bottom:446.534000pt;}
.y32{bottom:448.140800pt;}
.y52{bottom:448.463067pt;}
.y5{bottom:451.737600pt;}
.y7f{bottom:452.724267pt;}
.y13{bottom:457.138667pt;}
.y62{bottom:466.534000pt;}
.y31{bottom:470.800800pt;}
.y51{bottom:471.123067pt;}
.y7e{bottom:472.724267pt;}
.y12{bottom:479.798667pt;}
.y61{bottom:486.534000pt;}
.y4{bottom:489.058933pt;}
.y7d{bottom:492.724267pt;}
.y30{bottom:493.460800pt;}
.y50{bottom:493.783067pt;}
.y11{bottom:502.458667pt;}
.y60{bottom:506.534000pt;}
.y7c{bottom:512.724267pt;}
.y2f{bottom:516.120800pt;}
.y4f{bottom:516.443067pt;}
.y10{bottom:525.118667pt;}
.y3{bottom:526.380267pt;}
.y5f{bottom:526.534000pt;}
.y7b{bottom:532.724267pt;}
.y2e{bottom:538.780800pt;}
.y4e{bottom:539.103067pt;}
.y5e{bottom:546.534000pt;}
.yf{bottom:547.778667pt;}
.y7a{bottom:552.724267pt;}
.y2d{bottom:561.440800pt;}
.y4d{bottom:561.763067pt;}
.y5d{bottom:566.534000pt;}
.ye{bottom:570.438667pt;}
.y79{bottom:572.724267pt;}
.y2c{bottom:584.100800pt;}
.y4c{bottom:584.423067pt;}
.y5c{bottom:586.534000pt;}
.y78{bottom:592.724267pt;}
.yd{bottom:593.098667pt;}
.y2b{bottom:606.760800pt;}
.y4b{bottom:607.083067pt;}
.y77{bottom:612.724267pt;}
.y5b{bottom:623.862000pt;}
.y2a{bottom:629.420800pt;}
.y4a{bottom:629.743067pt;}
.y76{bottom:632.724267pt;}
.y2{bottom:644.079867pt;}
.y29{bottom:652.080800pt;}
.y49{bottom:652.403067pt;}
.y75{bottom:652.724267pt;}
.y1{bottom:659.246533pt;}
.y74{bottom:672.724267pt;}
.y28{bottom:674.740800pt;}
.y48{bottom:675.063067pt;}
.y73{bottom:692.724267pt;}
.y27{bottom:697.400800pt;}
.y47{bottom:697.723067pt;}
.yc{bottom:705.278933pt;}
.y57{bottom:711.101067pt;}
.y72{bottom:712.724267pt;}
.y26{bottom:720.060800pt;}
.y46{bottom:720.383067pt;}
.y71{bottom:732.724267pt;}
.y25{bottom:742.720800pt;}
.y45{bottom:743.043067pt;}
.y70{bottom:752.724267pt;}
.y5a{bottom:761.591600pt;}
.y24{bottom:765.380800pt;}
.y44{bottom:765.703067pt;}
.y6f{bottom:772.724267pt;}
.y23{bottom:788.040800pt;}
.y43{bottom:788.363067pt;}
.y59{bottom:789.591600pt;}
.y6e{bottom:810.052267pt;}
.y22{bottom:810.700800pt;}
.y42{bottom:811.023067pt;}
.y58{bottom:845.906267pt;}
.h7{height:41.668594pt;}
.h2{height:41.835938pt;}
.h6{height:41.963633pt;}
.h10{height:43.687500pt;}
.h5{height:50.203125pt;}
.h4{height:50.558594pt;}
.ha{height:52.622396pt;}
.h9{height:52.966146pt;}
.h11{height:56.718750pt;}
.hf{height:57.250000pt;}
.he{height:57.406250pt;}
.hd{height:57.781250pt;}
.hc{height:67.411458pt;}
.h8{height:96.302083pt;}
.h3{height:110.747396pt;}
.hb{height:606.403144pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xd{left:96.031467pt;}
.x5{left:97.089067pt;}
.x11{left:103.133467pt;}
.x10{left:105.148400pt;}
.x4{left:107.025067pt;}
.x14{left:111.151467pt;}
.x3{left:122.082400pt;}
.x13{left:137.608133pt;}
.x6{left:152.166400pt;}
.xf{left:173.821467pt;}
.xe{left:187.698133pt;}
.x7{left:218.840400pt;}
.x2{left:228.967867pt;}
.x8{left:231.762400pt;}
.x12{left:247.719067pt;}
.x1{left:260.421200pt;}
.xa{left:270.472133pt;}
.xb{left:276.625200pt;}
.x9{left:307.191333pt;}
.xc{left:317.299333pt;}
}




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