
    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_eb56dd5ed3eec7700da78bb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_69f808ed38739bc98a0dc876.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951660;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_c9b7bcc4af0bd54f1ae4925b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_c7231738798bf50c3bad52e6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_34e59acba43c3d5bd61fa2a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_3701628039649fba0779b899.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_29c63125d2d5380d92aff9f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:33.960000px;}
.ls5{letter-spacing:55.386720px;}
.ls0{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-59.760000px;}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.284960px;}
.fc3{color:transparent;}
.fc2{color:rgb(15,17,21);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y4{bottom:-15.150000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.040000px;}
.y3{bottom:6.990000px;}
.y6a{bottom:119.556000px;}
.yc8{bottom:128.736000px;}
.ya9{bottom:138.996000px;}
.y69{bottom:140.256000px;}
.y21{bottom:141.696000px;}
.y3e{bottom:144.036000px;}
.yc7{bottom:149.256000px;}
.y52{bottom:157.170000px;}
.ya8{bottom:159.690000px;}
.y68{bottom:160.950000px;}
.y20{bottom:162.390000px;}
.y82{bottom:166.530000px;}
.yc6{bottom:169.950000px;}
.ya7{bottom:180.390000px;}
.y67{bottom:181.650000px;}
.y81{bottom:187.230000px;}
.y3d{bottom:188.670000px;}
.yc5{bottom:190.650000px;}
.y51{bottom:192.990000px;}
.ya6{bottom:201.090000px;}
.y1f{bottom:207.930000px;}
.y3c{bottom:209.370000px;}
.yc4{bottom:211.350000px;}
.ya5{bottom:221.790000px;}
.y66{bottom:223.410000px;}
.y80{bottom:228.630000px;}
.yc3{bottom:232.050000px;}
.ya4{bottom:242.490000px;}
.y7f{bottom:249.330000px;}
.y3b{bottom:251.670000px;}
.yc2{bottom:252.750000px;}
.ya3{bottom:263.190000px;}
.y65{bottom:265.170000px;}
.y1e{bottom:266.430000px;}
.y7e{bottom:270.030000px;}
.y50{bottom:272.370000px;}
.yc1{bottom:273.450000px;}
.ya2{bottom:283.890000px;}
.y64{bottom:285.870000px;}
.y1d{bottom:287.130000px;}
.y7d{bottom:290.730000px;}
.yc0{bottom:294.150000px;}
.y3a{bottom:296.130000px;}
.ya1{bottom:304.590000px;}
.y7c{bottom:311.430000px;}
.y4f{bottom:313.950000px;}
.ybf{bottom:314.850000px;}
.y39{bottom:316.830000px;}
.ya0{bottom:325.335000px;}
.y63{bottom:327.495000px;}
.y1c{bottom:329.475000px;}
.ybe{bottom:335.595000px;}
.y38{bottom:337.575000px;}
.y9f{bottom:346.035000px;}
.y4e{bottom:355.755000px;}
.ybd{bottom:356.295000px;}
.y7b{bottom:357.015000px;}
.y9e{bottom:366.735000px;}
.y62{bottom:369.255000px;}
.y1b{bottom:374.115000px;}
.y4d{bottom:376.455000px;}
.ybc{bottom:376.995000px;}
.y37{bottom:379.875000px;}
.y9d{bottom:387.435000px;}
.y61{bottom:389.955000px;}
.y1a{bottom:394.815000px;}
.ybb{bottom:397.695000px;}
.y9c{bottom:408.135000px;}
.y19{bottom:415.515000px;}
.y7a{bottom:415.695000px;}
.y4c{bottom:418.215000px;}
.yba{bottom:418.395000px;}
.y36{bottom:426.855000px;}
.y9b{bottom:428.835000px;}
.y60{bottom:431.715000px;}
.y18{bottom:436.215000px;}
.y79{bottom:436.395000px;}
.yb9{bottom:439.095000px;}
.y9a{bottom:449.535000px;}
.y17{bottom:456.915000px;}
.y78{bottom:457.095000px;}
.y4b{bottom:459.795000px;}
.y35{bottom:462.675000px;}
.y99{bottom:470.235000px;}
.y5f{bottom:477.075000px;}
.y16{bottom:477.615000px;}
.y77{bottom:477.795000px;}
.y4a{bottom:480.495000px;}
.y98{bottom:490.935000px;}
.y15{bottom:498.315000px;}
.y76{bottom:498.495000px;}
.yb8{bottom:501.195000px;}
.y97{bottom:511.635000px;}
.y14{bottom:519.015000px;}
.y34{bottom:521.355000px;}
.yb7{bottom:521.895000px;}
.y49{bottom:522.255000px;}
.yc9{bottom:523.155000px;}
.y96{bottom:532.335000px;}
.y5e{bottom:537.915000px;}
.y13{bottom:539.715000px;}
.y33{bottom:542.055000px;}
.yb6{bottom:542.595000px;}
.y95{bottom:553.035000px;}
.y12{bottom:560.415000px;}
.y32{bottom:562.755000px;}
.yb5{bottom:563.295000px;}
.y48{bottom:564.015000px;}
.y94{bottom:573.765000px;}
.y5d{bottom:578.445000px;}
.y11{bottom:581.145000px;}
.y31{bottom:583.485000px;}
.yb4{bottom:584.025000px;}
.y47{bottom:584.745000px;}
.y75{bottom:585.285000px;}
.y93{bottom:594.465000px;}
.y5c{bottom:599.145000px;}
.y10{bottom:601.845000px;}
.y30{bottom:604.185000px;}
.yb3{bottom:604.725000px;}
.y46{bottom:605.445000px;}
.y92{bottom:615.165000px;}
.yf{bottom:622.545000px;}
.y2f{bottom:624.885000px;}
.yb2{bottom:625.425000px;}
.y91{bottom:635.865000px;}
.y5b{bottom:640.905000px;}
.ye{bottom:643.245000px;}
.y74{bottom:643.965000px;}
.y2e{bottom:645.585000px;}
.yb1{bottom:646.125000px;}
.y45{bottom:647.025000px;}
.y90{bottom:656.565000px;}
.yd{bottom:663.945000px;}
.y73{bottom:664.665000px;}
.y2d{bottom:666.285000px;}
.yb0{bottom:666.825000px;}
.y8f{bottom:677.265000px;}
.y5a{bottom:682.665000px;}
.y72{bottom:685.365000px;}
.y2c{bottom:686.985000px;}
.yaf{bottom:687.525000px;}
.y44{bottom:691.305000px;}
.y8e{bottom:697.965000px;}
.y59{bottom:703.365000px;}
.yc{bottom:703.905000px;}
.y71{bottom:706.065000px;}
.y2b{bottom:707.685000px;}
.yae{bottom:708.225000px;}
.y8d{bottom:718.665000px;}
.y70{bottom:726.765000px;}
.y43{bottom:727.125000px;}
.yad{bottom:728.925000px;}
.y8c{bottom:739.365000px;}
.y58{bottom:744.945000px;}
.y6f{bottom:747.465000px;}
.yb{bottom:748.725000px;}
.yac{bottom:749.625000px;}
.y2a{bottom:753.225000px;}
.y8b{bottom:760.065000px;}
.y6e{bottom:768.165000px;}
.yab{bottom:770.325000px;}
.y8a{bottom:780.765000px;}
.y57{bottom:786.705000px;}
.y42{bottom:787.785000px;}
.yaa{bottom:791.025000px;}
.ya{bottom:794.805000px;}
.y89{bottom:801.465000px;}
.y56{bottom:807.405000px;}
.y29{bottom:811.725000px;}
.y6d{bottom:813.525000px;}
.y88{bottom:822.210000px;}
.y41{bottom:828.510000px;}
.y28{bottom:832.470000px;}
.y9{bottom:839.670000px;}
.y87{bottom:842.910000px;}
.y40{bottom:849.210000px;}
.y27{bottom:853.170000px;}
.y86{bottom:863.610000px;}
.y26{bottom:873.870000px;}
.y6c{bottom:874.410000px;}
.y85{bottom:884.310000px;}
.y8{bottom:884.490000px;}
.y55{bottom:890.790000px;}
.y3f{bottom:891.330000px;}
.y25{bottom:894.570000px;}
.y84{bottom:905.010000px;}
.y54{bottom:911.490000px;}
.y6b{bottom:914.910000px;}
.y24{bottom:915.270000px;}
.y23{bottom:935.970000px;}
.y83{bottom:944.790000px;}
.y7{bottom:945.330000px;}
.y53{bottom:953.790000px;}
.y22{bottom:956.670000px;}
.y1{bottom:977.910000px;}
.y2{bottom:1015.560000px;}
.y5{bottom:1131.660000px;}
.h4{height:22.140000px;}
.h2{height:30.240000px;}
.he{height:47.901094px;}
.ha{height:52.066406px;}
.h5{height:52.417969px;}
.hd{height:59.343750px;}
.h8{height:59.436914px;}
.hb{height:60.917695px;}
.h3{height:63.550195px;}
.h1{height:65.884219px;}
.h9{height:67.565039px;}
.h6{height:84.837305px;}
.hc{height:101.601562px;}
.h7{height:110.237695px;}
.h0{height:1188.000000px;}
.w2{width:386.280000px;}
.w3{width:417.780000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:10.830000px;}
.x5{left:71.175000px;}
.x1{left:108.035986px;}
.x7{left:124.595986px;}
.xa{left:135.035986px;}
.xb{left:162.029986px;}
.x6{left:180.929986px;}
.xc{left:189.029986px;}
.xd{left:216.029986px;}
.x4{left:217.080000px;}
.x2{left:232.920000px;}
.x9{left:332.894986px;}
.x8{left:391.934986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:30.186667pt;}
.ls5{letter-spacing:49.232640pt;}
.ls0{letter-spacing:56.891307pt;}
.ws3{word-spacing:-53.120000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.142187pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y4{bottom:-13.466667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.480000pt;}
.y3{bottom:6.213333pt;}
.y6a{bottom:106.272000pt;}
.yc8{bottom:114.432000pt;}
.ya9{bottom:123.552000pt;}
.y69{bottom:124.672000pt;}
.y21{bottom:125.952000pt;}
.y3e{bottom:128.032000pt;}
.yc7{bottom:132.672000pt;}
.y52{bottom:139.706667pt;}
.ya8{bottom:141.946667pt;}
.y68{bottom:143.066667pt;}
.y20{bottom:144.346667pt;}
.y82{bottom:148.026667pt;}
.yc6{bottom:151.066667pt;}
.ya7{bottom:160.346667pt;}
.y67{bottom:161.466667pt;}
.y81{bottom:166.426667pt;}
.y3d{bottom:167.706667pt;}
.yc5{bottom:169.466667pt;}
.y51{bottom:171.546667pt;}
.ya6{bottom:178.746667pt;}
.y1f{bottom:184.826667pt;}
.y3c{bottom:186.106667pt;}
.yc4{bottom:187.866667pt;}
.ya5{bottom:197.146667pt;}
.y66{bottom:198.586667pt;}
.y80{bottom:203.226667pt;}
.yc3{bottom:206.266667pt;}
.ya4{bottom:215.546667pt;}
.y7f{bottom:221.626667pt;}
.y3b{bottom:223.706667pt;}
.yc2{bottom:224.666667pt;}
.ya3{bottom:233.946667pt;}
.y65{bottom:235.706667pt;}
.y1e{bottom:236.826667pt;}
.y7e{bottom:240.026667pt;}
.y50{bottom:242.106667pt;}
.yc1{bottom:243.066667pt;}
.ya2{bottom:252.346667pt;}
.y64{bottom:254.106667pt;}
.y1d{bottom:255.226667pt;}
.y7d{bottom:258.426667pt;}
.yc0{bottom:261.466667pt;}
.y3a{bottom:263.226667pt;}
.ya1{bottom:270.746667pt;}
.y7c{bottom:276.826667pt;}
.y4f{bottom:279.066667pt;}
.ybf{bottom:279.866667pt;}
.y39{bottom:281.626667pt;}
.ya0{bottom:289.186667pt;}
.y63{bottom:291.106667pt;}
.y1c{bottom:292.866667pt;}
.ybe{bottom:298.306667pt;}
.y38{bottom:300.066667pt;}
.y9f{bottom:307.586667pt;}
.y4e{bottom:316.226667pt;}
.ybd{bottom:316.706667pt;}
.y7b{bottom:317.346667pt;}
.y9e{bottom:325.986667pt;}
.y62{bottom:328.226667pt;}
.y1b{bottom:332.546667pt;}
.y4d{bottom:334.626667pt;}
.ybc{bottom:335.106667pt;}
.y37{bottom:337.666667pt;}
.y9d{bottom:344.386667pt;}
.y61{bottom:346.626667pt;}
.y1a{bottom:350.946667pt;}
.ybb{bottom:353.506667pt;}
.y9c{bottom:362.786667pt;}
.y19{bottom:369.346667pt;}
.y7a{bottom:369.506667pt;}
.y4c{bottom:371.746667pt;}
.yba{bottom:371.906667pt;}
.y36{bottom:379.426667pt;}
.y9b{bottom:381.186667pt;}
.y60{bottom:383.746667pt;}
.y18{bottom:387.746667pt;}
.y79{bottom:387.906667pt;}
.yb9{bottom:390.306667pt;}
.y9a{bottom:399.586667pt;}
.y17{bottom:406.146667pt;}
.y78{bottom:406.306667pt;}
.y4b{bottom:408.706667pt;}
.y35{bottom:411.266667pt;}
.y99{bottom:417.986667pt;}
.y5f{bottom:424.066667pt;}
.y16{bottom:424.546667pt;}
.y77{bottom:424.706667pt;}
.y4a{bottom:427.106667pt;}
.y98{bottom:436.386667pt;}
.y15{bottom:442.946667pt;}
.y76{bottom:443.106667pt;}
.yb8{bottom:445.506667pt;}
.y97{bottom:454.786667pt;}
.y14{bottom:461.346667pt;}
.y34{bottom:463.426667pt;}
.yb7{bottom:463.906667pt;}
.y49{bottom:464.226667pt;}
.yc9{bottom:465.026667pt;}
.y96{bottom:473.186667pt;}
.y5e{bottom:478.146667pt;}
.y13{bottom:479.746667pt;}
.y33{bottom:481.826667pt;}
.yb6{bottom:482.306667pt;}
.y95{bottom:491.586667pt;}
.y12{bottom:498.146667pt;}
.y32{bottom:500.226667pt;}
.yb5{bottom:500.706667pt;}
.y48{bottom:501.346667pt;}
.y94{bottom:510.013333pt;}
.y5d{bottom:514.173333pt;}
.y11{bottom:516.573333pt;}
.y31{bottom:518.653333pt;}
.yb4{bottom:519.133333pt;}
.y47{bottom:519.773333pt;}
.y75{bottom:520.253333pt;}
.y93{bottom:528.413333pt;}
.y5c{bottom:532.573333pt;}
.y10{bottom:534.973333pt;}
.y30{bottom:537.053333pt;}
.yb3{bottom:537.533333pt;}
.y46{bottom:538.173333pt;}
.y92{bottom:546.813333pt;}
.yf{bottom:553.373333pt;}
.y2f{bottom:555.453333pt;}
.yb2{bottom:555.933333pt;}
.y91{bottom:565.213333pt;}
.y5b{bottom:569.693333pt;}
.ye{bottom:571.773333pt;}
.y74{bottom:572.413333pt;}
.y2e{bottom:573.853333pt;}
.yb1{bottom:574.333333pt;}
.y45{bottom:575.133333pt;}
.y90{bottom:583.613333pt;}
.yd{bottom:590.173333pt;}
.y73{bottom:590.813333pt;}
.y2d{bottom:592.253333pt;}
.yb0{bottom:592.733333pt;}
.y8f{bottom:602.013333pt;}
.y5a{bottom:606.813333pt;}
.y72{bottom:609.213333pt;}
.y2c{bottom:610.653333pt;}
.yaf{bottom:611.133333pt;}
.y44{bottom:614.493333pt;}
.y8e{bottom:620.413333pt;}
.y59{bottom:625.213333pt;}
.yc{bottom:625.693333pt;}
.y71{bottom:627.613333pt;}
.y2b{bottom:629.053333pt;}
.yae{bottom:629.533333pt;}
.y8d{bottom:638.813333pt;}
.y70{bottom:646.013333pt;}
.y43{bottom:646.333333pt;}
.yad{bottom:647.933333pt;}
.y8c{bottom:657.213333pt;}
.y58{bottom:662.173333pt;}
.y6f{bottom:664.413333pt;}
.yb{bottom:665.533333pt;}
.yac{bottom:666.333333pt;}
.y2a{bottom:669.533333pt;}
.y8b{bottom:675.613333pt;}
.y6e{bottom:682.813333pt;}
.yab{bottom:684.733333pt;}
.y8a{bottom:694.013333pt;}
.y57{bottom:699.293333pt;}
.y42{bottom:700.253333pt;}
.yaa{bottom:703.133333pt;}
.ya{bottom:706.493333pt;}
.y89{bottom:712.413333pt;}
.y56{bottom:717.693333pt;}
.y29{bottom:721.533333pt;}
.y6d{bottom:723.133333pt;}
.y88{bottom:730.853333pt;}
.y41{bottom:736.453333pt;}
.y28{bottom:739.973333pt;}
.y9{bottom:746.373333pt;}
.y87{bottom:749.253333pt;}
.y40{bottom:754.853333pt;}
.y27{bottom:758.373333pt;}
.y86{bottom:767.653333pt;}
.y26{bottom:776.773333pt;}
.y6c{bottom:777.253333pt;}
.y85{bottom:786.053333pt;}
.y8{bottom:786.213333pt;}
.y55{bottom:791.813333pt;}
.y3f{bottom:792.293333pt;}
.y25{bottom:795.173333pt;}
.y84{bottom:804.453333pt;}
.y54{bottom:810.213333pt;}
.y6b{bottom:813.253333pt;}
.y24{bottom:813.573333pt;}
.y23{bottom:831.973333pt;}
.y83{bottom:839.813333pt;}
.y7{bottom:840.293333pt;}
.y53{bottom:847.813333pt;}
.y22{bottom:850.373333pt;}
.y1{bottom:869.253333pt;}
.y2{bottom:902.720000pt;}
.y5{bottom:1005.920000pt;}
.h4{height:19.680000pt;}
.h2{height:26.880000pt;}
.he{height:42.578750pt;}
.ha{height:46.281250pt;}
.h5{height:46.593750pt;}
.hd{height:52.750000pt;}
.h8{height:52.832812pt;}
.hb{height:54.149062pt;}
.h3{height:56.489062pt;}
.h1{height:58.563750pt;}
.h9{height:60.057813pt;}
.h6{height:75.410937pt;}
.hc{height:90.312500pt;}
.h7{height:97.989063pt;}
.h0{height:1056.000000pt;}
.w2{width:343.360000pt;}
.w3{width:371.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.626667pt;}
.x5{left:63.266667pt;}
.x1{left:96.031988pt;}
.x7{left:110.751988pt;}
.xa{left:120.031988pt;}
.xb{left:144.026655pt;}
.x6{left:160.826655pt;}
.xc{left:168.026655pt;}
.xd{left:192.026655pt;}
.x4{left:192.960000pt;}
.x2{left:207.040000pt;}
.x9{left:295.906655pt;}
.x8{left:348.386655pt;}
}




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