
    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_ead20661c0f5836f436e55e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a50c9b4ccea310ccb1b22601.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_10820c017d6e57dbdf4aed63.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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_bb56e161a1e3d91d20c40c70.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_b501367a9cd8ca9fd33fa667.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a7ff11466724626a7883f662.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_335ad95553fab1226966257d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_d2a43dfab7850b8cc3c2f5d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995117;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_c1e870e07142887bb08a0b6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963867;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);}
.v3{vertical-align:-79.056000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:40.608000px;}
.v1{vertical-align:100.944000px;}
.ls19{letter-spacing:-6.600000px;}
.lse{letter-spacing:-0.864000px;}
.ls0{letter-spacing:-0.170400px;}
.ls5{letter-spacing:-0.162600px;}
.lsf{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.117600px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.026460px;}
.lsc{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.247800px;}
.lsd{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.295920px;}
.ls1d{letter-spacing:0.301200px;}
.ls12{letter-spacing:0.325200px;}
.ls1c{letter-spacing:0.360000px;}
.ls20{letter-spacing:41.981376px;}
.ls21{letter-spacing:42.061440px;}
.ls15{letter-spacing:55.191936px;}
.ls1f{letter-spacing:55.215936px;}
.ls16{letter-spacing:55.272000px;}
.ls1e{letter-spacing:55.296000px;}
.ls8{letter-spacing:68.402496px;}
.ls7{letter-spacing:68.482560px;}
.ls14{letter-spacing:75.288000px;}
.ls3{letter-spacing:94.665600px;}
.ls4{letter-spacing:94.716000px;}
.ls6{letter-spacing:94.860000px;}
.ls11{letter-spacing:103.284000px;}
.ls1b{letter-spacing:103.377600px;}
.ls13{letter-spacing:103.428000px;}
.ls17{letter-spacing:111.693600px;}
.lsa{letter-spacing:222.000048px;}
.ls9{letter-spacing:222.048000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-173.664000px;}
.ws1b{word-spacing:-60.088032px;}
.ws3{word-spacing:-53.482752px;}
.ws4{word-spacing:-53.442720px;}
.ws15{word-spacing:-48.060000px;}
.ws20{word-spacing:-46.677312px;}
.ws1e{word-spacing:-46.637280px;}
.ws1d{word-spacing:-46.474680px;}
.ws11{word-spacing:-40.032000px;}
.ws17{word-spacing:-39.888000px;}
.ws25{word-spacing:-23.458752px;}
.ws6{word-spacing:-1.951440px;}
.ws12{word-spacing:-1.464144px;}
.ws26{word-spacing:-1.325664px;}
.ws13{word-spacing:-1.183968px;}
.ws5{word-spacing:-0.856320px;}
.ws24{word-spacing:-0.269376px;}
.ws16{word-spacing:-0.167760px;}
.ws14{word-spacing:-0.144144px;}
.ws29{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:0.067680px;}
.ws23{word-spacing:0.113040px;}
.ws27{word-spacing:0.288000px;}
.ws0{word-spacing:0.416160px;}
.wsc{word-spacing:0.855744px;}
.ws28{word-spacing:1.020240px;}
.ws1c{word-spacing:1.323840px;}
.ws21{word-spacing:1.430400px;}
.ws22{word-spacing:1.785360px;}
.ws1f{word-spacing:1.910640px;}
.wse{word-spacing:13.968000px;}
.wsf{word-spacing:14.148000px;}
.wsd{word-spacing:15.264000px;}
.ws9{word-spacing:109.332720px;}
.ws8{word-spacing:109.413612px;}
.wsb{word-spacing:145.661040px;}
.wsa{word-spacing:149.709360px;}
.ws10{word-spacing:194.352000px;}
.ws2b{word-spacing:443.142960px;}
.ws2a{word-spacing:1550.124576px;}
.ws2c{word-spacing:1553.567904px;}
.ws7{word-spacing:1610.163072px;}
.ws19{word-spacing:1652.431392px;}
.ws18{word-spacing:1656.236160px;}
.ws1a{word-spacing:1658.911392px;}
._f{margin-left:-4.968000px;}
._6{margin-left:-2.601264px;}
._0{margin-left:-1.366656px;}
._1{width:1.128000px;}
._b{width:2.553696px;}
._3{width:20.633280px;}
._2{width:21.646368px;}
._a{width:40.367904px;}
._e{width:49.256256px;}
._7{width:54.144000px;}
._8{width:55.677264px;}
._5{width:68.482560px;}
._9{width:235.608000px;}
._d{width:1470.754992px;}
._c{width:1490.105520px;}
._4{width:1536.905520px;}
.fc2{color:transparent;}
.fc1{color:rgb(153,102,0);}
.fc3{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs8{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fsc{font-size:167.760000px;}
.fs10{font-size:167.904000px;}
.fs5{font-size:192.240000px;}
.fs4{font-size:192.384000px;}
.fs11{font-size:216.000000px;}
.fsf{font-size:216.144000px;}
.fsa{font-size:239.760000px;}
.fsb{font-size:239.904000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.fs12{font-size:288.000000px;}
.fs13{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.yf{bottom:21.240000px;}
.y37{bottom:36.324000px;}
.ye{bottom:46.476000px;}
.y54{bottom:48.960000px;}
.y63{bottom:66.240000px;}
.y4b{bottom:72.972000px;}
.y23{bottom:86.400000px;}
.y35{bottom:97.920000px;}
.y56{bottom:98.460000px;}
.y53{bottom:102.276000px;}
.y62{bottom:126.756000px;}
.y5a{bottom:126.792000px;}
.y22{bottom:129.600000px;}
.y55{bottom:130.896000px;}
.y42{bottom:131.076000px;}
.y19{bottom:131.256000px;}
.y4a{bottom:133.452000px;}
.y34{bottom:141.156000px;}
.y52{bottom:161.310000px;}
.yd{bottom:162.930000px;}
.y18{bottom:167.250000px;}
.y21{bottom:172.800000px;}
.y41{bottom:174.270000px;}
.y6{bottom:180.750000px;}
.y33{bottom:184.350000px;}
.y61{bottom:188.670000px;}
.y49{bottom:193.935000px;}
.y5b{bottom:207.795000px;}
.y17{bottom:214.590000px;}
.y20{bottom:216.000000px;}
.y40{bottom:217.470000px;}
.y5{bottom:223.950000px;}
.yc{bottom:232.095000px;}
.y32{bottom:236.190000px;}
.y48{bottom:254.445000px;}
.y60{bottom:257.790000px;}
.y3f{bottom:260.715000px;}
.y4{bottom:267.195000px;}
.y51{bottom:273.675000px;}
.y1f{bottom:279.210000px;}
.y31{bottom:279.435000px;}
.y16{bottom:279.615000px;}
.yb{bottom:301.215000px;}
.y3{bottom:310.395000px;}
.y66{bottom:310.935000px;}
.y3e{bottom:312.555000px;}
.y47{bottom:314.925000px;}
.y15{bottom:322.815000px;}
.y50{bottom:326.955000px;}
.y2b{bottom:328.395000px;}
.y30{bottom:332.715000px;}
.y29{bottom:349.590000px;}
.y1e{bottom:352.470000px;}
.y3d{bottom:355.755000px;}
.y14{bottom:366.015000px;}
.ya{bottom:370.365000px;}
.y2a{bottom:373.215000px;}
.y46{bottom:375.405000px;}
.y5f{bottom:384.555000px;}
.y4f{bottom:385.995000px;}
.y2f{bottom:389.775000px;}
.y3c{bottom:398.955000px;}
.y2{bottom:409.425000px;}
.y13{bottom:413.355000px;}
.y65{bottom:414.645000px;}
.y57{bottom:419.550000px;}
.y2e{bottom:428.685000px;}
.y45{bottom:435.930000px;}
.y4e{bottom:439.305000px;}
.y9{bottom:439.485000px;}
.y3b{bottom:442.185000px;}
.y5e{bottom:453.705000px;}
.y1d{bottom:456.765000px;}
.y2d{bottom:461.085000px;}
.y28{bottom:463.785000px;}
.y12{bottom:478.365000px;}
.y1{bottom:488.625000px;}
.y3a{bottom:494.025000px;}
.y44{bottom:496.410000px;}
.y4d{bottom:499.785000px;}
.y1c{bottom:499.965000px;}
.y64{bottom:501.045000px;}
.y8{bottom:508.650000px;}
.y5d{bottom:511.305000px;}
.y11{bottom:521.565000px;}
.y27{bottom:524.265000px;}
.y2c{bottom:532.365000px;}
.y39{bottom:537.225000px;}
.y59{bottom:542.805000px;}
.y1b{bottom:543.165000px;}
.y43{bottom:559.620000px;}
.y4c{bottom:562.965000px;}
.y10{bottom:568.905000px;}
.y26{bottom:574.665000px;}
.y58{bottom:575.205000px;}
.y38{bottom:580.470000px;}
.y1a{bottom:586.410000px;}
.y5c{bottom:597.705000px;}
.y25{bottom:654.690000px;}
.y36{bottom:676.005000px;}
.y7{bottom:676.695000px;}
.y24{bottom:712.335000px;}
.h11{height:85.324219px;}
.h8{height:88.009875px;}
.hb{height:107.793281px;}
.h12{height:112.640625px;}
.h13{height:112.790813px;}
.ha{height:125.406562px;}
.hc{height:125.556750px;}
.h15{height:128.617875px;}
.hf{height:139.955977px;}
.he{height:140.060812px;}
.h3{height:150.187500px;}
.h4{height:150.337688px;}
.h10{height:174.968437px;}
.h17{height:175.118625px;}
.h9{height:188.953875px;}
.h14{height:192.373945px;}
.h5{height:192.478781px;}
.h7{height:200.500313px;}
.h6{height:200.650500px;}
.h19{height:222.046875px;}
.h1a{height:222.157898px;}
.h18{height:225.281250px;}
.h16{height:225.431438px;}
.hd{height:250.212375px;}
.h1{height:275.594063px;}
.h2{height:275.744250px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1f{left:23.543984px;}
.x10{left:49.067984px;}
.xb{left:64.799984px;}
.x27{left:72.503984px;}
.x20{left:77.579984px;}
.x14{left:89.567984px;}
.x1a{left:105.335984px;}
.x28{left:107.063984px;}
.x11{left:116.747984px;}
.xc{left:118.835984px;}
.x1{left:146.231984px;}
.xd{left:152.669984px;}
.x26{left:175.829984px;}
.x16{left:177.689984px;}
.x3{left:181.949984px;}
.x7{left:193.649984px;}
.x4{left:204.089984px;}
.x2{left:217.874984px;}
.x12{left:232.199984px;}
.x2a{left:245.954984px;}
.x23{left:259.739984px;}
.x2c{left:267.449984px;}
.x18{left:278.459984px;}
.x2b{left:289.049984px;}
.x1b{left:315.359984px;}
.x25{left:340.199984px;}
.x17{left:347.609984px;}
.x15{left:389.234984px;}
.x8{left:399.749984px;}
.xa{left:419.969984px;}
.x5{left:423.359984px;}
.x1e{left:456.089984px;}
.x9{left:460.589984px;}
.xf{left:480.089984px;}
.x24{left:481.679984px;}
.xe{left:485.099984px;}
.x1d{left:490.889984px;}
.x19{left:496.439984px;}
.x13{left:505.469984px;}
.x1c{left:507.239984px;}
.x29{left:508.319984px;}
.x21{left:525.389984px;}
.x6{left:529.409984px;}
.x22{left:601.919984px;}
@media print{
.v3{vertical-align:-70.272000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.096000pt;}
.v1{vertical-align:89.728000pt;}
.ls19{letter-spacing:-5.866667pt;}
.lse{letter-spacing:-0.768000pt;}
.ls0{letter-spacing:-0.151467pt;}
.ls5{letter-spacing:-0.144533pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.104533pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.023520pt;}
.lsc{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.220267pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.263040pt;}
.ls1d{letter-spacing:0.267733pt;}
.ls12{letter-spacing:0.289067pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls20{letter-spacing:37.316779pt;}
.ls21{letter-spacing:37.387947pt;}
.ls15{letter-spacing:49.059499pt;}
.ls1f{letter-spacing:49.080832pt;}
.ls16{letter-spacing:49.130667pt;}
.ls1e{letter-spacing:49.152000pt;}
.ls8{letter-spacing:60.802219pt;}
.ls7{letter-spacing:60.873387pt;}
.ls14{letter-spacing:66.922667pt;}
.ls3{letter-spacing:84.147200pt;}
.ls4{letter-spacing:84.192000pt;}
.ls6{letter-spacing:84.320000pt;}
.ls11{letter-spacing:91.808000pt;}
.ls1b{letter-spacing:91.891200pt;}
.ls13{letter-spacing:91.936000pt;}
.ls17{letter-spacing:99.283200pt;}
.lsa{letter-spacing:197.333376pt;}
.ls9{letter-spacing:197.376000pt;}
.ws2d{word-spacing:-154.368000pt;}
.ws1b{word-spacing:-53.411584pt;}
.ws3{word-spacing:-47.540224pt;}
.ws4{word-spacing:-47.504640pt;}
.ws15{word-spacing:-42.720000pt;}
.ws20{word-spacing:-41.490944pt;}
.ws1e{word-spacing:-41.455360pt;}
.ws1d{word-spacing:-41.310827pt;}
.ws11{word-spacing:-35.584000pt;}
.ws17{word-spacing:-35.456000pt;}
.ws25{word-spacing:-20.852224pt;}
.ws6{word-spacing:-1.734613pt;}
.ws12{word-spacing:-1.301461pt;}
.ws26{word-spacing:-1.178368pt;}
.ws13{word-spacing:-1.052416pt;}
.ws5{word-spacing:-0.761173pt;}
.ws24{word-spacing:-0.239445pt;}
.ws16{word-spacing:-0.149120pt;}
.ws14{word-spacing:-0.128128pt;}
.ws29{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:0.060160pt;}
.ws23{word-spacing:0.100480pt;}
.ws27{word-spacing:0.256000pt;}
.ws0{word-spacing:0.369920pt;}
.wsc{word-spacing:0.760661pt;}
.ws28{word-spacing:0.906880pt;}
.ws1c{word-spacing:1.176747pt;}
.ws21{word-spacing:1.271467pt;}
.ws22{word-spacing:1.586987pt;}
.ws1f{word-spacing:1.698347pt;}
.wse{word-spacing:12.416000pt;}
.wsf{word-spacing:12.576000pt;}
.wsd{word-spacing:13.568000pt;}
.ws9{word-spacing:97.184640pt;}
.ws8{word-spacing:97.256544pt;}
.wsb{word-spacing:129.476480pt;}
.wsa{word-spacing:133.074987pt;}
.ws10{word-spacing:172.757333pt;}
.ws2b{word-spacing:393.904853pt;}
.ws2a{word-spacing:1377.888512pt;}
.ws2c{word-spacing:1380.949248pt;}
.ws7{word-spacing:1431.256064pt;}
.ws19{word-spacing:1468.827904pt;}
.ws18{word-spacing:1472.209920pt;}
.ws1a{word-spacing:1474.587904pt;}
._f{margin-left:-4.416000pt;}
._6{margin-left:-2.312235pt;}
._0{margin-left:-1.214805pt;}
._1{width:1.002667pt;}
._b{width:2.269952pt;}
._3{width:18.340693pt;}
._2{width:19.241216pt;}
._a{width:35.882581pt;}
._e{width:43.783339pt;}
._7{width:48.128000pt;}
._8{width:49.490901pt;}
._5{width:60.873387pt;}
._9{width:209.429333pt;}
._d{width:1307.337771pt;}
._c{width:1324.538240pt;}
._4{width:1366.138240pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs8{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fsc{font-size:149.120000pt;}
.fs10{font-size:149.248000pt;}
.fs5{font-size:170.880000pt;}
.fs4{font-size:171.008000pt;}
.fs11{font-size:192.000000pt;}
.fsf{font-size:192.128000pt;}
.fsa{font-size:213.120000pt;}
.fsb{font-size:213.248000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.fs12{font-size:256.000000pt;}
.fs13{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:18.880000pt;}
.y37{bottom:32.288000pt;}
.ye{bottom:41.312000pt;}
.y54{bottom:43.520000pt;}
.y63{bottom:58.880000pt;}
.y4b{bottom:64.864000pt;}
.y23{bottom:76.800000pt;}
.y35{bottom:87.040000pt;}
.y56{bottom:87.520000pt;}
.y53{bottom:90.912000pt;}
.y62{bottom:112.672000pt;}
.y5a{bottom:112.704000pt;}
.y22{bottom:115.200000pt;}
.y55{bottom:116.352000pt;}
.y42{bottom:116.512000pt;}
.y19{bottom:116.672000pt;}
.y4a{bottom:118.624000pt;}
.y34{bottom:125.472000pt;}
.y52{bottom:143.386667pt;}
.yd{bottom:144.826667pt;}
.y18{bottom:148.666667pt;}
.y21{bottom:153.600000pt;}
.y41{bottom:154.906667pt;}
.y6{bottom:160.666667pt;}
.y33{bottom:163.866667pt;}
.y61{bottom:167.706667pt;}
.y49{bottom:172.386667pt;}
.y5b{bottom:184.706667pt;}
.y17{bottom:190.746667pt;}
.y20{bottom:192.000000pt;}
.y40{bottom:193.306667pt;}
.y5{bottom:199.066667pt;}
.yc{bottom:206.306667pt;}
.y32{bottom:209.946667pt;}
.y48{bottom:226.173333pt;}
.y60{bottom:229.146667pt;}
.y3f{bottom:231.746667pt;}
.y4{bottom:237.506667pt;}
.y51{bottom:243.266667pt;}
.y1f{bottom:248.186667pt;}
.y31{bottom:248.386667pt;}
.y16{bottom:248.546667pt;}
.yb{bottom:267.746667pt;}
.y3{bottom:275.906667pt;}
.y66{bottom:276.386667pt;}
.y3e{bottom:277.826667pt;}
.y47{bottom:279.933333pt;}
.y15{bottom:286.946667pt;}
.y50{bottom:290.626667pt;}
.y2b{bottom:291.906667pt;}
.y30{bottom:295.746667pt;}
.y29{bottom:310.746667pt;}
.y1e{bottom:313.306667pt;}
.y3d{bottom:316.226667pt;}
.y14{bottom:325.346667pt;}
.ya{bottom:329.213333pt;}
.y2a{bottom:331.746667pt;}
.y46{bottom:333.693333pt;}
.y5f{bottom:341.826667pt;}
.y4f{bottom:343.106667pt;}
.y2f{bottom:346.466667pt;}
.y3c{bottom:354.626667pt;}
.y2{bottom:363.933333pt;}
.y13{bottom:367.426667pt;}
.y65{bottom:368.573333pt;}
.y57{bottom:372.933333pt;}
.y2e{bottom:381.053333pt;}
.y45{bottom:387.493333pt;}
.y4e{bottom:390.493333pt;}
.y9{bottom:390.653333pt;}
.y3b{bottom:393.053333pt;}
.y5e{bottom:403.293333pt;}
.y1d{bottom:406.013333pt;}
.y2d{bottom:409.853333pt;}
.y28{bottom:412.253333pt;}
.y12{bottom:425.213333pt;}
.y1{bottom:434.333333pt;}
.y3a{bottom:439.133333pt;}
.y44{bottom:441.253333pt;}
.y4d{bottom:444.253333pt;}
.y1c{bottom:444.413333pt;}
.y64{bottom:445.373333pt;}
.y8{bottom:452.133333pt;}
.y5d{bottom:454.493333pt;}
.y11{bottom:463.613333pt;}
.y27{bottom:466.013333pt;}
.y2c{bottom:473.213333pt;}
.y39{bottom:477.533333pt;}
.y59{bottom:482.493333pt;}
.y1b{bottom:482.813333pt;}
.y43{bottom:497.440000pt;}
.y4c{bottom:500.413333pt;}
.y10{bottom:505.693333pt;}
.y26{bottom:510.813333pt;}
.y58{bottom:511.293333pt;}
.y38{bottom:515.973333pt;}
.y1a{bottom:521.253333pt;}
.y5c{bottom:531.293333pt;}
.y25{bottom:581.946667pt;}
.y36{bottom:600.893333pt;}
.y7{bottom:601.506667pt;}
.y24{bottom:633.186667pt;}
.h11{height:75.843750pt;}
.h8{height:78.231000pt;}
.hb{height:95.816250pt;}
.h12{height:100.125000pt;}
.h13{height:100.258500pt;}
.ha{height:111.472500pt;}
.hc{height:111.606000pt;}
.h15{height:114.327000pt;}
.hf{height:124.405313pt;}
.he{height:124.498500pt;}
.h3{height:133.500000pt;}
.h4{height:133.633500pt;}
.h10{height:155.527500pt;}
.h17{height:155.661000pt;}
.h9{height:167.959000pt;}
.h14{height:170.999063pt;}
.h5{height:171.092250pt;}
.h7{height:178.222500pt;}
.h6{height:178.356000pt;}
.h19{height:197.375000pt;}
.h1a{height:197.473687pt;}
.h18{height:200.250000pt;}
.h16{height:200.383500pt;}
.hd{height:222.411000pt;}
.h1{height:244.972500pt;}
.h2{height:245.106000pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:20.927986pt;}
.x10{left:43.615986pt;}
.xb{left:57.599986pt;}
.x27{left:64.447986pt;}
.x20{left:68.959986pt;}
.x14{left:79.615986pt;}
.x1a{left:93.631986pt;}
.x28{left:95.167986pt;}
.x11{left:103.775986pt;}
.xc{left:105.631986pt;}
.x1{left:129.983986pt;}
.xd{left:135.706652pt;}
.x26{left:156.293319pt;}
.x16{left:157.946652pt;}
.x3{left:161.733319pt;}
.x7{left:172.133319pt;}
.x4{left:181.413319pt;}
.x2{left:193.666652pt;}
.x12{left:206.399986pt;}
.x2a{left:218.626652pt;}
.x23{left:230.879986pt;}
.x2c{left:237.733319pt;}
.x18{left:247.519986pt;}
.x2b{left:256.933319pt;}
.x1b{left:280.319986pt;}
.x25{left:302.399986pt;}
.x17{left:308.986652pt;}
.x15{left:345.986652pt;}
.x8{left:355.333319pt;}
.xa{left:373.306652pt;}
.x5{left:376.319986pt;}
.x1e{left:405.413319pt;}
.x9{left:409.413319pt;}
.xf{left:426.746652pt;}
.x24{left:428.159986pt;}
.xe{left:431.199986pt;}
.x1d{left:436.346652pt;}
.x19{left:441.279986pt;}
.x13{left:449.306652pt;}
.x1c{left:450.879986pt;}
.x29{left:451.839986pt;}
.x21{left:467.013319pt;}
.x6{left:470.586652pt;}
.x22{left:535.039986pt;}
}




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