
    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_5461b2cca72bfea37d2e4a53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.676270;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_1528a72a08d3c9aae82c1264.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_91dd1f5f5034254bb90d7c4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8edfc7bd8c071422577c6327.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3d6e960da7d7646b915ecd30.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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;}
.m8{transform:matrix(0.000000,-0.139303,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.139303,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.139303,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.272832,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.272832,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.272832,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.303120,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.303120,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.303120,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.343550,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.343550,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.343550,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.181924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181924,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.206189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206189,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.229079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229079,0.000000,0.000000,0.250000,0,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);}
.m7{transform:matrix(0.448661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448661,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-31.806000px;}
.v3{vertical-align:-25.848000px;}
.v2{vertical-align:-9.786456px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.130278px;}
.ls3{letter-spacing:47.287560px;}
.ls1{letter-spacing:57.968724px;}
.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:-73.118028px;}
.ws1{word-spacing:-46.545972px;}
.ws2{word-spacing:-36.217284px;}
.ws8{word-spacing:-29.256186px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:120.115501px;}
.ws4{word-spacing:134.781822px;}
.ws5{word-spacing:166.600206px;}
.ws3{word-spacing:998.199946px;}
._9{margin-left:-462.129007px;}
._7{margin-left:-11.880000px;}
._e{margin-left:-9.578052px;}
._4{margin-left:-7.452000px;}
._8{margin-left:-5.940000px;}
._5{margin-left:-3.456000px;}
._6{margin-left:-2.279748px;}
._3{margin-left:-1.188000px;}
._1{width:1.091748px;}
._f{width:3.752436px;}
._2{width:5.372868px;}
._a{width:6.400788px;}
._b{width:1002.869756px;}
._d{width:2044.939500px;}
._c{width:2087.461500px;}
._0{width:2113.657500px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:28.874998px;}
.fsb{font-size:30.692165px;}
.fs11{font-size:41.249997px;}
.fs7{font-size:41.755547px;}
.fsa{font-size:42.177222px;}
.fse{font-size:45.895443px;}
.fs17{font-size:46.260000px;}
.fs8{font-size:49.197395px;}
.fsd{font-size:50.086956px;}
.fsc{font-size:50.612666px;}
.fs14{font-size:51.820354px;}
.fs16{font-size:54.084000px;}
.fs4{font-size:57.654000px;}
.fs6{font-size:59.650782px;}
.fs10{font-size:60.036000px;}
.fsf{font-size:60.104347px;}
.fs15{font-size:62.928000px;}
.fs13{font-size:74.029076px;}
.fs0{font-size:84.018000px;}
.fs18{font-size:105.618000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:130.278000px;}
.fs1{font-size:155.964000px;}
.fs3{font-size:168.036000px;}
.fs9{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y69{bottom:12.892675px;}
.y31{bottom:14.439767px;}
.y15{bottom:14.983158px;}
.y40{bottom:17.147739px;}
.y68{bottom:24.750584px;}
.y30{bottom:28.855810px;}
.y3f{bottom:34.267304px;}
.y14{bottom:34.928888px;}
.y2c{bottom:37.545000px;}
.y2{bottom:40.861500px;}
.y56{bottom:48.726000px;}
.y32{bottom:59.137469px;}
.y6a{bottom:60.771948px;}
.y41{bottom:71.260495px;}
.y2b{bottom:73.212574px;}
.y13{bottom:74.238000px;}
.y2f{bottom:75.726000px;}
.y6d{bottom:80.165620px;}
.y53{bottom:80.277000px;}
.y1f{bottom:80.589288px;}
.y16{bottom:87.106732px;}
.y7e{bottom:88.101000px;}
.y2a{bottom:95.092294px;}
.y52{bottom:97.242000px;}
.y6b{bottom:100.365023px;}
.y3e{bottom:102.726000px;}
.y6e{bottom:111.254180px;}
.y20{bottom:111.855842px;}
.y51{bottom:114.207000px;}
.y29{bottom:116.972015px;}
.y7d{bottom:124.072500px;}
.y6f{bottom:124.616911px;}
.y42{bottom:125.516419px;}
.y50{bottom:131.002500px;}
.y33{bottom:133.704033px;}
.y12{bottom:134.745000px;}
.y28{bottom:138.851735px;}
.y6c{bottom:139.958098px;}
.y17{bottom:147.234721px;}
.y21{bottom:147.746226px;}
.y4f{bottom:147.925500px;}
.y4e{bottom:164.890500px;}
.y11{bottom:171.183000px;}
.y43{bottom:179.772343px;}
.y61{bottom:190.248914px;}
.y22{bottom:195.848617px;}
.y60{bottom:202.106823px;}
.y47{bottom:203.962694px;}
.y7c{bottom:206.602500px;}
.y18{bottom:207.362709px;}
.y34{bottom:208.270598px;}
.y37{bottom:208.679384px;}
.y62{bottom:210.857450px;}
.y10{bottom:215.446500px;}
.y1d{bottom:221.560900px;}
.y44{bottom:234.028266px;}
.ya{bottom:234.325500px;}
.y23{bottom:234.330529px;}
.y72{bottom:235.855500px;}
.y63{bottom:240.754621px;}
.y67{bottom:249.857064px;}
.y9{bottom:264.642000px;}
.y1e{bottom:266.531997px;}
.y19{bottom:267.490697px;}
.y24{bottom:268.002203px;}
.y64{bottom:270.651791px;}
.y7b{bottom:282.501000px;}
.y35{bottom:282.837162px;}
.y45{bottom:288.284190px;}
.y8{bottom:294.958500px;}
.y25{bottom:298.252606px;}
.y65{bottom:300.548962px;}
.yf{bottom:309.202500px;}
.y7a{bottom:318.472500px;}
.y4c{bottom:322.142867px;}
.y7{bottom:325.105500px;}
.y1a{bottom:327.618686px;}
.y66{bottom:330.446132px;}
.y26{bottom:340.155789px;}
.y4b{bottom:340.866780px;}
.y46{bottom:342.540114px;}
.ye{bottom:353.422500px;}
.y6{bottom:355.378500px;}
.y36{bottom:357.403727px;}
.y4a{bottom:359.590693px;}
.y3c{bottom:363.262527px;}
.y58{bottom:366.234059px;}
.y59{bottom:370.181812px;}
.y27{bottom:370.219783px;}
.y49{bottom:378.314605px;}
.y3b{bottom:378.733001px;}
.y57{bottom:379.463062px;}
.y71{bottom:382.081500px;}
.y5{bottom:385.525500px;}
.y1b{bottom:387.746674px;}
.y5a{bottom:388.213689px;}
.y3a{bottom:394.203474px;}
.y79{bottom:394.411500px;}
.y48{bottom:406.605910px;}
.y39{bottom:409.673947px;}
.y5b{bottom:418.110859px;}
.y5f{bottom:427.213303px;}
.y78{bottom:430.383000px;}
.y38{bottom:433.497487px;}
.yd{bottom:447.051000px;}
.y1c{bottom:447.874662px;}
.y5c{bottom:448.008030px;}
.y5d{bottom:477.905200px;}
.yc{bottom:491.442000px;}
.y77{bottom:506.281500px;}
.y5e{bottom:507.802371px;}
.y76{bottom:542.295000px;}
.y70{bottom:554.881500px;}
.y2d{bottom:592.978500px;}
.y4{bottom:593.277000px;}
.y3d{bottom:596.422500px;}
.y74{bottom:600.037500px;}
.y75{bottom:603.481500px;}
.y2e{bottom:608.881500px;}
.yb{bottom:611.901000px;}
.y55{bottom:617.428500px;}
.y54{bottom:621.042000px;}
.y4d{bottom:622.530000px;}
.y73{bottom:633.330000px;}
.y3{bottom:636.774000px;}
.h19{height:26.824873px;}
.h10{height:28.513021px;}
.h18{height:38.321248px;}
.hf{height:39.182639px;}
.h1d{height:39.189773px;}
.h14{height:42.636866px;}
.h16{height:43.502648px;}
.h1c{height:45.598219px;}
.hc{height:45.704380px;}
.h13{height:46.530782px;}
.h11{height:47.019167px;}
.h1b{height:48.141108px;}
.h20{height:50.167793px;}
.h1e{height:50.683793px;}
.h21{height:50.845793px;}
.hb{height:55.415577px;}
.h15{height:55.836939px;}
.h3{height:55.998325px;}
.h7{height:62.594660px;}
.h9{height:62.600660px;}
.h1a{height:68.773012px;}
.h1f{height:76.531793px;}
.h5{height:78.257812px;}
.h8{height:94.400660px;}
.h4{height:113.012977px;}
.h6{height:121.760461px;}
.hd{height:191.270789px;}
.h12{height:431.999996px;}
.he{height:455.513997px;}
.ha{height:514.487996px;}
.h17{height:539.999965px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w5{width:528.944976px;}
.w4{width:552.458965px;}
.w3{width:566.999975px;}
.w6{width:847.969421px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x2b{left:14.284805px;}
.x2a{left:18.948575px;}
.x32{left:21.290466px;}
.x36{left:22.960500px;}
.xd{left:27.000000px;}
.x31{left:28.587124px;}
.x11{left:33.196711px;}
.x40{left:41.264375px;}
.x10{left:42.671053px;}
.x28{left:46.827411px;}
.x3f{left:48.349189px;}
.x3c{left:56.216750px;}
.x1{left:59.569500px;}
.x46{left:66.586500px;}
.x43{left:79.512000px;}
.x21{left:85.990260px;}
.x47{left:87.591000px;}
.x24{left:93.586500px;}
.x34{left:97.322720px;}
.x22{left:103.637583px;}
.x1f{left:116.282284px;}
.x42{left:118.630500px;}
.x38{left:124.322500px;}
.x3d{left:131.394759px;}
.x20{left:133.929607px;}
.x23{left:138.444000px;}
.x25{left:150.903000px;}
.x1d{left:154.147313px;}
.x2c{left:156.173440px;}
.x1e{left:171.794636px;}
.x1b{left:184.439337px;}
.x26{left:199.969500px;}
.x1c{left:202.086660px;}
.x1a{left:214.731360px;}
.x33{left:220.634811px;}
.x2{left:232.030500px;}
.x30{left:236.617540px;}
.x18{left:260.169395px;}
.x2d{left:263.566043px;}
.xe{left:267.707624px;}
.x19{left:269.991498px;}
.x29{left:284.966635px;}
.xf{left:293.801701px;}
.x35{left:298.360500px;}
.x16{left:313.180436px;}
.x17{left:323.002539px;}
.x14{left:351.045466px;}
.x15{left:360.867568px;}
.x3{left:379.063500px;}
.x12{left:385.123992px;}
.x13{left:394.946095px;}
.x39{left:410.799048px;}
.x3e{left:421.498562px;}
.x45{left:431.703000px;}
.x44{left:453.769500px;}
.x3a{left:466.591957px;}
.x2e{left:470.395500px;}
.xa{left:485.235000px;}
.x3b{left:490.573308px;}
.x8{left:512.235000px;}
.x37{left:593.235000px;}
.x27{left:608.541000px;}
.xb{left:619.512000px;}
.x5{left:627.888000px;}
.x2f{left:632.055000px;}
.xc{left:645.448500px;}
.x9{left:684.141000px;}
.x7{left:755.703000px;}
.x6{left:768.160500px;}
.x41{left:789.463500px;}
.x4{left:844.186500px;}
@media print{
.v1{vertical-align:-28.272000pt;}
.v3{vertical-align:-22.976000pt;}
.v2{vertical-align:-8.699072pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.115803pt;}
.ls3{letter-spacing:42.033387pt;}
.ls1{letter-spacing:51.527755pt;}
.ws7{word-spacing:-64.993803pt;}
.ws1{word-spacing:-41.374197pt;}
.ws2{word-spacing:-32.193141pt;}
.ws8{word-spacing:-26.005499pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:106.769334pt;}
.ws4{word-spacing:119.806064pt;}
.ws5{word-spacing:148.089072pt;}
.ws3{word-spacing:887.288841pt;}
._9{margin-left:-410.781340pt;}
._7{margin-left:-10.560000pt;}
._e{margin-left:-8.513824pt;}
._4{margin-left:-6.624000pt;}
._8{margin-left:-5.280000pt;}
._5{margin-left:-3.072000pt;}
._6{margin-left:-2.026443pt;}
._3{margin-left:-1.056000pt;}
._1{width:0.970443pt;}
._f{width:3.335499pt;}
._2{width:4.775883pt;}
._a{width:5.689589pt;}
._b{width:891.439783pt;}
._d{width:1817.724000pt;}
._c{width:1855.521333pt;}
._0{width:1878.806667pt;}
.fs12{font-size:25.666665pt;}
.fsb{font-size:27.281924pt;}
.fs11{font-size:36.666664pt;}
.fs7{font-size:37.116042pt;}
.fsa{font-size:37.490864pt;}
.fse{font-size:40.795949pt;}
.fs17{font-size:41.120000pt;}
.fs8{font-size:43.731018pt;}
.fsd{font-size:44.521739pt;}
.fsc{font-size:44.989037pt;}
.fs14{font-size:46.062536pt;}
.fs16{font-size:48.074667pt;}
.fs4{font-size:51.248000pt;}
.fs6{font-size:53.022917pt;}
.fs10{font-size:53.365333pt;}
.fsf{font-size:53.426087pt;}
.fs15{font-size:55.936000pt;}
.fs13{font-size:65.803624pt;}
.fs0{font-size:74.682667pt;}
.fs18{font-size:93.882667pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:115.802667pt;}
.fs1{font-size:138.634667pt;}
.fs3{font-size:149.365333pt;}
.fs9{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y69{bottom:11.460156pt;}
.y31{bottom:12.835349pt;}
.y15{bottom:13.318363pt;}
.y40{bottom:15.242435pt;}
.y68{bottom:22.000519pt;}
.y30{bottom:25.649609pt;}
.y3f{bottom:30.459826pt;}
.y14{bottom:31.047901pt;}
.y2c{bottom:33.373333pt;}
.y2{bottom:36.321333pt;}
.y56{bottom:43.312000pt;}
.y32{bottom:52.566639pt;}
.y6a{bottom:54.019509pt;}
.y41{bottom:63.342662pt;}
.y2b{bottom:65.077843pt;}
.y13{bottom:65.989333pt;}
.y2f{bottom:67.312000pt;}
.y6d{bottom:71.258329pt;}
.y53{bottom:71.357333pt;}
.y1f{bottom:71.634922pt;}
.y16{bottom:77.428206pt;}
.y7e{bottom:78.312000pt;}
.y2a{bottom:84.526484pt;}
.y52{bottom:86.437333pt;}
.y6b{bottom:89.213353pt;}
.y3e{bottom:91.312000pt;}
.y6e{bottom:98.892604pt;}
.y20{bottom:99.427415pt;}
.y51{bottom:101.517333pt;}
.y29{bottom:103.975124pt;}
.y7d{bottom:110.286667pt;}
.y6f{bottom:110.770588pt;}
.y42{bottom:111.570150pt;}
.y50{bottom:116.446667pt;}
.y33{bottom:118.848030pt;}
.y12{bottom:119.773333pt;}
.y28{bottom:123.423765pt;}
.y6c{bottom:124.407198pt;}
.y17{bottom:130.875307pt;}
.y21{bottom:131.329979pt;}
.y4f{bottom:131.489333pt;}
.y4e{bottom:146.569333pt;}
.y11{bottom:152.162667pt;}
.y43{bottom:159.797638pt;}
.y61{bottom:169.110145pt;}
.y22{bottom:174.087659pt;}
.y60{bottom:179.650509pt;}
.y47{bottom:181.300172pt;}
.y7c{bottom:183.646667pt;}
.y18{bottom:184.322408pt;}
.y34{bottom:185.129420pt;}
.y37{bottom:185.492786pt;}
.y62{bottom:187.428845pt;}
.y10{bottom:191.508000pt;}
.y1d{bottom:196.943022pt;}
.y44{bottom:208.025126pt;}
.ya{bottom:208.289333pt;}
.y23{bottom:208.293804pt;}
.y72{bottom:209.649333pt;}
.y63{bottom:214.004107pt;}
.y67{bottom:222.095168pt;}
.y9{bottom:235.237333pt;}
.y1e{bottom:236.917331pt;}
.y19{bottom:237.769509pt;}
.y24{bottom:238.224180pt;}
.y64{bottom:240.579370pt;}
.y7b{bottom:251.112000pt;}
.y35{bottom:251.410811pt;}
.y45{bottom:256.252613pt;}
.y8{bottom:262.185333pt;}
.y25{bottom:265.113427pt;}
.y65{bottom:267.154633pt;}
.yf{bottom:274.846667pt;}
.y7a{bottom:283.086667pt;}
.y4c{bottom:286.349215pt;}
.y7{bottom:288.982667pt;}
.y1a{bottom:291.216609pt;}
.y66{bottom:293.729895pt;}
.y26{bottom:302.360701pt;}
.y4b{bottom:302.992693pt;}
.y46{bottom:304.480101pt;}
.ye{bottom:314.153333pt;}
.y6{bottom:315.892000pt;}
.y36{bottom:317.692202pt;}
.y4a{bottom:319.636171pt;}
.y3c{bottom:322.900024pt;}
.y58{bottom:325.541385pt;}
.y59{bottom:329.050500pt;}
.y27{bottom:329.084252pt;}
.y49{bottom:336.279649pt;}
.y3b{bottom:336.651556pt;}
.y57{bottom:337.300499pt;}
.y71{bottom:339.628000pt;}
.y5{bottom:342.689333pt;}
.y1b{bottom:344.663710pt;}
.y5a{bottom:345.078834pt;}
.y3a{bottom:350.403088pt;}
.y79{bottom:350.588000pt;}
.y48{bottom:361.427475pt;}
.y39{bottom:364.154620pt;}
.y5b{bottom:371.654097pt;}
.y5f{bottom:379.745158pt;}
.y78{bottom:382.562667pt;}
.y38{bottom:385.331100pt;}
.yd{bottom:397.378667pt;}
.y1c{bottom:398.110811pt;}
.y5c{bottom:398.229360pt;}
.y5d{bottom:424.804623pt;}
.yc{bottom:436.837333pt;}
.y77{bottom:450.028000pt;}
.y5e{bottom:451.379885pt;}
.y76{bottom:482.040000pt;}
.y70{bottom:493.228000pt;}
.y2d{bottom:527.092000pt;}
.y4{bottom:527.357333pt;}
.y3d{bottom:530.153333pt;}
.y74{bottom:533.366667pt;}
.y75{bottom:536.428000pt;}
.y2e{bottom:541.228000pt;}
.yb{bottom:543.912000pt;}
.y55{bottom:548.825333pt;}
.y54{bottom:552.037333pt;}
.y4d{bottom:553.360000pt;}
.y73{bottom:562.960000pt;}
.y3{bottom:566.021333pt;}
.h19{height:23.844332pt;}
.h10{height:25.344908pt;}
.h18{height:34.063331pt;}
.hf{height:34.829013pt;}
.h1d{height:34.835354pt;}
.h14{height:37.899437pt;}
.h16{height:38.669021pt;}
.h1c{height:40.531750pt;}
.hc{height:40.626115pt;}
.h13{height:41.360695pt;}
.h11{height:41.794815pt;}
.h1b{height:42.792096pt;}
.h20{height:44.593594pt;}
.h1e{height:45.052260pt;}
.h21{height:45.196260pt;}
.hb{height:49.258290pt;}
.h15{height:49.632834pt;}
.h3{height:49.776289pt;}
.h7{height:55.639698pt;}
.h9{height:55.645031pt;}
.h1a{height:61.131566pt;}
.h1f{height:68.028260pt;}
.h5{height:69.562500pt;}
.h8{height:83.911698pt;}
.h4{height:100.455979pt;}
.h6{height:108.231521pt;}
.hd{height:170.018479pt;}
.h12{height:383.999997pt;}
.he{height:404.901331pt;}
.ha{height:457.322663pt;}
.h17{height:479.999969pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w5{width:470.173312pt;}
.w4{width:491.074635pt;}
.w3{width:503.999977pt;}
.w6{width:753.750597pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x2b{left:12.697604pt;}
.x2a{left:16.843178pt;}
.x32{left:18.924858pt;}
.x36{left:20.409333pt;}
.xd{left:24.000000pt;}
.x31{left:25.410777pt;}
.x11{left:29.508187pt;}
.x40{left:36.679444pt;}
.x10{left:37.929825pt;}
.x28{left:41.624365pt;}
.x3f{left:42.977057pt;}
.x3c{left:49.970444pt;}
.x1{left:52.950667pt;}
.x46{left:59.188000pt;}
.x43{left:70.677333pt;}
.x21{left:76.435787pt;}
.x47{left:77.858667pt;}
.x24{left:83.188000pt;}
.x34{left:86.509085pt;}
.x22{left:92.122296pt;}
.x1f{left:103.362030pt;}
.x42{left:105.449333pt;}
.x38{left:110.508888pt;}
.x3d{left:116.795341pt;}
.x20{left:119.048539pt;}
.x23{left:123.061333pt;}
.x25{left:134.136000pt;}
.x1d{left:137.019834pt;}
.x2c{left:138.820835pt;}
.x1e{left:152.706343pt;}
.x1b{left:163.946077pt;}
.x26{left:177.750667pt;}
.x1c{left:179.632586pt;}
.x1a{left:190.872320pt;}
.x33{left:196.119832pt;}
.x2{left:206.249333pt;}
.x30{left:210.326702pt;}
.x18{left:231.261685pt;}
.x2d{left:234.280927pt;}
.xe{left:237.962332pt;}
.x19{left:239.992443pt;}
.x29{left:253.303675pt;}
.xf{left:261.157067pt;}
.x35{left:265.209333pt;}
.x16{left:278.382610pt;}
.x17{left:287.113368pt;}
.x14{left:312.040414pt;}
.x15{left:320.771172pt;}
.x3{left:336.945333pt;}
.x12{left:342.332437pt;}
.x13{left:351.063195pt;}
.x39{left:365.154709pt;}
.x3e{left:374.665389pt;}
.x45{left:383.736000pt;}
.x44{left:403.350667pt;}
.x3a{left:414.748407pt;}
.x2e{left:418.129333pt;}
.xa{left:431.320000pt;}
.x3b{left:436.065163pt;}
.x8{left:455.320000pt;}
.x37{left:527.320000pt;}
.x27{left:540.925333pt;}
.xb{left:550.677333pt;}
.x5{left:558.122667pt;}
.x2f{left:561.826667pt;}
.xc{left:573.732000pt;}
.x9{left:608.125333pt;}
.x7{left:671.736000pt;}
.x6{left:682.809333pt;}
.x41{left:701.745333pt;}
.x4{left:750.388000pt;}
}




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