
    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_85b62508df18f7c8d1a0ba3d.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_186baccf7ddb493c37c468a6.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_ee74a0064e074b22b072df6d.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_05642c518357d182f4b5c65b.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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.512000px;}
.ls34{letter-spacing:-1.350000px;}
.ls33{letter-spacing:-1.296000px;}
.ls16{letter-spacing:-1.188000px;}
.ls1a{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.918000px;}
.lsc{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.768000px;}
.ls2d{letter-spacing:-0.702000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.420000px;}
.ls2e{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.324000px;}
.ls37{letter-spacing:-0.315000px;}
.ls39{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.270000px;}
.ls31{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.054000px;}
.ls35{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.270000px;}
.ls2f{letter-spacing:0.283500px;}
.ls20{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.594000px;}
.ls28{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.702000px;}
.ls4{letter-spacing:0.756000px;}
.ls0{letter-spacing:0.810000px;}
.ls29{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.918000px;}
.ls1c{letter-spacing:0.972000px;}
.ls1d{letter-spacing:1.026000px;}
.ls13{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.242000px;}
.ls26{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.380000px;}
.ls21{letter-spacing:1.404000px;}
.ls2a{letter-spacing:1.512000px;}
.ls1f{letter-spacing:1.620000px;}
.ls24{letter-spacing:1.728000px;}
.ls1{letter-spacing:1.836000px;}
.ls25{letter-spacing:16.993500px;}
.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;}
}
.ws43{word-spacing:-16.380000px;}
.ws30{word-spacing:-15.336000px;}
.ws4{word-spacing:-15.000000px;}
.ws38{word-spacing:-14.904000px;}
.ws37{word-spacing:-14.850000px;}
.ws45{word-spacing:-14.580000px;}
.ws28{word-spacing:-14.526000px;}
.ws40{word-spacing:-14.418000px;}
.ws42{word-spacing:-14.364000px;}
.ws29{word-spacing:-14.310000px;}
.ws3e{word-spacing:-14.256000px;}
.ws39{word-spacing:-14.094000px;}
.ws2d{word-spacing:-14.040000px;}
.ws2e{word-spacing:-13.986000px;}
.ws2f{word-spacing:-13.878000px;}
.ws2{word-spacing:-13.860000px;}
.ws32{word-spacing:-13.824000px;}
.ws35{word-spacing:-13.770000px;}
.ws31{word-spacing:-13.716000px;}
.ws36{word-spacing:-13.500000px;}
.ws3b{word-spacing:-13.446000px;}
.ws3a{word-spacing:-13.230000px;}
.ws3f{word-spacing:-13.068000px;}
.ws2c{word-spacing:-12.960000px;}
.ws34{word-spacing:-12.906000px;}
.ws2a{word-spacing:-12.852000px;}
.ws2b{word-spacing:-12.798000px;}
.ws3c{word-spacing:-12.204000px;}
.ws3d{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.250000px;}
.ws46{word-spacing:-10.935000px;}
.ws27{word-spacing:-7.872000px;}
.ws4f{word-spacing:-0.702000px;}
.ws8{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.594000px;}
.ws18{word-spacing:-0.540000px;}
.ws50{word-spacing:-0.486000px;}
.ws23{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.378000px;}
.ws52{word-spacing:-0.324000px;}
.ws10{word-spacing:-0.270000px;}
.ws4b{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.162000px;}
.ws1{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:0.054000px;}
.ws4a{word-spacing:0.108000px;}
.ws54{word-spacing:0.202500px;}
.ws22{word-spacing:0.216000px;}
.ws1b{word-spacing:0.270000px;}
.ws17{word-spacing:0.324000px;}
.ws57{word-spacing:0.378000px;}
.ws1a{word-spacing:0.432000px;}
.wsc{word-spacing:0.486000px;}
.ws0{word-spacing:0.540000px;}
.ws1c{word-spacing:0.594000px;}
.ws7{word-spacing:0.648000px;}
.wsf{word-spacing:0.702000px;}
.ws1f{word-spacing:0.810000px;}
.ws4e{word-spacing:0.864000px;}
.ws1e{word-spacing:0.918000px;}
.ws13{word-spacing:0.972000px;}
.ws6{word-spacing:1.026000px;}
.wsb{word-spacing:1.080000px;}
.ws14{word-spacing:1.134000px;}
.ws21{word-spacing:1.188000px;}
.ws49{word-spacing:1.242000px;}
.wsa{word-spacing:1.296000px;}
.ws25{word-spacing:1.350000px;}
.ws26{word-spacing:1.500000px;}
.ws20{word-spacing:1.674000px;}
.ws33{word-spacing:2.911500px;}
.ws55{word-spacing:3.132000px;}
.ws51{word-spacing:3.186000px;}
.wse{word-spacing:4.050000px;}
.ws48{word-spacing:5.250000px;}
.ws44{word-spacing:5.310000px;}
.ws47{word-spacing:5.340000px;}
.ws4c{word-spacing:6.048000px;}
.ws16{word-spacing:7.506000px;}
.wsd{word-spacing:8.964000px;}
.ws4d{word-spacing:10.854000px;}
.ws9{word-spacing:11.556000px;}
.ws24{word-spacing:11.880000px;}
.ws11{word-spacing:15.444000px;}
.ws56{word-spacing:27.216000px;}
.ws41{word-spacing:36.000000px;}
._2{margin-left:-5.022000px;}
._4{margin-left:-2.820000px;}
._0{margin-left:-1.680000px;}
._3{width:1.080000px;}
._1{width:47.244000px;}
._5{width:1238.640000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:40.500000px;}
.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;}
.y3c{bottom:58.042500px;}
.y1f{bottom:58.164000px;}
.y94{bottom:58.165500px;}
.y8e{bottom:58.192500px;}
.y3b{bottom:73.797000px;}
.y1e{bottom:73.918500px;}
.y93{bottom:73.920000px;}
.y8d{bottom:73.947000px;}
.y3a{bottom:89.551500px;}
.y1d{bottom:89.673000px;}
.y92{bottom:89.674500px;}
.y8c{bottom:89.701500px;}
.y39{bottom:105.306000px;}
.y1c{bottom:105.427500px;}
.y91{bottom:105.429000px;}
.y8b{bottom:105.456000px;}
.y38{bottom:121.060500px;}
.y1b{bottom:121.182000px;}
.y90{bottom:121.183500px;}
.y8a{bottom:121.210500px;}
.y37{bottom:136.815000px;}
.y1a{bottom:136.936500px;}
.y8f{bottom:136.938000px;}
.y89{bottom:136.965000px;}
.y36{bottom:152.569500px;}
.y19{bottom:152.691000px;}
.y35{bottom:168.324000px;}
.y18{bottom:168.445500px;}
.y97{bottom:174.930000px;}
.y34{bottom:184.078500px;}
.y17{bottom:184.200000px;}
.y96{bottom:192.180000px;}
.y33{bottom:199.833000px;}
.y16{bottom:199.864500px;}
.y95{bottom:209.430000px;}
.y32{bottom:215.587500px;}
.y15{bottom:215.619000px;}
.y31{bottom:231.342000px;}
.y14{bottom:231.373500px;}
.y30{bottom:247.096500px;}
.y13{bottom:247.128000px;}
.y65{bottom:262.477500px;}
.y88{bottom:262.500000px;}
.y2f{bottom:262.851000px;}
.y12{bottom:262.882500px;}
.y64{bottom:278.232000px;}
.y87{bottom:278.254500px;}
.y2e{bottom:278.605500px;}
.y11{bottom:278.637000px;}
.y63{bottom:293.986500px;}
.y2d{bottom:294.360000px;}
.y10{bottom:294.391500px;}
.y62{bottom:309.741000px;}
.y86{bottom:309.750000px;}
.y2c{bottom:310.114500px;}
.yf{bottom:310.146000px;}
.y61{bottom:325.495500px;}
.y85{bottom:325.504500px;}
.y2b{bottom:325.869000px;}
.ye{bottom:325.900500px;}
.y60{bottom:341.250000px;}
.y84{bottom:341.259000px;}
.y2a{bottom:341.623500px;}
.yd{bottom:341.655000px;}
.y5f{bottom:357.004500px;}
.y83{bottom:357.013500px;}
.y29{bottom:357.378000px;}
.yc{bottom:357.409500px;}
.y5e{bottom:372.759000px;}
.y82{bottom:372.768000px;}
.y28{bottom:373.132500px;}
.yb{bottom:373.164000px;}
.y5d{bottom:388.513500px;}
.y81{bottom:388.522500px;}
.y27{bottom:388.887000px;}
.ya{bottom:388.918500px;}
.y5c{bottom:404.268000px;}
.y80{bottom:404.277000px;}
.y26{bottom:404.641500px;}
.y9{bottom:404.673000px;}
.y5b{bottom:420.022500px;}
.y7f{bottom:420.031500px;}
.y25{bottom:420.396000px;}
.y8{bottom:420.427500px;}
.y5a{bottom:435.777000px;}
.y7e{bottom:435.786000px;}
.y24{bottom:436.150500px;}
.y7{bottom:436.182000px;}
.y59{bottom:451.531500px;}
.y7d{bottom:451.540500px;}
.y23{bottom:451.905000px;}
.y6{bottom:451.936500px;}
.y58{bottom:467.286000px;}
.y7c{bottom:467.295000px;}
.y22{bottom:467.659500px;}
.y5{bottom:467.691000px;}
.y57{bottom:483.040500px;}
.y7b{bottom:483.049500px;}
.y21{bottom:483.414000px;}
.y4{bottom:483.445500px;}
.y56{bottom:498.795000px;}
.y7a{bottom:498.804000px;}
.y20{bottom:499.168500px;}
.y3{bottom:499.200000px;}
.y55{bottom:514.549500px;}
.y79{bottom:514.558500px;}
.y54{bottom:530.304000px;}
.y78{bottom:530.313000px;}
.y40{bottom:531.135000px;}
.y53{bottom:546.058500px;}
.y77{bottom:546.067500px;}
.y3f{bottom:548.385000px;}
.y52{bottom:561.813000px;}
.y76{bottom:561.822000px;}
.y3e{bottom:565.635000px;}
.y51{bottom:577.567500px;}
.y75{bottom:577.576500px;}
.y3d{bottom:582.885000px;}
.y50{bottom:593.322000px;}
.y74{bottom:593.331000px;}
.y4f{bottom:609.076500px;}
.y73{bottom:609.085500px;}
.y4e{bottom:624.831000px;}
.y72{bottom:624.840000px;}
.y4d{bottom:640.585500px;}
.y71{bottom:640.594500px;}
.y4c{bottom:656.340000px;}
.y70{bottom:656.349000px;}
.y4b{bottom:672.094500px;}
.y6f{bottom:672.103500px;}
.y4a{bottom:687.849000px;}
.y6e{bottom:687.858000px;}
.y49{bottom:703.603500px;}
.y6d{bottom:703.612500px;}
.y48{bottom:719.358000px;}
.y6c{bottom:719.367000px;}
.y47{bottom:735.112500px;}
.y6b{bottom:735.121500px;}
.y46{bottom:750.867000px;}
.y6a{bottom:750.876000px;}
.y45{bottom:766.621500px;}
.y69{bottom:766.630500px;}
.y44{bottom:782.376000px;}
.y68{bottom:782.380500px;}
.y67{bottom:797.968500px;}
.y43{bottom:798.130500px;}
.y2{bottom:807.345000px;}
.y66{bottom:813.723000px;}
.y42{bottom:813.885000px;}
.y1{bottom:861.345000px;}
.y41{bottom:924.000000px;}
.h6{height:47.085938px;}
.h1{height:48.375000px;}
.h9{height:52.971680px;}
.h3{height:52.998047px;}
.h8{height:53.016047px;}
.h7{height:53.664047px;}
.h5{height:58.857422px;}
.h4{height:58.886719px;}
.h2{height:94.218750px;}
.h0{height:894.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x7{left:4.500000px;}
.x3{left:74.700000px;}
.x8{left:75.915000px;}
.x4{left:90.450000px;}
.x9{left:91.683000px;}
.x2{left:250.365000px;}
.x5{left:328.941000px;}
.xa{left:330.174000px;}
.x6{left:344.695500px;}
.xb{left:345.870000px;}
.x1{left:412.380000px;}
.xd{left:417.582000px;}
.xc{left:454.639500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.344000pt;}
.ls34{letter-spacing:-1.200000pt;}
.ls33{letter-spacing:-1.152000pt;}
.ls16{letter-spacing:-1.056000pt;}
.ls1a{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.816000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls2d{letter-spacing:-0.624000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.373333pt;}
.ls2e{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls37{letter-spacing:-0.280000pt;}
.ls39{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls35{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.240000pt;}
.ls2f{letter-spacing:0.252000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.528000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.624000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls0{letter-spacing:0.720000pt;}
.ls29{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.816000pt;}
.ls1c{letter-spacing:0.864000pt;}
.ls1d{letter-spacing:0.912000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.104000pt;}
.ls26{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.226667pt;}
.ls21{letter-spacing:1.248000pt;}
.ls2a{letter-spacing:1.344000pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls24{letter-spacing:1.536000pt;}
.ls1{letter-spacing:1.632000pt;}
.ls25{letter-spacing:15.105333pt;}
.ws43{word-spacing:-14.560000pt;}
.ws30{word-spacing:-13.632000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws38{word-spacing:-13.248000pt;}
.ws37{word-spacing:-13.200000pt;}
.ws45{word-spacing:-12.960000pt;}
.ws28{word-spacing:-12.912000pt;}
.ws40{word-spacing:-12.816000pt;}
.ws42{word-spacing:-12.768000pt;}
.ws29{word-spacing:-12.720000pt;}
.ws3e{word-spacing:-12.672000pt;}
.ws39{word-spacing:-12.528000pt;}
.ws2d{word-spacing:-12.480000pt;}
.ws2e{word-spacing:-12.432000pt;}
.ws2f{word-spacing:-12.336000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws32{word-spacing:-12.288000pt;}
.ws35{word-spacing:-12.240000pt;}
.ws31{word-spacing:-12.192000pt;}
.ws36{word-spacing:-12.000000pt;}
.ws3b{word-spacing:-11.952000pt;}
.ws3a{word-spacing:-11.760000pt;}
.ws3f{word-spacing:-11.616000pt;}
.ws2c{word-spacing:-11.520000pt;}
.ws34{word-spacing:-11.472000pt;}
.ws2a{word-spacing:-11.424000pt;}
.ws2b{word-spacing:-11.376000pt;}
.ws3c{word-spacing:-10.848000pt;}
.ws3d{word-spacing:-10.800000pt;}
.ws3{word-spacing:-10.000000pt;}
.ws46{word-spacing:-9.720000pt;}
.ws27{word-spacing:-6.997333pt;}
.ws4f{word-spacing:-0.624000pt;}
.ws8{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.528000pt;}
.ws18{word-spacing:-0.480000pt;}
.ws50{word-spacing:-0.432000pt;}
.ws23{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.336000pt;}
.ws52{word-spacing:-0.288000pt;}
.ws10{word-spacing:-0.240000pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.144000pt;}
.ws1{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:0.048000pt;}
.ws4a{word-spacing:0.096000pt;}
.ws54{word-spacing:0.180000pt;}
.ws22{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.240000pt;}
.ws17{word-spacing:0.288000pt;}
.ws57{word-spacing:0.336000pt;}
.ws1a{word-spacing:0.384000pt;}
.wsc{word-spacing:0.432000pt;}
.ws0{word-spacing:0.480000pt;}
.ws1c{word-spacing:0.528000pt;}
.ws7{word-spacing:0.576000pt;}
.wsf{word-spacing:0.624000pt;}
.ws1f{word-spacing:0.720000pt;}
.ws4e{word-spacing:0.768000pt;}
.ws1e{word-spacing:0.816000pt;}
.ws13{word-spacing:0.864000pt;}
.ws6{word-spacing:0.912000pt;}
.wsb{word-spacing:0.960000pt;}
.ws14{word-spacing:1.008000pt;}
.ws21{word-spacing:1.056000pt;}
.ws49{word-spacing:1.104000pt;}
.wsa{word-spacing:1.152000pt;}
.ws25{word-spacing:1.200000pt;}
.ws26{word-spacing:1.333333pt;}
.ws20{word-spacing:1.488000pt;}
.ws33{word-spacing:2.588000pt;}
.ws55{word-spacing:2.784000pt;}
.ws51{word-spacing:2.832000pt;}
.wse{word-spacing:3.600000pt;}
.ws48{word-spacing:4.666667pt;}
.ws44{word-spacing:4.720000pt;}
.ws47{word-spacing:4.746667pt;}
.ws4c{word-spacing:5.376000pt;}
.ws16{word-spacing:6.672000pt;}
.wsd{word-spacing:7.968000pt;}
.ws4d{word-spacing:9.648000pt;}
.ws9{word-spacing:10.272000pt;}
.ws24{word-spacing:10.560000pt;}
.ws11{word-spacing:13.728000pt;}
.ws56{word-spacing:24.192000pt;}
.ws41{word-spacing:32.000000pt;}
._2{margin-left:-4.464000pt;}
._4{margin-left:-2.506667pt;}
._0{margin-left:-1.493333pt;}
._3{width:0.960000pt;}
._1{width:41.994667pt;}
._5{width:1101.013333pt;}
.fs5{font-size:36.000000pt;}
.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;}
.y3c{bottom:51.593333pt;}
.y1f{bottom:51.701333pt;}
.y94{bottom:51.702667pt;}
.y8e{bottom:51.726667pt;}
.y3b{bottom:65.597333pt;}
.y1e{bottom:65.705333pt;}
.y93{bottom:65.706667pt;}
.y8d{bottom:65.730667pt;}
.y3a{bottom:79.601333pt;}
.y1d{bottom:79.709333pt;}
.y92{bottom:79.710667pt;}
.y8c{bottom:79.734667pt;}
.y39{bottom:93.605333pt;}
.y1c{bottom:93.713333pt;}
.y91{bottom:93.714667pt;}
.y8b{bottom:93.738667pt;}
.y38{bottom:107.609333pt;}
.y1b{bottom:107.717333pt;}
.y90{bottom:107.718667pt;}
.y8a{bottom:107.742667pt;}
.y37{bottom:121.613333pt;}
.y1a{bottom:121.721333pt;}
.y8f{bottom:121.722667pt;}
.y89{bottom:121.746667pt;}
.y36{bottom:135.617333pt;}
.y19{bottom:135.725333pt;}
.y35{bottom:149.621333pt;}
.y18{bottom:149.729333pt;}
.y97{bottom:155.493333pt;}
.y34{bottom:163.625333pt;}
.y17{bottom:163.733333pt;}
.y96{bottom:170.826667pt;}
.y33{bottom:177.629333pt;}
.y16{bottom:177.657333pt;}
.y95{bottom:186.160000pt;}
.y32{bottom:191.633333pt;}
.y15{bottom:191.661333pt;}
.y31{bottom:205.637333pt;}
.y14{bottom:205.665333pt;}
.y30{bottom:219.641333pt;}
.y13{bottom:219.669333pt;}
.y65{bottom:233.313333pt;}
.y88{bottom:233.333333pt;}
.y2f{bottom:233.645333pt;}
.y12{bottom:233.673333pt;}
.y64{bottom:247.317333pt;}
.y87{bottom:247.337333pt;}
.y2e{bottom:247.649333pt;}
.y11{bottom:247.677333pt;}
.y63{bottom:261.321333pt;}
.y2d{bottom:261.653333pt;}
.y10{bottom:261.681333pt;}
.y62{bottom:275.325333pt;}
.y86{bottom:275.333333pt;}
.y2c{bottom:275.657333pt;}
.yf{bottom:275.685333pt;}
.y61{bottom:289.329333pt;}
.y85{bottom:289.337333pt;}
.y2b{bottom:289.661333pt;}
.ye{bottom:289.689333pt;}
.y60{bottom:303.333333pt;}
.y84{bottom:303.341333pt;}
.y2a{bottom:303.665333pt;}
.yd{bottom:303.693333pt;}
.y5f{bottom:317.337333pt;}
.y83{bottom:317.345333pt;}
.y29{bottom:317.669333pt;}
.yc{bottom:317.697333pt;}
.y5e{bottom:331.341333pt;}
.y82{bottom:331.349333pt;}
.y28{bottom:331.673333pt;}
.yb{bottom:331.701333pt;}
.y5d{bottom:345.345333pt;}
.y81{bottom:345.353333pt;}
.y27{bottom:345.677333pt;}
.ya{bottom:345.705333pt;}
.y5c{bottom:359.349333pt;}
.y80{bottom:359.357333pt;}
.y26{bottom:359.681333pt;}
.y9{bottom:359.709333pt;}
.y5b{bottom:373.353333pt;}
.y7f{bottom:373.361333pt;}
.y25{bottom:373.685333pt;}
.y8{bottom:373.713333pt;}
.y5a{bottom:387.357333pt;}
.y7e{bottom:387.365333pt;}
.y24{bottom:387.689333pt;}
.y7{bottom:387.717333pt;}
.y59{bottom:401.361333pt;}
.y7d{bottom:401.369333pt;}
.y23{bottom:401.693333pt;}
.y6{bottom:401.721333pt;}
.y58{bottom:415.365333pt;}
.y7c{bottom:415.373333pt;}
.y22{bottom:415.697333pt;}
.y5{bottom:415.725333pt;}
.y57{bottom:429.369333pt;}
.y7b{bottom:429.377333pt;}
.y21{bottom:429.701333pt;}
.y4{bottom:429.729333pt;}
.y56{bottom:443.373333pt;}
.y7a{bottom:443.381333pt;}
.y20{bottom:443.705333pt;}
.y3{bottom:443.733333pt;}
.y55{bottom:457.377333pt;}
.y79{bottom:457.385333pt;}
.y54{bottom:471.381333pt;}
.y78{bottom:471.389333pt;}
.y40{bottom:472.120000pt;}
.y53{bottom:485.385333pt;}
.y77{bottom:485.393333pt;}
.y3f{bottom:487.453333pt;}
.y52{bottom:499.389333pt;}
.y76{bottom:499.397333pt;}
.y3e{bottom:502.786667pt;}
.y51{bottom:513.393333pt;}
.y75{bottom:513.401333pt;}
.y3d{bottom:518.120000pt;}
.y50{bottom:527.397333pt;}
.y74{bottom:527.405333pt;}
.y4f{bottom:541.401333pt;}
.y73{bottom:541.409333pt;}
.y4e{bottom:555.405333pt;}
.y72{bottom:555.413333pt;}
.y4d{bottom:569.409333pt;}
.y71{bottom:569.417333pt;}
.y4c{bottom:583.413333pt;}
.y70{bottom:583.421333pt;}
.y4b{bottom:597.417333pt;}
.y6f{bottom:597.425333pt;}
.y4a{bottom:611.421333pt;}
.y6e{bottom:611.429333pt;}
.y49{bottom:625.425333pt;}
.y6d{bottom:625.433333pt;}
.y48{bottom:639.429333pt;}
.y6c{bottom:639.437333pt;}
.y47{bottom:653.433333pt;}
.y6b{bottom:653.441333pt;}
.y46{bottom:667.437333pt;}
.y6a{bottom:667.445333pt;}
.y45{bottom:681.441333pt;}
.y69{bottom:681.449333pt;}
.y44{bottom:695.445333pt;}
.y68{bottom:695.449333pt;}
.y67{bottom:709.305333pt;}
.y43{bottom:709.449333pt;}
.y2{bottom:717.640000pt;}
.y66{bottom:723.309333pt;}
.y42{bottom:723.453333pt;}
.y1{bottom:765.640000pt;}
.y41{bottom:821.333333pt;}
.h6{height:41.854167pt;}
.h1{height:43.000000pt;}
.h9{height:47.085938pt;}
.h3{height:47.109375pt;}
.h8{height:47.125375pt;}
.h7{height:47.701375pt;}
.h5{height:52.317708pt;}
.h4{height:52.343750pt;}
.h2{height:83.750000pt;}
.h0{height:794.666667pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x7{left:4.000000pt;}
.x3{left:66.400000pt;}
.x8{left:67.480000pt;}
.x4{left:80.400000pt;}
.x9{left:81.496000pt;}
.x2{left:222.546667pt;}
.x5{left:292.392000pt;}
.xa{left:293.488000pt;}
.x6{left:306.396000pt;}
.xb{left:307.440000pt;}
.x1{left:366.560000pt;}
.xd{left:371.184000pt;}
.xc{left:404.124000pt;}
}




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