
    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_c0dedacb2e13cbce1477c379.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6126f4be878216079749ca64.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9997557127e07ff24fb1cd3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_5d49ac1947b61d9504445a39.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_d92d2b9e5c185456652ca048.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6abea4ba8e6bb4a5faad6faa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_37f891301286e883f4831a79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_e6c56f8545e9c31e548e3330.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eab852adfb8ee0d803edd36e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_a95dbb9da07a5cdf5ab5bb1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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);}
.v1{vertical-align:-97.920000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.341400px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.073440px;}
.ls10{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.748080px;}
.ls6{letter-spacing:8.261280px;}
.ls4{letter-spacing:10.620000px;}
.ls12{letter-spacing:17.820000px;}
.lsb{letter-spacing:18.540000px;}
.ls3{letter-spacing:50.021280px;}
.ls13{letter-spacing:82.421280px;}
.ls2{letter-spacing:164.501280px;}
.ls7{letter-spacing:237.420000px;}
.lse{letter-spacing:912.960000px;}
.ls14{letter-spacing:1187.400000px;}
.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:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.718600px;}
.ws3{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.370000px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:0.000000px;}
._35{margin-left:-11.127840px;}
._a{margin-left:-4.970160px;}
._b{margin-left:-3.953280px;}
._6{margin-left:-2.779920px;}
._0{margin-left:-1.516320px;}
._1{width:1.095120px;}
._3{width:2.134560px;}
._16{width:3.875040px;}
._f{width:5.559840px;}
._e{width:7.101360px;}
._14{width:9.113040px;}
._7{width:10.361520px;}
._13{width:11.456640px;}
._4{width:12.661200px;}
._5{width:14.270400px;}
._9{width:15.541920px;}
._8{width:16.620480px;}
._1e{width:18.439920px;}
._1d{width:19.543680px;}
._c{width:22.096080px;}
._33{width:23.671440px;}
._27{width:26.269680px;}
._23{width:27.293760px;}
._20{width:28.810080px;}
._21{width:29.820960px;}
._2a{width:31.000320px;}
._22{width:32.968080px;}
._26{width:35.212320px;}
._25{width:36.475920px;}
._24{width:39.271440px;}
._15{width:40.350960px;}
._12{width:41.483280px;}
._11{width:43.325280px;}
._28{width:45.910800px;}
._2{width:47.174400px;}
._2c{width:48.522240px;}
._2b{width:50.379840px;}
._18{width:52.986960px;}
._17{width:54.029520px;}
._19{width:55.935360px;}
._1a{width:57.367440px;}
._32{width:58.799520px;}
._31{width:59.810400px;}
._29{width:61.795920px;}
._2e{width:71.472240px;}
._2d{width:72.895680px;}
._d{width:76.489920px;}
._1c{width:91.737360px;}
._1b{width:93.085200px;}
._1f{width:94.348800px;}
._2f{width:105.805440px;}
._30{width:108.873600px;}
._34{width:179.337360px;}
._10{width:186.096000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.680000px;}
.y3c{bottom:5.040000px;}
.y4d{bottom:5.220000px;}
.y43{bottom:28.830000px;}
.y37{bottom:28.845000px;}
.y3b{bottom:29.160000px;}
.y41{bottom:29.340000px;}
.y4b{bottom:29.385000px;}
.y3a{bottom:53.280000px;}
.y40{bottom:53.454000px;}
.y3e{bottom:53.460000px;}
.y4a{bottom:53.505000px;}
.y4{bottom:56.700000px;}
.y3{bottom:73.980000px;}
.y45{bottom:77.400000px;}
.y3f{bottom:106.956000px;}
.y2e{bottom:110.736000px;}
.y2d{bottom:134.856000px;}
.y62{bottom:157.890000px;}
.y2c{bottom:159.150000px;}
.y61{bottom:182.010000px;}
.y2b{bottom:183.270000px;}
.y3d{bottom:185.430000px;}
.y60{bottom:206.130000px;}
.y2a{bottom:207.390000px;}
.y5f{bottom:230.250000px;}
.y29{bottom:230.970000px;}
.y35{bottom:231.510000px;}
.y5e{bottom:254.550000px;}
.y28{bottom:255.630000px;}
.y39{bottom:263.910000px;}
.y5d{bottom:278.670000px;}
.y27{bottom:279.750000px;}
.y5c{bottom:302.790000px;}
.y26{bottom:303.510000px;}
.y34{bottom:304.050000px;}
.y5b{bottom:326.910000px;}
.y25{bottom:328.170000px;}
.y36{bottom:342.390000px;}
.y5a{bottom:351.030000px;}
.y24{bottom:352.290000px;}
.y59{bottom:375.195000px;}
.y33{bottom:376.455000px;}
.y58{bottom:399.495000px;}
.y23{bottom:400.215000px;}
.y32{bottom:400.575000px;}
.y57{bottom:423.615000px;}
.y22{bottom:424.335000px;}
.y31{bottom:424.695000px;}
.y56{bottom:447.735000px;}
.y30{bottom:448.995000px;}
.y55{bottom:471.855000px;}
.y21{bottom:473.115000px;}
.y54{bottom:495.975000px;}
.y20{bottom:497.235000px;}
.y53{bottom:520.095000px;}
.y1f{bottom:521.355000px;}
.y52{bottom:544.215000px;}
.y1e{bottom:545.475000px;}
.y51{bottom:568.515000px;}
.y1d{bottom:569.595000px;}
.y50{bottom:592.635000px;}
.y1c{bottom:593.715000px;}
.y4f{bottom:616.605000px;}
.y1b{bottom:618.045000px;}
.y1a{bottom:642.165000px;}
.y19{bottom:666.285000px;}
.y18{bottom:690.405000px;}
.y4e{bottom:695.085000px;}
.y17{bottom:714.525000px;}
.y16{bottom:738.645000px;}
.y15{bottom:762.945000px;}
.y4c{bottom:773.385000px;}
.y14{bottom:787.065000px;}
.y13{bottom:811.185000px;}
.y12{bottom:835.305000px;}
.y49{bottom:851.865000px;}
.y11{bottom:859.425000px;}
.y10{bottom:883.590000px;}
.yf{bottom:907.710000px;}
.y48{bottom:930.390000px;}
.ye{bottom:932.010000px;}
.yd{bottom:956.130000px;}
.y47{bottom:964.410000px;}
.yc{bottom:980.250000px;}
.y46{bottom:988.710000px;}
.yb{bottom:1004.370000px;}
.y44{bottom:1012.650000px;}
.ya{bottom:1028.130000px;}
.y2f{bottom:1028.490000px;}
.y9{bottom:1052.610000px;}
.y8{bottom:1076.910000px;}
.y7{bottom:1101.030000px;}
.y42{bottom:1115.250000px;}
.y6{bottom:1125.150000px;}
.y5{bottom:1149.300000px;}
.y2{bottom:1172.160000px;}
.y1{bottom:1190.700000px;}
.he{height:24.120000px;}
.h9{height:48.276000px;}
.h3{height:58.651172px;}
.h7{height:59.066719px;}
.ha{height:59.436914px;}
.h8{height:60.835430px;}
.hb{height:72.360000px;}
.hc{height:72.540000px;}
.hf{height:72.576000px;}
.h2{height:82.635820px;}
.h5{height:82.676953px;}
.h6{height:84.898125px;}
.h4{height:86.585445px;}
.hd{height:96.480000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:31.140000px;}
.w9{width:41.760000px;}
.w7{width:80.280000px;}
.w6{width:82.260000px;}
.w5{width:91.980000px;}
.wa{width:193.350000px;}
.w4{width:194.070000px;}
.w8{width:197.175000px;}
.wb{width:203.250000px;}
.wc{width:254.415000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:2.160000px;}
.x12{left:5.040000px;}
.x17{left:6.300000px;}
.x19{left:8.640000px;}
.x3b{left:9.720000px;}
.x15{left:11.160000px;}
.x20{left:12.240000px;}
.x25{left:13.905000px;}
.x21{left:14.985000px;}
.x39{left:16.380000px;}
.x24{left:17.460000px;}
.x1d{left:19.620000px;}
.x33{left:21.060000px;}
.x1f{left:22.140000px;}
.x34{left:24.660000px;}
.x37{left:26.100000px;}
.x2d{left:27.540000px;}
.x13{left:30.420000px;}
.x32{left:31.500000px;}
.x22{left:35.145000px;}
.x27{left:36.585000px;}
.x29{left:40.545000px;}
.x28{left:42.120000px;}
.x3a{left:43.380000px;}
.x36{left:44.820000px;}
.x1e{left:46.440000px;}
.x38{left:48.240000px;}
.x30{left:50.400000px;}
.x26{left:52.920000px;}
.x31{left:61.560000px;}
.x35{left:65.700000px;}
.x2a{left:69.885000px;}
.x23{left:73.080000px;}
.x1b{left:78.705000px;}
.x6{left:82.799987px;}
.x2{left:117.035987px;}
.x2b{left:121.176000px;}
.x11{left:124.596000px;}
.xe{left:127.655987px;}
.x7{left:139.715987px;}
.x4{left:159.509987px;}
.x2c{left:166.710000px;}
.x3d{left:171.029987px;}
.x3c{left:180.929987px;}
.xf{left:214.409987px;}
.x1{left:276.194987px;}
.x5{left:337.934987px;}
.x14{left:357.375000px;}
.x2e{left:363.855000px;}
.x10{left:406.154987px;}
.x8{left:420.734987px;}
.x16{left:453.165000px;}
.x3{left:461.984987px;}
.xc{left:479.264987px;}
.xb{left:481.424987px;}
.xa{left:495.284987px;}
.x9{left:537.764987px;}
.x18{left:539.205000px;}
.x2f{left:570.885000px;}
.x1a{left:623.265000px;}
.xd{left:790.889987px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.065280pt;}
.ls10{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.664960pt;}
.ls6{letter-spacing:7.343360pt;}
.ls4{letter-spacing:9.440000pt;}
.ls12{letter-spacing:15.840000pt;}
.lsb{letter-spacing:16.480000pt;}
.ls3{letter-spacing:44.463360pt;}
.ls13{letter-spacing:73.263360pt;}
.ls2{letter-spacing:146.223360pt;}
.ls7{letter-spacing:211.040000pt;}
.lse{letter-spacing:811.520000pt;}
.ls14{letter-spacing:1055.466667pt;}
.ws1{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.416533pt;}
.ws3{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.106667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:0.000000pt;}
._35{margin-left:-9.891413pt;}
._a{margin-left:-4.417920pt;}
._b{margin-left:-3.514027pt;}
._6{margin-left:-2.471040pt;}
._0{margin-left:-1.347840pt;}
._1{width:0.973440pt;}
._3{width:1.897387pt;}
._16{width:3.444480pt;}
._f{width:4.942080pt;}
._e{width:6.312320pt;}
._14{width:8.100480pt;}
._7{width:9.210240pt;}
._13{width:10.183680pt;}
._4{width:11.254400pt;}
._5{width:12.684800pt;}
._9{width:13.815040pt;}
._8{width:14.773760pt;}
._1e{width:16.391040pt;}
._1d{width:17.372160pt;}
._c{width:19.640960pt;}
._33{width:21.041280pt;}
._27{width:23.350827pt;}
._23{width:24.261120pt;}
._20{width:25.608960pt;}
._21{width:26.507520pt;}
._2a{width:27.555840pt;}
._22{width:29.304960pt;}
._26{width:31.299840pt;}
._25{width:32.423040pt;}
._24{width:34.907947pt;}
._15{width:35.867520pt;}
._12{width:36.874027pt;}
._11{width:38.511360pt;}
._28{width:40.809600pt;}
._2{width:41.932800pt;}
._2c{width:43.130880pt;}
._2b{width:44.782080pt;}
._18{width:47.099520pt;}
._17{width:48.026240pt;}
._19{width:49.720320pt;}
._1a{width:50.993280pt;}
._32{width:52.266240pt;}
._31{width:53.164800pt;}
._29{width:54.929707pt;}
._2e{width:63.530880pt;}
._2d{width:64.796160pt;}
._d{width:67.991040pt;}
._1c{width:81.544320pt;}
._1b{width:82.742400pt;}
._1f{width:83.865600pt;}
._2f{width:94.049280pt;}
._30{width:96.776533pt;}
._34{width:159.410987pt;}
._10{width:165.418667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:4.160000pt;}
.y3c{bottom:4.480000pt;}
.y4d{bottom:4.640000pt;}
.y43{bottom:25.626667pt;}
.y37{bottom:25.640000pt;}
.y3b{bottom:25.920000pt;}
.y41{bottom:26.080000pt;}
.y4b{bottom:26.120000pt;}
.y3a{bottom:47.360000pt;}
.y40{bottom:47.514667pt;}
.y3e{bottom:47.520000pt;}
.y4a{bottom:47.560000pt;}
.y4{bottom:50.400000pt;}
.y3{bottom:65.760000pt;}
.y45{bottom:68.800000pt;}
.y3f{bottom:95.072000pt;}
.y2e{bottom:98.432000pt;}
.y2d{bottom:119.872000pt;}
.y62{bottom:140.346667pt;}
.y2c{bottom:141.466667pt;}
.y61{bottom:161.786667pt;}
.y2b{bottom:162.906667pt;}
.y3d{bottom:164.826667pt;}
.y60{bottom:183.226667pt;}
.y2a{bottom:184.346667pt;}
.y5f{bottom:204.666667pt;}
.y29{bottom:205.306667pt;}
.y35{bottom:205.786667pt;}
.y5e{bottom:226.266667pt;}
.y28{bottom:227.226667pt;}
.y39{bottom:234.586667pt;}
.y5d{bottom:247.706667pt;}
.y27{bottom:248.666667pt;}
.y5c{bottom:269.146667pt;}
.y26{bottom:269.786667pt;}
.y34{bottom:270.266667pt;}
.y5b{bottom:290.586667pt;}
.y25{bottom:291.706667pt;}
.y36{bottom:304.346667pt;}
.y5a{bottom:312.026667pt;}
.y24{bottom:313.146667pt;}
.y59{bottom:333.506667pt;}
.y33{bottom:334.626667pt;}
.y58{bottom:355.106667pt;}
.y23{bottom:355.746667pt;}
.y32{bottom:356.066667pt;}
.y57{bottom:376.546667pt;}
.y22{bottom:377.186667pt;}
.y31{bottom:377.506667pt;}
.y56{bottom:397.986667pt;}
.y30{bottom:399.106667pt;}
.y55{bottom:419.426667pt;}
.y21{bottom:420.546667pt;}
.y54{bottom:440.866667pt;}
.y20{bottom:441.986667pt;}
.y53{bottom:462.306667pt;}
.y1f{bottom:463.426667pt;}
.y52{bottom:483.746667pt;}
.y1e{bottom:484.866667pt;}
.y51{bottom:505.346667pt;}
.y1d{bottom:506.306667pt;}
.y50{bottom:526.786667pt;}
.y1c{bottom:527.746667pt;}
.y4f{bottom:548.093333pt;}
.y1b{bottom:549.373333pt;}
.y1a{bottom:570.813333pt;}
.y19{bottom:592.253333pt;}
.y18{bottom:613.693333pt;}
.y4e{bottom:617.853333pt;}
.y17{bottom:635.133333pt;}
.y16{bottom:656.573333pt;}
.y15{bottom:678.173333pt;}
.y4c{bottom:687.453333pt;}
.y14{bottom:699.613333pt;}
.y13{bottom:721.053333pt;}
.y12{bottom:742.493333pt;}
.y49{bottom:757.213333pt;}
.y11{bottom:763.933333pt;}
.y10{bottom:785.413333pt;}
.yf{bottom:806.853333pt;}
.y48{bottom:827.013333pt;}
.ye{bottom:828.453333pt;}
.yd{bottom:849.893333pt;}
.y47{bottom:857.253333pt;}
.yc{bottom:871.333333pt;}
.y46{bottom:878.853333pt;}
.yb{bottom:892.773333pt;}
.y44{bottom:900.133333pt;}
.ya{bottom:913.893333pt;}
.y2f{bottom:914.213333pt;}
.y9{bottom:935.653333pt;}
.y8{bottom:957.253333pt;}
.y7{bottom:978.693333pt;}
.y42{bottom:991.333333pt;}
.y6{bottom:1000.133333pt;}
.y5{bottom:1021.600000pt;}
.y2{bottom:1041.920000pt;}
.y1{bottom:1058.400000pt;}
.he{height:21.440000pt;}
.h9{height:42.912000pt;}
.h3{height:52.134375pt;}
.h7{height:52.503750pt;}
.ha{height:52.832812pt;}
.h8{height:54.075937pt;}
.hb{height:64.320000pt;}
.hc{height:64.480000pt;}
.hf{height:64.512000pt;}
.h2{height:73.454062pt;}
.h5{height:73.490625pt;}
.h6{height:75.465000pt;}
.h4{height:76.964840pt;}
.hd{height:85.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:27.680000pt;}
.w9{width:37.120000pt;}
.w7{width:71.360000pt;}
.w6{width:73.120000pt;}
.w5{width:81.760000pt;}
.wa{width:171.866667pt;}
.w4{width:172.506667pt;}
.w8{width:175.266667pt;}
.wb{width:180.666667pt;}
.wc{width:226.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.920000pt;}
.x12{left:4.480000pt;}
.x17{left:5.600000pt;}
.x19{left:7.680000pt;}
.x3b{left:8.640000pt;}
.x15{left:9.920000pt;}
.x20{left:10.880000pt;}
.x25{left:12.360000pt;}
.x21{left:13.320000pt;}
.x39{left:14.560000pt;}
.x24{left:15.520000pt;}
.x1d{left:17.440000pt;}
.x33{left:18.720000pt;}
.x1f{left:19.680000pt;}
.x34{left:21.920000pt;}
.x37{left:23.200000pt;}
.x2d{left:24.480000pt;}
.x13{left:27.040000pt;}
.x32{left:28.000000pt;}
.x22{left:31.240000pt;}
.x27{left:32.520000pt;}
.x29{left:36.040000pt;}
.x28{left:37.440000pt;}
.x3a{left:38.560000pt;}
.x36{left:39.840000pt;}
.x1e{left:41.280000pt;}
.x38{left:42.880000pt;}
.x30{left:44.800000pt;}
.x26{left:47.040000pt;}
.x31{left:54.720000pt;}
.x35{left:58.400000pt;}
.x2a{left:62.120000pt;}
.x23{left:64.960000pt;}
.x1b{left:69.960000pt;}
.x6{left:73.599988pt;}
.x2{left:104.031988pt;}
.x2b{left:107.712000pt;}
.x11{left:110.752000pt;}
.xe{left:113.471988pt;}
.x7{left:124.191988pt;}
.x4{left:141.786655pt;}
.x2c{left:148.186667pt;}
.x3d{left:152.026655pt;}
.x3c{left:160.826655pt;}
.xf{left:190.586655pt;}
.x1{left:245.506655pt;}
.x5{left:300.386655pt;}
.x14{left:317.666667pt;}
.x2e{left:323.426667pt;}
.x10{left:361.026655pt;}
.x8{left:373.986655pt;}
.x16{left:402.813333pt;}
.x3{left:410.653322pt;}
.xc{left:426.013322pt;}
.xb{left:427.933322pt;}
.xa{left:440.253322pt;}
.x9{left:478.013322pt;}
.x18{left:479.293333pt;}
.x2f{left:507.453333pt;}
.x1a{left:554.013333pt;}
.xd{left:703.013322pt;}
}




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