
    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_705e3c413d0c7473b1cd05d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e799cce9ce17b2d7326f114c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_1aba7255ef995920f99e1a28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101000;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_8dbb389bf1dbffeefff135e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064000;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_421612e910e4accbb31e1183.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085000;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:ff8;src:url('chunks/assets/font_e8794ce9f8185f8949d36dcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.101000;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.650000px;}
.ls8{letter-spacing:-1.488000px;}
.ls17{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.212000px;}
.lse{letter-spacing:-0.996000px;}
.lsf{letter-spacing:-0.894000px;}
.ls5{letter-spacing:-0.714000px;}
.lsa{letter-spacing:-0.566400px;}
.ls10{letter-spacing:-0.451200px;}
.ls16{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.019200px;}
.ls6{letter-spacing:-0.009600px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.201600px;}
.lsc{letter-spacing:0.268800px;}
.lsd{letter-spacing:0.307200px;}
.ls7{letter-spacing:0.316800px;}
.ls14{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.636000px;}
.ls13{letter-spacing:0.642000px;}
.lsb{letter-spacing:2688.512400px;}
.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:-57.600000px;}
.ws7{word-spacing:-16.245600px;}
.ws5{word-spacing:-15.926400px;}
.ws9{word-spacing:-15.916800px;}
.ws2{word-spacing:-15.811200px;}
.wsb{word-spacing:-15.609600px;}
.ws1{word-spacing:-15.590400px;}
.wse{word-spacing:-15.158400px;}
.wsa{word-spacing:-15.043200px;}
.wsd{word-spacing:-14.715600px;}
.wsc{word-spacing:-14.613600px;}
.wsf{word-spacing:-14.397600px;}
.ws6{word-spacing:-14.121600px;}
.ws8{word-spacing:-13.959600px;}
.ws12{word-spacing:-13.392000px;}
.ws10{word-spacing:-12.768000px;}
.ws3{word-spacing:-11.643600px;}
.ws11{word-spacing:-11.568000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.544000px;}
._0{margin-left:-1.468800px;}
._1{width:1.200000px;}
._3{width:2.220000px;}
._6{width:3.330000px;}
._4{width:2557.592400px;}
._5{width:3399.470400px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,71,120);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.600000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:57.600000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:69.600000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:2.400000px;}
.y80{bottom:3.300000px;}
.y28{bottom:3.900000px;}
.y81{bottom:33.637500px;}
.y4c{bottom:54.637500px;}
.y24{bottom:56.437500px;}
.y5{bottom:66.525004px;}
.ya6{bottom:72.900000px;}
.ya5{bottom:89.400000px;}
.y4{bottom:97.125005px;}
.ya4{bottom:105.900000px;}
.y4b{bottom:112.537500px;}
.y82{bottom:114.900000px;}
.y4a{bottom:126.037500px;}
.ya3{bottom:138.945000px;}
.y22{bottom:139.264499px;}
.ya2{bottom:155.430000px;}
.y49{bottom:165.330000px;}
.y7f{bottom:165.630000px;}
.ya1{bottom:171.930000px;}
.y48{bottom:184.830000px;}
.y7e{bottom:185.130000px;}
.ya0{bottom:188.430000px;}
.y19{bottom:196.933500px;}
.y47{bottom:204.375000px;}
.y7d{bottom:204.675000px;}
.y9f{bottom:204.930000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y9e{bottom:221.445000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y84{bottom:222.975000px;}
.y46{bottom:223.875000px;}
.y7c{bottom:224.175000px;}
.y26{bottom:228.945000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y45{bottom:243.375000px;}
.y7b{bottom:243.675000px;}
.y9d{bottom:254.430000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y44{bottom:262.875000px;}
.y7a{bottom:263.175000px;}
.y9c{bottom:270.930000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y43{bottom:282.375000px;}
.y79{bottom:282.675000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y9b{bottom:287.430000px;}
.y42{bottom:301.875000px;}
.y78{bottom:302.175000px;}
.y9a{bottom:303.975000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y99{bottom:320.475000px;}
.y41{bottom:321.375000px;}
.y77{bottom:321.675000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y98{bottom:336.975000px;}
.y40{bottom:340.875000px;}
.y76{bottom:341.175000px;}
.y10{bottom:348.133500px;}
.y3f{bottom:360.405000px;}
.y75{bottom:360.705000px;}
.y97{bottom:369.975000px;}
.y3e{bottom:379.905000px;}
.y74{bottom:380.205000px;}
.y96{bottom:386.475000px;}
.yf{bottom:386.785499px;}
.y3d{bottom:399.405000px;}
.y73{bottom:399.705000px;}
.y95{bottom:402.975000px;}
.ye{bottom:408.044999px;}
.y3c{bottom:418.905000px;}
.y72{bottom:419.205000px;}
.y94{bottom:419.475000px;}
.y93{bottom:435.975000px;}
.y3b{bottom:438.405000px;}
.y71{bottom:438.705000px;}
.y92{bottom:452.475000px;}
.y3a{bottom:457.920000px;}
.y70{bottom:458.205000px;}
.y91{bottom:469.005000px;}
.y39{bottom:477.405000px;}
.y6f{bottom:477.705000px;}
.y90{bottom:485.520000px;}
.y38{bottom:496.905000px;}
.y6e{bottom:497.205000px;}
.y8f{bottom:502.005000px;}
.yd{bottom:502.864502px;}
.y37{bottom:516.405000px;}
.y6d{bottom:516.705000px;}
.y8e{bottom:518.505000px;}
.yc{bottom:520.864502px;}
.y36{bottom:535.950000px;}
.y6c{bottom:536.250000px;}
.yb{bottom:538.864499px;}
.y8d{bottom:551.520000px;}
.y35{bottom:555.450000px;}
.y6b{bottom:555.750000px;}
.ya{bottom:556.864499px;}
.y8c{bottom:568.020000px;}
.y34{bottom:574.950000px;}
.y6a{bottom:575.250000px;}
.y8b{bottom:584.505000px;}
.y33{bottom:594.450000px;}
.y69{bottom:594.750000px;}
.y8a{bottom:601.005000px;}
.y32{bottom:613.950000px;}
.y68{bottom:614.250000px;}
.y9{bottom:626.610001px;}
.y31{bottom:633.450000px;}
.y67{bottom:633.750000px;}
.y89{bottom:634.050000px;}
.y8{bottom:645.510000px;}
.y88{bottom:650.550000px;}
.y30{bottom:652.950000px;}
.y66{bottom:653.250000px;}
.y7{bottom:666.771000px;}
.y2f{bottom:672.450000px;}
.y65{bottom:672.750000px;}
.y87{bottom:682.950000px;}
.y2e{bottom:691.980000px;}
.y64{bottom:692.280000px;}
.y86{bottom:699.750000px;}
.y2d{bottom:711.480000px;}
.y63{bottom:711.780000px;}
.y85{bottom:713.550000px;}
.y6{bottom:726.298500px;}
.y62{bottom:731.280000px;}
.y61{bottom:750.780000px;}
.y3{bottom:752.599495px;}
.y2c{bottom:754.095000px;}
.y60{bottom:770.295000px;}
.y2b{bottom:773.580000px;}
.y5f{bottom:789.795000px;}
.y2a{bottom:800.880000px;}
.y5e{bottom:809.280000px;}
.y5d{bottom:828.795000px;}
.y29{bottom:836.880000px;}
.y5c{bottom:848.295000px;}
.y5b{bottom:867.825000px;}
.y2{bottom:879.369000px;}
.y5a{bottom:887.325000px;}
.y27{bottom:891.525000px;}
.y59{bottom:906.825000px;}
.y25{bottom:911.925000px;}
.y58{bottom:926.325000px;}
.y57{bottom:945.825000px;}
.y56{bottom:965.325000px;}
.y1{bottom:966.726000px;}
.y55{bottom:984.825000px;}
.y54{bottom:1004.325000px;}
.y53{bottom:1023.855000px;}
.y52{bottom:1043.355000px;}
.y51{bottom:1062.855000px;}
.y50{bottom:1082.355000px;}
.y4f{bottom:1101.870000px;}
.y4e{bottom:1121.370000px;}
.y4d{bottom:1140.870000px;}
.y23{bottom:1203.300000px;}
.h13{height:16.500000px;}
.hc{height:19.500000px;}
.h7{height:32.130000px;}
.h17{height:33.637485px;}
.h16{height:35.112000px;}
.h12{height:39.079200px;}
.h11{height:39.580800px;}
.h14{height:40.128000px;}
.h19{height:41.136000px;}
.h9{height:41.664000px;}
.h6{height:45.900000px;}
.h10{height:48.153600px;}
.h3{height:48.195000px;}
.ha{height:49.996800px;}
.hf{height:50.227200px;}
.h2{height:55.080000px;}
.hd{height:60.691200px;}
.h5{height:78.030000px;}
.he{height:104.640000px;}
.h4{height:119.055004px;}
.h15{height:131.700000px;}
.hb{height:244.530000px;}
.h18{height:732.150000px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wa{width:0.299970px;}
.w9{width:0.599985px;}
.wb{width:0.600015px;}
.w7{width:19.800000px;}
.w6{width:25.500000px;}
.w8{width:132.637500px;}
.wc{width:174.375000px;}
.we{width:178.875000px;}
.wd{width:578.580000px;}
.w5{width:599.880000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:893.099987px;}
.w3{width:893.100000px;}
.w1{width:893.250000px;}
.x6{left:-63.900013px;}
.x0{left:0.000000px;}
.x8{left:10.500000px;}
.x15{left:49.837500px;}
.x14{left:51.000000px;}
.x7{left:66.037500px;}
.x5{left:76.537487px;}
.xc{left:89.745000px;}
.x12{left:93.637487px;}
.xe{left:97.837487px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.837500px;}
.x4{left:203.484001px;}
.xf{left:238.274987px;}
.xa{left:254.475000px;}
.xb{left:255.975000px;}
.xd{left:374.219987px;}
.x13{left:391.319987px;}
.x3{left:454.959000px;}
.x10{left:535.994987px;}
.x11{left:553.094987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.466667pt;}
.ls8{letter-spacing:-1.322667pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.077333pt;}
.lse{letter-spacing:-0.885333pt;}
.lsf{letter-spacing:-0.794667pt;}
.ls5{letter-spacing:-0.634667pt;}
.lsa{letter-spacing:-0.503467pt;}
.ls10{letter-spacing:-0.401067pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.017067pt;}
.ls6{letter-spacing:-0.008533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.179200pt;}
.lsc{letter-spacing:0.238933pt;}
.lsd{letter-spacing:0.273067pt;}
.ls7{letter-spacing:0.281600pt;}
.ls14{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.565333pt;}
.ls13{letter-spacing:0.570667pt;}
.lsb{letter-spacing:2389.788800pt;}
.ws4{word-spacing:-51.200000pt;}
.ws7{word-spacing:-14.440533pt;}
.ws5{word-spacing:-14.156800pt;}
.ws9{word-spacing:-14.148267pt;}
.ws2{word-spacing:-14.054400pt;}
.wsb{word-spacing:-13.875200pt;}
.ws1{word-spacing:-13.858133pt;}
.wse{word-spacing:-13.474133pt;}
.wsa{word-spacing:-13.371733pt;}
.wsd{word-spacing:-13.080533pt;}
.wsc{word-spacing:-12.989867pt;}
.wsf{word-spacing:-12.797867pt;}
.ws6{word-spacing:-12.552533pt;}
.ws8{word-spacing:-12.408533pt;}
.ws12{word-spacing:-11.904000pt;}
.ws10{word-spacing:-11.349333pt;}
.ws3{word-spacing:-10.349867pt;}
.ws11{word-spacing:-10.282667pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-2.261333pt;}
._0{margin-left:-1.305600pt;}
._1{width:1.066667pt;}
._3{width:1.973333pt;}
._6{width:2.960000pt;}
._4{width:2273.415467pt;}
._5{width:3021.751467pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.533333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:51.200000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:61.866667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.133333pt;}
.y80{bottom:2.933333pt;}
.y28{bottom:3.466667pt;}
.y81{bottom:29.900000pt;}
.y4c{bottom:48.566667pt;}
.y24{bottom:50.166667pt;}
.y5{bottom:59.133337pt;}
.ya6{bottom:64.800000pt;}
.ya5{bottom:79.466667pt;}
.y4{bottom:86.333337pt;}
.ya4{bottom:94.133333pt;}
.y4b{bottom:100.033333pt;}
.y82{bottom:102.133333pt;}
.y4a{bottom:112.033333pt;}
.ya3{bottom:123.506667pt;}
.y22{bottom:123.790666pt;}
.ya2{bottom:138.160000pt;}
.y49{bottom:146.960000pt;}
.y7f{bottom:147.226667pt;}
.ya1{bottom:152.826667pt;}
.y48{bottom:164.293333pt;}
.y7e{bottom:164.560000pt;}
.ya0{bottom:167.493333pt;}
.y19{bottom:175.052000pt;}
.y47{bottom:181.666667pt;}
.y7d{bottom:181.933333pt;}
.y9f{bottom:182.160000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y9e{bottom:196.840000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y84{bottom:198.200000pt;}
.y46{bottom:199.000000pt;}
.y7c{bottom:199.266667pt;}
.y26{bottom:203.506667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y45{bottom:216.333333pt;}
.y7b{bottom:216.600000pt;}
.y9d{bottom:226.160000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y44{bottom:233.666667pt;}
.y7a{bottom:233.933333pt;}
.y9c{bottom:240.826667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y43{bottom:251.000000pt;}
.y79{bottom:251.266667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y9b{bottom:255.493333pt;}
.y42{bottom:268.333333pt;}
.y78{bottom:268.600000pt;}
.y9a{bottom:270.200000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y99{bottom:284.866667pt;}
.y41{bottom:285.666667pt;}
.y77{bottom:285.933333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y98{bottom:299.533333pt;}
.y40{bottom:303.000000pt;}
.y76{bottom:303.266667pt;}
.y10{bottom:309.452000pt;}
.y3f{bottom:320.360000pt;}
.y75{bottom:320.626667pt;}
.y97{bottom:328.866667pt;}
.y3e{bottom:337.693333pt;}
.y74{bottom:337.960000pt;}
.y96{bottom:343.533333pt;}
.yf{bottom:343.809333pt;}
.y3d{bottom:355.026667pt;}
.y73{bottom:355.293333pt;}
.y95{bottom:358.200000pt;}
.ye{bottom:362.706666pt;}
.y3c{bottom:372.360000pt;}
.y72{bottom:372.626667pt;}
.y94{bottom:372.866667pt;}
.y93{bottom:387.533333pt;}
.y3b{bottom:389.693333pt;}
.y71{bottom:389.960000pt;}
.y92{bottom:402.200000pt;}
.y3a{bottom:407.040000pt;}
.y70{bottom:407.293333pt;}
.y91{bottom:416.893333pt;}
.y39{bottom:424.360000pt;}
.y6f{bottom:424.626667pt;}
.y90{bottom:431.573333pt;}
.y38{bottom:441.693333pt;}
.y6e{bottom:441.960000pt;}
.y8f{bottom:446.226667pt;}
.yd{bottom:446.990669pt;}
.y37{bottom:459.026667pt;}
.y6d{bottom:459.293333pt;}
.y8e{bottom:460.893333pt;}
.yc{bottom:462.990669pt;}
.y36{bottom:476.400000pt;}
.y6c{bottom:476.666667pt;}
.yb{bottom:478.990666pt;}
.y8d{bottom:490.240000pt;}
.y35{bottom:493.733333pt;}
.y6b{bottom:494.000000pt;}
.ya{bottom:494.990666pt;}
.y8c{bottom:504.906667pt;}
.y34{bottom:511.066667pt;}
.y6a{bottom:511.333333pt;}
.y8b{bottom:519.560000pt;}
.y33{bottom:528.400000pt;}
.y69{bottom:528.666667pt;}
.y8a{bottom:534.226667pt;}
.y32{bottom:545.733333pt;}
.y68{bottom:546.000000pt;}
.y9{bottom:556.986668pt;}
.y31{bottom:563.066667pt;}
.y67{bottom:563.333333pt;}
.y89{bottom:563.600000pt;}
.y8{bottom:573.786667pt;}
.y88{bottom:578.266667pt;}
.y30{bottom:580.400000pt;}
.y66{bottom:580.666667pt;}
.y7{bottom:592.685334pt;}
.y2f{bottom:597.733333pt;}
.y65{bottom:598.000000pt;}
.y87{bottom:607.066667pt;}
.y2e{bottom:615.093333pt;}
.y64{bottom:615.360000pt;}
.y86{bottom:622.000000pt;}
.y2d{bottom:632.426667pt;}
.y63{bottom:632.693333pt;}
.y85{bottom:634.266667pt;}
.y6{bottom:645.598667pt;}
.y62{bottom:650.026667pt;}
.y61{bottom:667.360000pt;}
.y3{bottom:668.977329pt;}
.y2c{bottom:670.306667pt;}
.y60{bottom:684.706667pt;}
.y2b{bottom:687.626667pt;}
.y5f{bottom:702.040000pt;}
.y2a{bottom:711.893333pt;}
.y5e{bottom:719.360000pt;}
.y5d{bottom:736.706667pt;}
.y29{bottom:743.893333pt;}
.y5c{bottom:754.040000pt;}
.y5b{bottom:771.400000pt;}
.y2{bottom:781.661334pt;}
.y5a{bottom:788.733333pt;}
.y27{bottom:792.466667pt;}
.y59{bottom:806.066667pt;}
.y25{bottom:810.600000pt;}
.y58{bottom:823.400000pt;}
.y57{bottom:840.733333pt;}
.y56{bottom:858.066667pt;}
.y1{bottom:859.312000pt;}
.y55{bottom:875.400000pt;}
.y54{bottom:892.733333pt;}
.y53{bottom:910.093333pt;}
.y52{bottom:927.426667pt;}
.y51{bottom:944.760000pt;}
.y50{bottom:962.093333pt;}
.y4f{bottom:979.440000pt;}
.y4e{bottom:996.773333pt;}
.y4d{bottom:1014.106667pt;}
.y23{bottom:1069.600000pt;}
.h13{height:14.666667pt;}
.hc{height:17.333333pt;}
.h7{height:28.560000pt;}
.h17{height:29.899987pt;}
.h16{height:31.210667pt;}
.h12{height:34.737067pt;}
.h11{height:35.182933pt;}
.h14{height:35.669333pt;}
.h19{height:36.565333pt;}
.h9{height:37.034667pt;}
.h6{height:40.800000pt;}
.h10{height:42.803200pt;}
.h3{height:42.840000pt;}
.ha{height:44.441600pt;}
.hf{height:44.646400pt;}
.h2{height:48.960000pt;}
.hd{height:53.947733pt;}
.h5{height:69.360000pt;}
.he{height:93.013333pt;}
.h4{height:105.826671pt;}
.h15{height:117.066667pt;}
.hb{height:217.360000pt;}
.h18{height:650.800000pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wa{width:0.266640pt;}
.w9{width:0.533320pt;}
.wb{width:0.533347pt;}
.w7{width:17.600000pt;}
.w6{width:22.666667pt;}
.w8{width:117.900000pt;}
.wc{width:155.000000pt;}
.we{width:159.000000pt;}
.wd{width:514.293333pt;}
.w5{width:533.226667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.866655pt;}
.w3{width:793.866667pt;}
.w1{width:794.000000pt;}
.x6{left:-56.800012pt;}
.x0{left:0.000000pt;}
.x8{left:9.333333pt;}
.x15{left:44.300000pt;}
.x14{left:45.333333pt;}
.x7{left:58.700000pt;}
.x5{left:68.033322pt;}
.xc{left:79.773333pt;}
.x12{left:83.233322pt;}
.xe{left:86.966655pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.300000pt;}
.x4{left:180.874667pt;}
.xf{left:211.799988pt;}
.xa{left:226.200000pt;}
.xb{left:227.533333pt;}
.xd{left:332.639988pt;}
.x13{left:347.839988pt;}
.x3{left:404.408000pt;}
.x10{left:476.439988pt;}
.x11{left:491.639988pt;}
}




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