
    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_07984399c53384fd58e2ef92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_f7cd64bae0689abeaa02f9ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_85bd9b7b1b139c221dd7c460.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_71fc894c5fd89ac55aa465db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_2dfc2776a8412728a19e3770.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_be9cb27ddbab144cd30a8e19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_31d01e054183b57ee824ce0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.066000;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_0b6b0ab0ef7f2c93910b7246.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.450000;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);}
.v2{vertical-align:-31.416000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.184000px;}
.v1{vertical-align:57.120000px;}
.v4{vertical-align:58.993980px;}
.lsb{letter-spacing:-26.640000px;}
.ls9{letter-spacing:-13.680000px;}
.lsa{letter-spacing:-2.551178px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000391px;}
.ls0{letter-spacing:0.001989px;}
.ls6{letter-spacing:8.858235px;}
.ls7{letter-spacing:26.627910px;}
.ls4{letter-spacing:26.627940px;}
.ls5{letter-spacing:56.652000px;}
.ls2{letter-spacing:355.299240px;}
.ls1{letter-spacing:455.273520px;}
.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;}
}
.ws7{word-spacing:-53.040000px;}
.ws5{word-spacing:-50.040000px;}
.ws0{word-spacing:-44.480006px;}
.ws10{word-spacing:-40.080000px;}
.ws2{word-spacing:-36.696000px;}
.ws4{word-spacing:-30.024000px;}
.ws1{word-spacing:-24.464006px;}
.ws6{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.159449px;}
.wsf{word-spacing:-0.132000px;}
.ws3{word-spacing:-0.108000px;}
.ws11{word-spacing:0.000000px;}
.wsb{word-spacing:26.468416px;}
.wsa{word-spacing:26.468431px;}
.ws9{word-spacing:26.468446px;}
.wse{word-spacing:26.468458px;}
.ws8{word-spacing:26.468461px;}
.wsd{word-spacing:28.774032px;}
._6{margin-left:-22.080000px;}
._e{margin-left:-14.652000px;}
._d{margin-left:-12.144000px;}
._4{margin-left:-9.768000px;}
._0{margin-left:-6.480000px;}
._1{margin-left:-4.322008px;}
._2{margin-left:-2.376000px;}
._3{width:2.376000px;}
._5{width:13.680000px;}
._f{width:26.642008px;}
._a{width:56.652000px;}
._c{width:218.922900px;}
._b{width:337.003200px;}
._8{width:411.855960px;}
._7{width:491.579880px;}
._9{width:781.062000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:88.000020px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:113.208480px;}
.fs3{font-size:132.000000px;}
.fs7{font-size:159.448620px;}
.fs2{font-size:160.000020px;}
.fs6{font-size:180.000000px;}
.fs1{font-size:240.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:0.398655px;}
.y40{bottom:0.399105px;}
.y42{bottom:0.438105px;}
.y3e{bottom:0.558105px;}
.y8b{bottom:2.716200px;}
.y28{bottom:3.297000px;}
.y26{bottom:4.797000px;}
.y2a{bottom:7.797000px;}
.y3c{bottom:7.872000px;}
.y45{bottom:8.650605px;}
.y1d{bottom:20.820000px;}
.y8{bottom:25.459500px;}
.y71{bottom:25.479000px;}
.y9{bottom:27.013050px;}
.y4d{bottom:29.224500px;}
.y59{bottom:30.615450px;}
.y20{bottom:33.441000px;}
.y22{bottom:34.498500px;}
.y2f{bottom:46.992000px;}
.y3{bottom:48.961500px;}
.y7{bottom:58.105500px;}
.y1c{bottom:60.268500px;}
.y31{bottom:68.518500px;}
.y5e{bottom:68.520000px;}
.y1f{bottom:72.889500px;}
.y70{bottom:73.894500px;}
.y58{bottom:80.558400px;}
.y3a{bottom:82.228500px;}
.y18{bottom:87.204000px;}
.y4c{bottom:92.640000px;}
.y24{bottom:99.048000px;}
.y1b{bottom:99.717000px;}
.y14{bottom:102.600000px;}
.y6{bottom:113.605500px;}
.y89{bottom:122.309700px;}
.y6f{bottom:122.310000px;}
.y17{bottom:126.652500px;}
.y39{bottom:130.644000px;}
.y1a{bottom:132.852000px;}
.y57{bottom:134.606400px;}
.y2e{bottom:134.844000px;}
.y13{bottom:142.048500px;}
.y4b{bottom:156.054000px;}
.y16{bottom:159.787500px;}
.y2{bottom:159.961500px;}
.y5{bottom:160.912500px;}
.ye{bottom:176.211150px;}
.y38{bottom:179.059500px;}
.y12{bottom:181.497000px;}
.y88{bottom:185.724900px;}
.y7f{bottom:187.252500px;}
.y56{bottom:204.719550px;}
.y4a{bottom:219.469500px;}
.y11{bottom:220.945500px;}
.y2d{bottom:222.696000px;}
.y87{bottom:234.140100px;}
.yd{bottom:239.817900px;}
.y7e{bottom:241.069500px;}
.y37{bottom:242.475000px;}
.y55{bottom:253.134750px;}
.y10{bottom:254.082000px;}
.y6e{bottom:275.725500px;}
.y86{bottom:282.555300px;}
.y49{bottom:282.885000px;}
.y36{bottom:291.121500px;}
.y54{bottom:301.549950px;}
.yc{bottom:303.424650px;}
.y2c{bottom:310.548000px;}
.y6d{bottom:324.141000px;}
.y48{bottom:331.300500px;}
.y85{bottom:345.970500px;}
.y53{bottom:349.965150px;}
.y35{bottom:361.234500px;}
.y7d{bottom:364.485000px;}
.yb{bottom:367.031400px;}
.y6c{bottom:372.555000px;}
.y84{bottom:394.385700px;}
.y34{bottom:409.650000px;}
.y7c{bottom:412.900500px;}
.y52{bottom:413.380350px;}
.y47{bottom:414.487500px;}
.y6b{bottom:420.970500px;}
.ya{bottom:430.638150px;}
.y83{bottom:442.800900px;}
.y33{bottom:458.296500px;}
.y7b{bottom:461.314500px;}
.y51{bottom:461.795550px;}
.y82{bottom:491.216100px;}
.y50{bottom:510.210750px;}
.y4f{bottom:558.625950px;}
.y6a{bottom:574.386000px;}
.y7a{bottom:584.730000px;}
.y69{bottom:622.801500px;}
.y79{bottom:633.145500px;}
.y68{bottom:671.217000px;}
.y78{bottom:681.561000px;}
.y67{bottom:719.632500px;}
.y77{bottom:729.976500px;}
.y76{bottom:793.390500px;}
.y81{bottom:806.699850px;}
.y4e{bottom:820.417800px;}
.y8a{bottom:829.462950px;}
.y75{bottom:841.806000px;}
.y66{bottom:873.046500px;}
.y74{bottom:890.221500px;}
.y5c{bottom:900.577500px;}
.y65{bottom:921.462000px;}
.y5a{bottom:955.921950px;}
.y64{bottom:969.877500px;}
.y63{bottom:1123.293000px;}
.y62{bottom:1171.708500px;}
.y61{bottom:1220.122500px;}
.y60{bottom:1268.538000px;}
.y73{bottom:1560.759000px;}
.y32{bottom:1566.471000px;}
.y44{bottom:1586.233500px;}
.y3b{bottom:1587.012000px;}
.y80{bottom:1747.573500px;}
.y43{bottom:1858.330500px;}
.y41{bottom:1858.450500px;}
.y3f{bottom:1858.489500px;}
.y3d{bottom:2025.505500px;}
.y30{bottom:2137.717500px;}
.y46{bottom:2441.025000px;}
.y72{bottom:2606.709000px;}
.y5f{bottom:2979.435000px;}
.y15{bottom:3032.536500px;}
.y1e{bottom:3207.256500px;}
.yf{bottom:3362.386500px;}
.y19{bottom:3495.006000px;}
.y2b{bottom:3775.260000px;}
.y23{bottom:4217.077500px;}
.y29{bottom:4243.780500px;}
.y25{bottom:4246.780500px;}
.y27{bottom:4248.280500px;}
.y5d{bottom:4356.394500px;}
.y21{bottom:4405.999500px;}
.y4{bottom:4562.332500px;}
.y1{bottom:4752.537000px;}
.h1d{height:27.385290px;}
.h1c{height:27.624465px;}
.h19{height:27.823785px;}
.h1b{height:27.983235px;}
.h1e{height:34.439310px;}
.h20{height:42.757740px;}
.h7{height:65.076000px;}
.ha{height:78.948000px;}
.he{height:90.760350px;}
.h6{height:96.492000px;}
.h17{height:101.676000px;}
.h23{height:101.677800px;}
.hd{height:107.246595px;}
.h1a{height:109.700651px;}
.h12{height:111.000000px;}
.h11{height:112.500000px;}
.h13{height:115.500000px;}
.hf{height:131.580000px;}
.h1f{height:136.881414px;}
.h15{height:145.139835px;}
.h10{height:155.308350px;}
.hc{height:168.756150px;}
.h5{height:175.440000px;}
.hb{height:195.691200px;}
.h4{height:237.532500px;}
.h3{height:263.160000px;}
.h2{height:275.640000px;}
.h9{height:289.986000px;}
.h14{height:387.167700px;}
.h8{height:473.019150px;}
.h18{height:477.000000px;}
.h21{height:491.106600px;}
.h27{height:501.000000px;}
.h16{height:507.518250px;}
.h26{height:533.374350px;}
.h22{height:600.784350px;}
.h25{height:932.379600px;}
.h24{height:1310.696100px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w1b{width:44.844915px;}
.w18{width:52.618035px;}
.w12{width:68.602755px;}
.w17{width:80.065335px;}
.w10{width:96.665715px;}
.w13{width:97.542675px;}
.w11{width:121.420110px;}
.w15{width:140.274900px;}
.w14{width:190.104900px;}
.wb{width:283.217250px;}
.wa{width:307.597650px;}
.w9{width:316.115550px;}
.wc{width:317.413350px;}
.w8{width:359.570700px;}
.w7{width:374.692500px;}
.w6{width:429.718650px;}
.w5{width:527.325150px;}
.w1c{width:556.151550px;}
.w16{width:558.748500px;}
.w19{width:645.868050px;}
.w1a{width:731.638200px;}
.wf{width:731.997000px;}
.wd{width:1468.555350px;}
.we{width:1471.555350px;}
.w3{width:2332.098000px;}
.w2{width:2349.978000px;}
.w4{width:3498.823500px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x20{left:-4.424700px;}
.x28{left:-2.551500px;}
.x1d{left:-1.355400px;}
.x0{left:0.000000px;}
.x8{left:8.046000px;}
.x6{left:9.834015px;}
.xd{left:13.106100px;}
.x4{left:17.880000px;}
.xf{left:19.451550px;}
.x2{left:26.820000px;}
.x1b{left:37.155900px;}
.x5{left:38.541045px;}
.x24{left:44.880000px;}
.x17{left:53.397600px;}
.x13{left:68.279250px;}
.x25{left:71.880000px;}
.x2d{left:84.253005px;}
.x16{left:94.527600px;}
.x11{left:131.646000px;}
.x23{left:158.198700px;}
.x19{left:159.698700px;}
.x14{left:161.198700px;}
.xc{left:162.972600px;}
.x1a{left:165.922800px;}
.xa{left:168.032700px;}
.x1c{left:179.782665px;}
.x18{left:187.077600px;}
.x15{left:204.387600px;}
.x1f{left:207.503400px;}
.x21{left:300.513300px;}
.x1e{left:321.560400px;}
.x22{left:421.825200px;}
.x12{left:735.269550px;}
.x9{left:908.867850px;}
.x26{left:1066.102050px;}
.x7{left:1092.594900px;}
.x29{left:1142.068050px;}
.xb{left:1186.694250px;}
.x1{left:1204.372350px;}
.x3{left:1213.312350px;}
.xe{left:1317.382350px;}
.x10{left:1341.762900px;}
.x27{left:1503.478500px;}
.x2a{left:1946.151000px;}
.x2b{left:1954.420500px;}
.x2c{left:2676.039000px;}
.x2e{left:2714.172000px;}
@media print{
.v2{vertical-align:-27.925333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.608000pt;}
.v1{vertical-align:50.773333pt;}
.v4{vertical-align:52.439093pt;}
.lsb{letter-spacing:-23.680000pt;}
.ls9{letter-spacing:-12.160000pt;}
.lsa{letter-spacing:-2.267714pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000348pt;}
.ls0{letter-spacing:0.001768pt;}
.ls6{letter-spacing:7.873987pt;}
.ls7{letter-spacing:23.669253pt;}
.ls4{letter-spacing:23.669280pt;}
.ls5{letter-spacing:50.357333pt;}
.ls2{letter-spacing:315.821547pt;}
.ls1{letter-spacing:404.687573pt;}
.ws7{word-spacing:-47.146667pt;}
.ws5{word-spacing:-44.480000pt;}
.ws0{word-spacing:-39.537783pt;}
.ws10{word-spacing:-35.626667pt;}
.ws2{word-spacing:-32.618667pt;}
.ws4{word-spacing:-26.688000pt;}
.ws1{word-spacing:-21.745783pt;}
.ws6{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.141732pt;}
.wsf{word-spacing:-0.117333pt;}
.ws3{word-spacing:-0.096000pt;}
.ws11{word-spacing:0.000000pt;}
.wsb{word-spacing:23.527481pt;}
.wsa{word-spacing:23.527495pt;}
.ws9{word-spacing:23.527508pt;}
.wse{word-spacing:23.527518pt;}
.ws8{word-spacing:23.527521pt;}
.wsd{word-spacing:25.576917pt;}
._6{margin-left:-19.626667pt;}
._e{margin-left:-13.024000pt;}
._d{margin-left:-10.794667pt;}
._4{margin-left:-8.682667pt;}
._0{margin-left:-5.760000pt;}
._1{margin-left:-3.841785pt;}
._2{margin-left:-2.112000pt;}
._3{width:2.112000pt;}
._5{width:12.160000pt;}
._f{width:23.681785pt;}
._a{width:50.357333pt;}
._c{width:194.598133pt;}
._b{width:299.558400pt;}
._8{width:366.094187pt;}
._7{width:436.959893pt;}
._9{width:694.277333pt;}
.fs4{font-size:78.222240pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:100.629760pt;}
.fs3{font-size:117.333333pt;}
.fs7{font-size:141.732107pt;}
.fs2{font-size:142.222240pt;}
.fs6{font-size:160.000000pt;}
.fs1{font-size:213.333333pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:0.354360pt;}
.y40{bottom:0.354760pt;}
.y42{bottom:0.389427pt;}
.y3e{bottom:0.496093pt;}
.y8b{bottom:2.414400pt;}
.y28{bottom:2.930667pt;}
.y26{bottom:4.264000pt;}
.y2a{bottom:6.930667pt;}
.y3c{bottom:6.997333pt;}
.y45{bottom:7.689427pt;}
.y1d{bottom:18.506667pt;}
.y8{bottom:22.630667pt;}
.y71{bottom:22.648000pt;}
.y9{bottom:24.011600pt;}
.y4d{bottom:25.977333pt;}
.y59{bottom:27.213733pt;}
.y20{bottom:29.725333pt;}
.y22{bottom:30.665333pt;}
.y2f{bottom:41.770667pt;}
.y3{bottom:43.521333pt;}
.y7{bottom:51.649333pt;}
.y1c{bottom:53.572000pt;}
.y31{bottom:60.905333pt;}
.y5e{bottom:60.906667pt;}
.y1f{bottom:64.790667pt;}
.y70{bottom:65.684000pt;}
.y58{bottom:71.607467pt;}
.y3a{bottom:73.092000pt;}
.y18{bottom:77.514667pt;}
.y4c{bottom:82.346667pt;}
.y24{bottom:88.042667pt;}
.y1b{bottom:88.637333pt;}
.y14{bottom:91.200000pt;}
.y6{bottom:100.982667pt;}
.y89{bottom:108.719733pt;}
.y6f{bottom:108.720000pt;}
.y17{bottom:112.580000pt;}
.y39{bottom:116.128000pt;}
.y1a{bottom:118.090667pt;}
.y57{bottom:119.650133pt;}
.y2e{bottom:119.861333pt;}
.y13{bottom:126.265333pt;}
.y4b{bottom:138.714667pt;}
.y16{bottom:142.033333pt;}
.y2{bottom:142.188000pt;}
.y5{bottom:143.033333pt;}
.ye{bottom:156.632133pt;}
.y38{bottom:159.164000pt;}
.y12{bottom:161.330667pt;}
.y88{bottom:165.088800pt;}
.y7f{bottom:166.446667pt;}
.y56{bottom:181.972933pt;}
.y4a{bottom:195.084000pt;}
.y11{bottom:196.396000pt;}
.y2d{bottom:197.952000pt;}
.y87{bottom:208.124533pt;}
.yd{bottom:213.171467pt;}
.y7e{bottom:214.284000pt;}
.y37{bottom:215.533333pt;}
.y55{bottom:225.008667pt;}
.y10{bottom:225.850667pt;}
.y6e{bottom:245.089333pt;}
.y86{bottom:251.160267pt;}
.y49{bottom:251.453333pt;}
.y36{bottom:258.774667pt;}
.y54{bottom:268.044400pt;}
.yc{bottom:269.710800pt;}
.y2c{bottom:276.042667pt;}
.y6d{bottom:288.125333pt;}
.y48{bottom:294.489333pt;}
.y85{bottom:307.529333pt;}
.y53{bottom:311.080133pt;}
.y35{bottom:321.097333pt;}
.y7d{bottom:323.986667pt;}
.yb{bottom:326.250133pt;}
.y6c{bottom:331.160000pt;}
.y84{bottom:350.565067pt;}
.y34{bottom:364.133333pt;}
.y7c{bottom:367.022667pt;}
.y52{bottom:367.449200pt;}
.y47{bottom:368.433333pt;}
.y6b{bottom:374.196000pt;}
.ya{bottom:382.789467pt;}
.y83{bottom:393.600800pt;}
.y33{bottom:407.374667pt;}
.y7b{bottom:410.057333pt;}
.y51{bottom:410.484933pt;}
.y82{bottom:436.636533pt;}
.y50{bottom:453.520667pt;}
.y4f{bottom:496.556400pt;}
.y6a{bottom:510.565333pt;}
.y7a{bottom:519.760000pt;}
.y69{bottom:553.601333pt;}
.y79{bottom:562.796000pt;}
.y68{bottom:596.637333pt;}
.y78{bottom:605.832000pt;}
.y67{bottom:639.673333pt;}
.y77{bottom:648.868000pt;}
.y76{bottom:705.236000pt;}
.y81{bottom:717.066533pt;}
.y4e{bottom:729.260267pt;}
.y8a{bottom:737.300400pt;}
.y75{bottom:748.272000pt;}
.y66{bottom:776.041333pt;}
.y74{bottom:791.308000pt;}
.y5c{bottom:800.513333pt;}
.y65{bottom:819.077333pt;}
.y5a{bottom:849.708400pt;}
.y64{bottom:862.113333pt;}
.y63{bottom:998.482667pt;}
.y62{bottom:1041.518667pt;}
.y61{bottom:1084.553333pt;}
.y60{bottom:1127.589333pt;}
.y73{bottom:1387.341333pt;}
.y32{bottom:1392.418667pt;}
.y44{bottom:1409.985333pt;}
.y3b{bottom:1410.677333pt;}
.y80{bottom:1553.398667pt;}
.y43{bottom:1651.849333pt;}
.y41{bottom:1651.956000pt;}
.y3f{bottom:1651.990667pt;}
.y3d{bottom:1800.449333pt;}
.y30{bottom:1900.193333pt;}
.y46{bottom:2169.800000pt;}
.y72{bottom:2317.074667pt;}
.y5f{bottom:2648.386667pt;}
.y15{bottom:2695.588000pt;}
.y1e{bottom:2850.894667pt;}
.yf{bottom:2988.788000pt;}
.y19{bottom:3106.672000pt;}
.y2b{bottom:3355.786667pt;}
.y23{bottom:3748.513333pt;}
.y29{bottom:3772.249333pt;}
.y25{bottom:3774.916000pt;}
.y27{bottom:3776.249333pt;}
.y5d{bottom:3872.350667pt;}
.y21{bottom:3916.444000pt;}
.y4{bottom:4055.406667pt;}
.y1{bottom:4224.477333pt;}
.h1d{height:24.342480pt;}
.h1c{height:24.555080pt;}
.h19{height:24.732253pt;}
.h1b{height:24.873987pt;}
.h1e{height:30.612720pt;}
.h20{height:38.006880pt;}
.h7{height:57.845333pt;}
.ha{height:70.176000pt;}
.he{height:80.675867pt;}
.h6{height:85.770667pt;}
.h17{height:90.378667pt;}
.h23{height:90.380267pt;}
.hd{height:95.330307pt;}
.h1a{height:97.511689pt;}
.h12{height:98.666667pt;}
.h11{height:100.000000pt;}
.h13{height:102.666667pt;}
.hf{height:116.960000pt;}
.h1f{height:121.672368pt;}
.h15{height:129.013187pt;}
.h10{height:138.051867pt;}
.hc{height:150.005467pt;}
.h5{height:155.946667pt;}
.hb{height:173.947733pt;}
.h4{height:211.140000pt;}
.h3{height:233.920000pt;}
.h2{height:245.013333pt;}
.h9{height:257.765333pt;}
.h14{height:344.149067pt;}
.h8{height:420.461467pt;}
.h18{height:424.000000pt;}
.h21{height:436.539200pt;}
.h27{height:445.333333pt;}
.h16{height:451.127333pt;}
.h26{height:474.110533pt;}
.h22{height:534.030533pt;}
.h25{height:828.781867pt;}
.h24{height:1165.063200pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w1b{width:39.862147pt;}
.w18{width:46.771587pt;}
.w12{width:60.980227pt;}
.w17{width:71.169187pt;}
.w10{width:85.925080pt;}
.w13{width:86.704600pt;}
.w11{width:107.928987pt;}
.w15{width:124.688800pt;}
.w14{width:168.982133pt;}
.wb{width:251.748667pt;}
.wa{width:273.420133pt;}
.w9{width:280.991600pt;}
.wc{width:282.145200pt;}
.w8{width:319.618400pt;}
.w7{width:333.060000pt;}
.w6{width:381.972133pt;}
.w5{width:468.733467pt;}
.w1c{width:494.356933pt;}
.w16{width:496.665333pt;}
.w19{width:574.104933pt;}
.w1a{width:650.345067pt;}
.wf{width:650.664000pt;}
.wd{width:1305.382533pt;}
.we{width:1308.049200pt;}
.w3{width:2072.976000pt;}
.w2{width:2088.869333pt;}
.w4{width:3110.065333pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x20{left:-3.933067pt;}
.x28{left:-2.268000pt;}
.x1d{left:-1.204800pt;}
.x0{left:0.000000pt;}
.x8{left:7.152000pt;}
.x6{left:8.741347pt;}
.xd{left:11.649867pt;}
.x4{left:15.893333pt;}
.xf{left:17.290267pt;}
.x2{left:23.840000pt;}
.x1b{left:33.027467pt;}
.x5{left:34.258707pt;}
.x24{left:39.893333pt;}
.x17{left:47.464533pt;}
.x13{left:60.692667pt;}
.x25{left:63.893333pt;}
.x2d{left:74.891560pt;}
.x16{left:84.024533pt;}
.x11{left:117.018667pt;}
.x23{left:140.621067pt;}
.x19{left:141.954400pt;}
.x14{left:143.287733pt;}
.xc{left:144.864533pt;}
.x1a{left:147.486933pt;}
.xa{left:149.362400pt;}
.x1c{left:159.806813pt;}
.x18{left:166.291200pt;}
.x15{left:181.677867pt;}
.x1f{left:184.447467pt;}
.x21{left:267.122933pt;}
.x1e{left:285.831467pt;}
.x22{left:374.955733pt;}
.x12{left:653.572933pt;}
.x9{left:807.882533pt;}
.x26{left:947.646267pt;}
.x7{left:971.195467pt;}
.x29{left:1015.171600pt;}
.xb{left:1054.839333pt;}
.x1{left:1070.553200pt;}
.x3{left:1078.499867pt;}
.xe{left:1171.006533pt;}
.x10{left:1192.678133pt;}
.x27{left:1336.425333pt;}
.x2a{left:1729.912000pt;}
.x2b{left:1737.262667pt;}
.x2c{left:2378.701333pt;}
.x2e{left:2412.597333pt;}
}




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