
    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_2a368728734f6ffdbfe4a91c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_eb407d1059b9667ab8cbe19d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_44e9e501af61041125b9648d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_7bb5d48f3604f50a65542b5b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_548b67ef419e0464aecc0a9d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_553a0f6c755907951ea91866.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f207b11953331c05537f2360.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6be2ccedb4de175ab657a200.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_852315ef91d0fba5efa4ccd8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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:ffb;src:url('chunks/assets/font_0efa4363aa092d683f956149.woff')format("woff");}.ffb{font-family:ffb;line-height:1.069824;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);}
.m2{transform:matrix(0.414755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414755,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.475111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475111,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.844365px;}
.ls5{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.298200px;}
.ls4{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.734400px;}
.ls7{letter-spacing:10.080000px;}
.ls8{letter-spacing:22.320000px;}
.ls6{letter-spacing:54.120000px;}
.lse{letter-spacing:102.384000px;}
.lsd{letter-spacing:138.384000px;}
.ls1{letter-spacing:171.306720px;}
.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;}
}
.ws3{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-7.601429px;}
.ws5{word-spacing:-0.038882px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.805483px;}
._2e{margin-left:-40.225789px;}
._2d{margin-left:-31.561779px;}
._2c{margin-left:-20.957259px;}
._4{margin-left:-9.968400px;}
._1d{margin-left:-7.408800px;}
._22{margin-left:-5.743200px;}
._2{margin-left:-4.392000px;}
._1{margin-left:-2.808000px;}
._3{margin-left:-1.224000px;}
._0{width:1.544400px;}
._8{width:2.947200px;}
._a{width:4.392000px;}
._9{width:5.400000px;}
._7{width:7.128000px;}
._18{width:9.000000px;}
._19{width:10.231200px;}
._17{width:11.311200px;}
._2f{width:12.488400px;}
._27{width:13.536000px;}
._1b{width:14.560800px;}
._25{width:15.586800px;}
._5{width:16.615200px;}
._1e{width:19.735200px;}
._13{width:20.880000px;}
._12{width:22.176000px;}
._32{width:23.202000px;}
._21{width:24.303600px;}
._c{width:25.575600px;}
._b{width:27.432000px;}
._2a{width:29.109600px;}
._10{width:30.423600px;}
._11{width:32.112000px;}
._23{width:34.192800px;}
._15{width:35.503200px;}
._14{width:36.799200px;}
._1a{width:38.348400px;}
._28{width:39.416400px;}
._24{width:40.431600px;}
._29{width:42.211200px;}
._26{width:49.176000px;}
._6{width:50.544000px;}
._30{width:52.056000px;}
._1f{width:53.496000px;}
._20{width:54.600000px;}
._1c{width:58.935600px;}
._16{width:60.303600px;}
._2b{width:61.848000px;}
._d{width:81.471600px;}
._e{width:82.844400px;}
._f{width:83.986800px;}
._31{width:85.017600px;}
.fc4{color:transparent;}
.fc3{color:rgb(17,23,26);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:22.744655px;}
.fs5{font-size:23.764783px;}
.fs4{font-size:27.742443px;}
.fsa{font-size:28.277721px;}
.fs8{font-size:32.638217px;}
.fs7{font-size:32.740230px;}
.fsb{font-size:38.881742px;}
.fs9{font-size:43.635165px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:1.734008px;}
.y5c{bottom:1.735054px;}
.y63{bottom:2.218988px;}
.y5f{bottom:2.236757px;}
.y61{bottom:2.244074px;}
.y69{bottom:2.650507px;}
.y65{bottom:3.534756px;}
.y51{bottom:11.882252px;}
.y50{bottom:21.062352px;}
.y4f{bottom:53.497379px;}
.y7{bottom:57.636000px;}
.y4e{bottom:62.651349px;}
.y4a{bottom:93.276000px;}
.y4d{bottom:95.341408px;}
.y33{bottom:99.576000px;}
.y4c{bottom:104.525688px;}
.y67{bottom:106.714826px;}
.y66{bottom:116.130244px;}
.y49{bottom:117.036000px;}
.y32{bottom:123.336000px;}
.y48{bottom:140.796000px;}
.y52{bottom:143.386672px;}
.y31{bottom:147.096000px;}
.y47{bottom:164.730000px;}
.y30{bottom:171.030000px;}
.y46{bottom:188.490000px;}
.y2f{bottom:194.790000px;}
.y45{bottom:212.250000px;}
.y2e{bottom:218.550000px;}
.y44{bottom:236.010000px;}
.y2d{bottom:242.310000px;}
.y43{bottom:259.770000px;}
.y2c{bottom:266.250000px;}
.y42{bottom:283.755000px;}
.y2b{bottom:290.055000px;}
.y41{bottom:307.515000px;}
.y2a{bottom:313.815000px;}
.y40{bottom:331.275000px;}
.y29{bottom:337.575000px;}
.y3f{bottom:351.075000px;}
.y64{bottom:355.692559px;}
.y28{bottom:361.515000px;}
.y27{bottom:385.275000px;}
.y26{bottom:409.035000px;}
.y68{bottom:427.059020px;}
.y25{bottom:432.795000px;}
.y24{bottom:456.735000px;}
.y23{bottom:480.495000px;}
.y3e{bottom:488.775000px;}
.y22{bottom:504.255000px;}
.y3d{bottom:512.535000px;}
.y21{bottom:528.015000px;}
.y3c{bottom:536.295000px;}
.y20{bottom:551.775000px;}
.y3b{bottom:560.055000px;}
.y1f{bottom:575.745000px;}
.y3a{bottom:584.025000px;}
.y1e{bottom:599.505000px;}
.y39{bottom:607.785000px;}
.y1d{bottom:623.265000px;}
.y38{bottom:631.545000px;}
.y1c{bottom:647.025000px;}
.y37{bottom:655.305000px;}
.y1b{bottom:670.965000px;}
.y36{bottom:679.245000px;}
.y1a{bottom:694.725000px;}
.y35{bottom:703.005000px;}
.y19{bottom:718.485000px;}
.y34{bottom:722.805000px;}
.y4b{bottom:726.055317px;}
.y18{bottom:742.245000px;}
.y53{bottom:743.215925px;}
.y56{bottom:743.215933px;}
.y62{bottom:749.845732px;}
.y55{bottom:760.071020px;}
.y17{bottom:766.185000px;}
.y57{bottom:785.341123px;}
.y59{bottom:785.341130px;}
.y16{bottom:789.945000px;}
.y60{bottom:790.899580px;}
.y15{bottom:813.705000px;}
.y58{bottom:822.187994px;}
.y5a{bottom:826.394978px;}
.y5d{bottom:826.394985px;}
.y5e{bottom:833.026861px;}
.y14{bottom:837.465000px;}
.y13{bottom:861.450000px;}
.y5b{bottom:867.477050px;}
.y12{bottom:885.210000px;}
.y11{bottom:908.970000px;}
.y10{bottom:932.730000px;}
.yf{bottom:956.670000px;}
.ye{bottom:980.430000px;}
.yd{bottom:1004.190000px;}
.yc{bottom:1027.950000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.he{height:8.413971px;}
.hc{height:8.414797px;}
.h11{height:10.887981px;}
.hf{height:10.914111px;}
.h16{height:12.950257px;}
.hd{height:19.501765px;}
.hb{height:20.550503px;}
.ha{height:23.990169px;}
.h15{height:24.453049px;}
.h12{height:27.984721px;}
.h10{height:28.072189px;}
.h17{height:33.338056px;}
.h14{height:37.733338px;}
.h7{height:50.484375px;}
.h2{height:61.189805px;}
.h5{height:62.261719px;}
.h4{height:65.884219px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h18{height:74.004654px;}
.h3{height:84.898125px;}
.h13{height:123.805753px;}
.h9{height:149.831262px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:11.726914px;}
.w5{width:35.180543px;}
.w7{width:36.700989px;}
.w3{width:630.889961px;}
.w6{width:631.652363px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.820641px;}
.x1c{left:13.616924px;}
.xd{left:84.959987px;}
.xf{left:87.300000px;}
.xc{left:111.455987px;}
.x5{left:120.095987px;}
.x9{left:128.735987px;}
.x1b{left:143.172518px;}
.x1a{left:173.071309px;}
.x18{left:191.002247px;}
.x19{left:195.022651px;}
.x17{left:226.909797px;}
.x15{left:244.886422px;}
.x16{left:248.861140px;}
.x6{left:270.209987px;}
.x14{left:292.769779px;}
.x12{left:308.700442px;}
.xb{left:315.974987px;}
.x8{left:325.334987px;}
.x3{left:350.534987px;}
.xa{left:351.614987px;}
.x1f{left:393.014987px;}
.x4{left:433.874987px;}
.x7{left:446.474987px;}
.x2{left:457.094987px;}
.x10{left:492.042914px;}
.x1{left:510.404987px;}
.x1d{left:543.500357px;}
.x11{left:564.306936px;}
.x1e{left:582.167877px;}
.xe{left:721.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.750546pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.265067pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.652800pt;}
.ls7{letter-spacing:8.960000pt;}
.ls8{letter-spacing:19.840000pt;}
.ls6{letter-spacing:48.106667pt;}
.lse{letter-spacing:91.008000pt;}
.lsd{letter-spacing:123.008000pt;}
.ls1{letter-spacing:152.272640pt;}
.ws3{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-6.756826pt;}
.ws5{word-spacing:-0.034562pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.715985pt;}
._2e{margin-left:-35.756256pt;}
._2d{margin-left:-28.054915pt;}
._2c{margin-left:-18.628675pt;}
._4{margin-left:-8.860800pt;}
._1d{margin-left:-6.585600pt;}
._22{margin-left:-5.105067pt;}
._2{margin-left:-3.904000pt;}
._1{margin-left:-2.496000pt;}
._3{margin-left:-1.088000pt;}
._0{width:1.372800pt;}
._8{width:2.619733pt;}
._a{width:3.904000pt;}
._9{width:4.800000pt;}
._7{width:6.336000pt;}
._18{width:8.000000pt;}
._19{width:9.094400pt;}
._17{width:10.054400pt;}
._2f{width:11.100800pt;}
._27{width:12.032000pt;}
._1b{width:12.942933pt;}
._25{width:13.854933pt;}
._5{width:14.769067pt;}
._1e{width:17.542400pt;}
._13{width:18.560000pt;}
._12{width:19.712000pt;}
._32{width:20.624000pt;}
._21{width:21.603200pt;}
._c{width:22.733867pt;}
._b{width:24.384000pt;}
._2a{width:25.875200pt;}
._10{width:27.043200pt;}
._11{width:28.544000pt;}
._23{width:30.393600pt;}
._15{width:31.558400pt;}
._14{width:32.710400pt;}
._1a{width:34.087467pt;}
._28{width:35.036800pt;}
._24{width:35.939200pt;}
._29{width:37.521067pt;}
._26{width:43.712000pt;}
._6{width:44.928000pt;}
._30{width:46.272000pt;}
._1f{width:47.552000pt;}
._20{width:48.533333pt;}
._1c{width:52.387200pt;}
._16{width:53.603200pt;}
._2b{width:54.976000pt;}
._d{width:72.419200pt;}
._e{width:73.639467pt;}
._f{width:74.654933pt;}
._31{width:75.571200pt;}
.fs6{font-size:20.217472pt;}
.fs5{font-size:21.124251pt;}
.fs4{font-size:24.659949pt;}
.fsa{font-size:25.135752pt;}
.fs8{font-size:29.011748pt;}
.fs7{font-size:29.102426pt;}
.fsb{font-size:34.561548pt;}
.fs9{font-size:38.786813pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:1.541341pt;}
.y5c{bottom:1.542270pt;}
.y63{bottom:1.972434pt;}
.y5f{bottom:1.988228pt;}
.y61{bottom:1.994732pt;}
.y69{bottom:2.356006pt;}
.y65{bottom:3.142005pt;}
.y51{bottom:10.562002pt;}
.y50{bottom:18.722091pt;}
.y4f{bottom:47.553226pt;}
.y7{bottom:51.232000pt;}
.y4e{bottom:55.690088pt;}
.y4a{bottom:82.912000pt;}
.y4d{bottom:84.747918pt;}
.y33{bottom:88.512000pt;}
.y4c{bottom:92.911723pt;}
.y67{bottom:94.857623pt;}
.y66{bottom:103.226883pt;}
.y49{bottom:104.032000pt;}
.y32{bottom:109.632000pt;}
.y48{bottom:125.152000pt;}
.y52{bottom:127.454819pt;}
.y31{bottom:130.752000pt;}
.y47{bottom:146.426667pt;}
.y30{bottom:152.026667pt;}
.y46{bottom:167.546667pt;}
.y2f{bottom:173.146667pt;}
.y45{bottom:188.666667pt;}
.y2e{bottom:194.266667pt;}
.y44{bottom:209.786667pt;}
.y2d{bottom:215.386667pt;}
.y43{bottom:230.906667pt;}
.y2c{bottom:236.666667pt;}
.y42{bottom:252.226667pt;}
.y2b{bottom:257.826667pt;}
.y41{bottom:273.346667pt;}
.y2a{bottom:278.946667pt;}
.y40{bottom:294.466667pt;}
.y29{bottom:300.066667pt;}
.y3f{bottom:312.066667pt;}
.y64{bottom:316.171164pt;}
.y28{bottom:321.346667pt;}
.y27{bottom:342.466667pt;}
.y26{bottom:363.586667pt;}
.y68{bottom:379.608018pt;}
.y25{bottom:384.706667pt;}
.y24{bottom:405.986667pt;}
.y23{bottom:427.106667pt;}
.y3e{bottom:434.466667pt;}
.y22{bottom:448.226667pt;}
.y3d{bottom:455.586667pt;}
.y21{bottom:469.346667pt;}
.y3c{bottom:476.706667pt;}
.y20{bottom:490.466667pt;}
.y3b{bottom:497.826667pt;}
.y1f{bottom:511.773333pt;}
.y3a{bottom:519.133333pt;}
.y1e{bottom:532.893333pt;}
.y39{bottom:540.253333pt;}
.y1d{bottom:554.013333pt;}
.y38{bottom:561.373333pt;}
.y1c{bottom:575.133333pt;}
.y37{bottom:582.493333pt;}
.y1b{bottom:596.413333pt;}
.y36{bottom:603.773333pt;}
.y1a{bottom:617.533333pt;}
.y35{bottom:624.893333pt;}
.y19{bottom:638.653333pt;}
.y34{bottom:642.493333pt;}
.y4b{bottom:645.382504pt;}
.y18{bottom:659.773333pt;}
.y53{bottom:660.636377pt;}
.y56{bottom:660.636385pt;}
.y62{bottom:666.529539pt;}
.y55{bottom:675.618684pt;}
.y17{bottom:681.053333pt;}
.y57{bottom:698.080998pt;}
.y59{bottom:698.081005pt;}
.y16{bottom:702.173333pt;}
.y60{bottom:703.021849pt;}
.y15{bottom:723.293333pt;}
.y58{bottom:730.833773pt;}
.y5a{bottom:734.573314pt;}
.y5d{bottom:734.573320pt;}
.y5e{bottom:740.468321pt;}
.y14{bottom:744.413333pt;}
.y13{bottom:765.733333pt;}
.y5b{bottom:771.090711pt;}
.y12{bottom:786.853333pt;}
.y11{bottom:807.973333pt;}
.y10{bottom:829.093333pt;}
.yf{bottom:850.373333pt;}
.ye{bottom:871.493333pt;}
.yd{bottom:892.613333pt;}
.yc{bottom:913.733333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.he{height:7.479086pt;}
.hc{height:7.479819pt;}
.h11{height:9.678205pt;}
.hf{height:9.701432pt;}
.h16{height:11.511340pt;}
.hd{height:17.334902pt;}
.hb{height:18.267114pt;}
.ha{height:21.324594pt;}
.h15{height:21.736044pt;}
.h12{height:24.875308pt;}
.h10{height:24.953057pt;}
.h17{height:29.633828pt;}
.h14{height:33.540745pt;}
.h7{height:44.875000pt;}
.h2{height:54.390938pt;}
.h5{height:55.343750pt;}
.h4{height:58.563750pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h18{height:65.781915pt;}
.h3{height:75.465000pt;}
.h13{height:110.049558pt;}
.h9{height:133.183344pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:10.423924pt;}
.w5{width:31.271594pt;}
.w7{width:32.623101pt;}
.w3{width:560.791076pt;}
.w6{width:561.468767pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.507237pt;}
.x1c{left:12.103932pt;}
.xd{left:75.519988pt;}
.xf{left:77.600000pt;}
.xc{left:99.071988pt;}
.x5{left:106.751988pt;}
.x9{left:114.431988pt;}
.x1b{left:127.264461pt;}
.x1a{left:153.841163pt;}
.x18{left:169.779775pt;}
.x19{left:173.353467pt;}
.x17{left:201.697598pt;}
.x15{left:217.676820pt;}
.x16{left:221.209902pt;}
.x6{left:240.186655pt;}
.x14{left:260.239804pt;}
.x12{left:274.400393pt;}
.xb{left:280.866655pt;}
.x8{left:289.186655pt;}
.x3{left:311.586655pt;}
.xa{left:312.546655pt;}
.x1f{left:349.346655pt;}
.x4{left:385.666655pt;}
.x7{left:396.866655pt;}
.x2{left:406.306655pt;}
.x10{left:437.371479pt;}
.x1{left:453.693322pt;}
.x1d{left:483.111429pt;}
.x11{left:501.606165pt;}
.x1e{left:517.482557pt;}
.xe{left:641.573322pt;}
}




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