
    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_da1325fe7a379779034da5ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_3838d1d8185db12acfeb2394.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096191;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_1ccff49302157790a925b18c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_811a7ebf384e86ef562e2a0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_63ac437f452ccfd0b0c9b750.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_6d5a32fe130b4144188ea3c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_cce9641a2f9b94b76cda67bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_11f76606794378145fbeb8b3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5fb97d54bdbe41a802f4657a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1284c0da227565fb73f32c62.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2dce8bff68ab0249a7f10d9c.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.350400px;}
.lse{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.322800px;}
.lsb{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.350400px;}
.ls6{letter-spacing:0.360000px;}
.ls13{letter-spacing:2.700000px;}
.ls2{letter-spacing:32.220000px;}
.ls1{letter-spacing:32.940000px;}
.ls14{letter-spacing:56.501280px;}
.ls3{letter-spacing:86.940000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-24.480000px;}
.ws2{word-spacing:-23.040000px;}
.ws5{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.wsb{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.737200px;}
.wsa{word-spacing:-20.718600px;}
.wsd{word-spacing:-20.709600px;}
.ws7{word-spacing:-20.700000px;}
.ws9{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._33{margin-left:-5.559840px;}
._2c{margin-left:-4.379520px;}
._30{margin-left:-3.168240px;}
._1{margin-left:-2.004000px;}
._38{margin-left:-1.003200px;}
._0{width:1.244880px;}
._f{width:2.306640px;}
._11{width:3.931920px;}
._12{width:5.371200px;}
._31{width:6.741600px;}
._39{width:7.986240px;}
._37{width:9.260640px;}
._40{width:10.264320px;}
._9{width:11.387280px;}
._3{width:12.407040px;}
._8{width:13.437840px;}
._43{width:14.624160px;}
._a{width:15.752880px;}
._13{width:17.101680px;}
._16{width:18.580800px;}
._34{width:19.804800px;}
._45{width:23.082720px;}
._46{width:24.326640px;}
._7{width:25.702080px;}
._6{width:26.921280px;}
._48{width:27.968640px;}
._3f{width:29.098320px;}
._32{width:30.916080px;}
._b{width:32.047440px;}
._c{width:33.172800px;}
._15{width:34.325760px;}
._3a{width:35.971440px;}
._3b{width:37.311360px;}
._47{width:38.504880px;}
._35{width:39.509520px;}
._36{width:40.881600px;}
._2e{width:42.438240px;}
._2d{width:43.721520px;}
._3d{width:45.387600px;}
._3e{width:46.998960px;}
._14{width:49.016160px;}
._17{width:50.275680px;}
._44{width:51.777360px;}
._4{width:52.920000px;}
._5{width:54.284160px;}
._49{width:55.312320px;}
._23{width:57.898560px;}
._2f{width:59.002800px;}
._27{width:60.231600px;}
._26{width:61.326720px;}
._3c{width:63.769680px;}
._42{width:64.794960px;}
._41{width:65.857920px;}
._d{width:68.234400px;}
._e{width:69.750720px;}
._2b{width:71.183760px;}
._2a{width:85.335120px;}
._10{width:86.598720px;}
._28{width:93.433680px;}
._29{width:97.128720px;}
._21{width:118.745760px;}
._1d{width:122.870160px;}
._20{width:153.922800px;}
._22{width:163.338960px;}
._1f{width:179.683920px;}
._1b{width:186.339840px;}
._1c{width:192.470640px;}
._24{width:212.182800px;}
._1a{width:215.215440px;}
._18{width:225.173520px;}
._1e{width:324.558960px;}
._19{width:353.162160px;}
._25{width:370.638240px;}
._2{width:1421.407200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:16.920000px;}
.y33{bottom:17.100000px;}
.y38{bottom:53.280000px;}
.y40{bottom:53.325000px;}
.y32{bottom:53.460000px;}
.y4{bottom:57.600000px;}
.y43{bottom:89.460000px;}
.y37{bottom:89.505000px;}
.y31{bottom:89.640000px;}
.y3c{bottom:102.276000px;}
.y54{bottom:106.056000px;}
.y3b{bottom:107.496000px;}
.y56{bottom:108.936000px;}
.y42{bottom:125.640000px;}
.y30{bottom:125.820000px;}
.y36{bottom:125.865000px;}
.y3a{bottom:135.936000px;}
.y53{bottom:142.236000px;}
.y20{bottom:145.296000px;}
.y2f{bottom:162.030000px;}
.y35{bottom:162.045000px;}
.y52{bottom:178.410000px;}
.y1f{bottom:181.470000px;}
.y39{bottom:197.490000px;}
.y3f{bottom:198.225000px;}
.y51{bottom:214.590000px;}
.y1e{bottom:217.650000px;}
.y50{bottom:250.950000px;}
.y1d{bottom:253.830000px;}
.y34{bottom:270.750000px;}
.y4f{bottom:287.130000px;}
.y1c{bottom:290.010000px;}
.y4e{bottom:323.310000px;}
.y1b{bottom:326.370000px;}
.y4d{bottom:359.535000px;}
.y55{bottom:362.235000px;}
.y1a{bottom:362.595000px;}
.y4c{bottom:395.715000px;}
.y19{bottom:398.775000px;}
.y4b{bottom:432.075000px;}
.y18{bottom:434.955000px;}
.y2e{bottom:452.595000px;}
.y4a{bottom:468.255000px;}
.y17{bottom:471.315000px;}
.y49{bottom:504.435000px;}
.y16{bottom:507.495000px;}
.y48{bottom:540.615000px;}
.y15{bottom:543.675000px;}
.y47{bottom:576.975000px;}
.y14{bottom:579.855000px;}
.y46{bottom:613.185000px;}
.y13{bottom:616.245000px;}
.y2c{bottom:634.425000px;}
.y45{bottom:649.365000px;}
.y12{bottom:652.425000px;}
.y57{bottom:655.845000px;}
.y44{bottom:685.545000px;}
.y11{bottom:688.605000px;}
.y2b{bottom:696.165000px;}
.y41{bottom:705.525000px;}
.y2a{bottom:724.425000px;}
.y10{bottom:724.785000px;}
.y29{bottom:760.605000px;}
.yf{bottom:760.965000px;}
.ye{bottom:797.325000px;}
.yd{bottom:833.145000px;}
.y28{bottom:833.505000px;}
.y3e{bottom:851.145000px;}
.yc{bottom:869.325000px;}
.y27{bottom:869.685000px;}
.yb{bottom:905.910000px;}
.ya{bottom:941.910000px;}
.y26{bottom:942.270000px;}
.y9{bottom:978.090000px;}
.y25{bottom:978.450000px;}
.y8{bottom:1014.270000px;}
.y24{bottom:1014.630000px;}
.y7{bottom:1050.450000px;}
.y23{bottom:1050.810000px;}
.y3d{bottom:1069.170000px;}
.y6{bottom:1086.810000px;}
.y22{bottom:1087.170000px;}
.y5{bottom:1122.990000px;}
.y21{bottom:1123.350000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1232.820000px;}
.ha{height:36.360000px;}
.he{height:38.671172px;}
.h4{height:47.512969px;}
.h9{height:52.998047px;}
.h5{height:55.825312px;}
.h8{height:59.066719px;}
.hf{height:59.439023px;}
.hd{height:65.884219px;}
.h2{height:68.687227px;}
.hc{height:72.540000px;}
.h3{height:72.562500px;}
.h10{height:72.576000px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.h13{height:86.585445px;}
.h12{height:144.720000px;}
.hb{height:181.110000px;}
.h11{height:217.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:107.640000px;}
.w7{width:174.090000px;}
.w4{width:193.350000px;}
.w5{width:223.050000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x18{left:13.545000px;}
.x12{left:16.920000px;}
.x16{left:30.960000px;}
.x14{left:75.240000px;}
.x3{left:127.655987px;}
.x1b{left:132.515987px;}
.x4{left:135.395987px;}
.x1d{left:148.895987px;}
.xe{left:154.829987px;}
.x1{left:158.249987px;}
.xc{left:180.749987px;}
.x1c{left:207.749987px;}
.x5{left:236.189987px;}
.x8{left:247.889987px;}
.xa{left:304.994987px;}
.x6{left:310.034987px;}
.x13{left:322.455000px;}
.xb{left:337.934987px;}
.x1a{left:343.694987px;}
.x9{left:351.974987px;}
.xf{left:431.894987px;}
.x7{left:478.544987px;}
.x10{left:518.324973px;}
.x11{left:525.164987px;}
.x15{left:546.225000px;}
.x2{left:614.804987px;}
.x17{left:654.585000px;}
.xd{left:755.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.311467pt;}
.lse{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.286933pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.311467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls13{letter-spacing:2.400000pt;}
.ls2{letter-spacing:28.640000pt;}
.ls1{letter-spacing:29.280000pt;}
.ls14{letter-spacing:50.223360pt;}
.ls3{letter-spacing:77.280000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.760000pt;}
.ws2{word-spacing:-20.480000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.wsb{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.433067pt;}
.wsa{word-spacing:-18.416533pt;}
.wsd{word-spacing:-18.408533pt;}
.ws7{word-spacing:-18.400000pt;}
.ws9{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._33{margin-left:-4.942080pt;}
._2c{margin-left:-3.892907pt;}
._30{margin-left:-2.816213pt;}
._1{margin-left:-1.781333pt;}
._38{margin-left:-0.891733pt;}
._0{width:1.106560pt;}
._f{width:2.050347pt;}
._11{width:3.495040pt;}
._12{width:4.774400pt;}
._31{width:5.992533pt;}
._39{width:7.098880pt;}
._37{width:8.231680pt;}
._40{width:9.123840pt;}
._9{width:10.122027pt;}
._3{width:11.028480pt;}
._8{width:11.944747pt;}
._43{width:12.999253pt;}
._a{width:14.002560pt;}
._13{width:15.201493pt;}
._16{width:16.516267pt;}
._34{width:17.604267pt;}
._45{width:20.517973pt;}
._46{width:21.623680pt;}
._7{width:22.846293pt;}
._6{width:23.930027pt;}
._48{width:24.861013pt;}
._3f{width:25.865173pt;}
._32{width:27.480960pt;}
._b{width:28.486613pt;}
._c{width:29.486933pt;}
._15{width:30.511787pt;}
._3a{width:31.974613pt;}
._3b{width:33.165653pt;}
._47{width:34.226560pt;}
._35{width:35.119573pt;}
._36{width:36.339200pt;}
._2e{width:37.722880pt;}
._2d{width:38.863573pt;}
._3d{width:40.344533pt;}
._3e{width:41.776853pt;}
._14{width:43.569920pt;}
._17{width:44.689493pt;}
._44{width:46.024320pt;}
._4{width:47.040000pt;}
._5{width:48.252587pt;}
._49{width:49.166507pt;}
._23{width:51.465387pt;}
._2f{width:52.446933pt;}
._27{width:53.539200pt;}
._26{width:54.512640pt;}
._3c{width:56.684160pt;}
._42{width:57.595520pt;}
._41{width:58.540373pt;}
._d{width:60.652800pt;}
._e{width:62.000640pt;}
._2b{width:63.274453pt;}
._2a{width:75.853440pt;}
._10{width:76.976640pt;}
._28{width:83.052160pt;}
._29{width:86.336640pt;}
._21{width:105.551787pt;}
._1d{width:109.217920pt;}
._20{width:136.820267pt;}
._22{width:145.190187pt;}
._1f{width:159.719040pt;}
._1b{width:165.635413pt;}
._1c{width:171.085013pt;}
._24{width:188.606933pt;}
._1a{width:191.302613pt;}
._18{width:200.154240pt;}
._1e{width:288.496853pt;}
._19{width:313.921920pt;}
._25{width:329.456213pt;}
._2{width:1263.473067pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:15.040000pt;}
.y33{bottom:15.200000pt;}
.y38{bottom:47.360000pt;}
.y40{bottom:47.400000pt;}
.y32{bottom:47.520000pt;}
.y4{bottom:51.200000pt;}
.y43{bottom:79.520000pt;}
.y37{bottom:79.560000pt;}
.y31{bottom:79.680000pt;}
.y3c{bottom:90.912000pt;}
.y54{bottom:94.272000pt;}
.y3b{bottom:95.552000pt;}
.y56{bottom:96.832000pt;}
.y42{bottom:111.680000pt;}
.y30{bottom:111.840000pt;}
.y36{bottom:111.880000pt;}
.y3a{bottom:120.832000pt;}
.y53{bottom:126.432000pt;}
.y20{bottom:129.152000pt;}
.y2f{bottom:144.026667pt;}
.y35{bottom:144.040000pt;}
.y52{bottom:158.586667pt;}
.y1f{bottom:161.306667pt;}
.y39{bottom:175.546667pt;}
.y3f{bottom:176.200000pt;}
.y51{bottom:190.746667pt;}
.y1e{bottom:193.466667pt;}
.y50{bottom:223.066667pt;}
.y1d{bottom:225.626667pt;}
.y34{bottom:240.666667pt;}
.y4f{bottom:255.226667pt;}
.y1c{bottom:257.786667pt;}
.y4e{bottom:287.386667pt;}
.y1b{bottom:290.106667pt;}
.y4d{bottom:319.586667pt;}
.y55{bottom:321.986667pt;}
.y1a{bottom:322.306667pt;}
.y4c{bottom:351.746667pt;}
.y19{bottom:354.466667pt;}
.y4b{bottom:384.066667pt;}
.y18{bottom:386.626667pt;}
.y2e{bottom:402.306667pt;}
.y4a{bottom:416.226667pt;}
.y17{bottom:418.946667pt;}
.y49{bottom:448.386667pt;}
.y16{bottom:451.106667pt;}
.y48{bottom:480.546667pt;}
.y15{bottom:483.266667pt;}
.y47{bottom:512.866667pt;}
.y14{bottom:515.426667pt;}
.y46{bottom:545.053333pt;}
.y13{bottom:547.773333pt;}
.y2c{bottom:563.933333pt;}
.y45{bottom:577.213333pt;}
.y12{bottom:579.933333pt;}
.y57{bottom:582.973333pt;}
.y44{bottom:609.373333pt;}
.y11{bottom:612.093333pt;}
.y2b{bottom:618.813333pt;}
.y41{bottom:627.133333pt;}
.y2a{bottom:643.933333pt;}
.y10{bottom:644.253333pt;}
.y29{bottom:676.093333pt;}
.yf{bottom:676.413333pt;}
.ye{bottom:708.733333pt;}
.yd{bottom:740.573333pt;}
.y28{bottom:740.893333pt;}
.y3e{bottom:756.573333pt;}
.yc{bottom:772.733333pt;}
.y27{bottom:773.053333pt;}
.yb{bottom:805.253333pt;}
.ya{bottom:837.253333pt;}
.y26{bottom:837.573333pt;}
.y9{bottom:869.413333pt;}
.y25{bottom:869.733333pt;}
.y8{bottom:901.573333pt;}
.y24{bottom:901.893333pt;}
.y7{bottom:933.733333pt;}
.y23{bottom:934.053333pt;}
.y3d{bottom:950.373333pt;}
.y6{bottom:966.053333pt;}
.y22{bottom:966.373333pt;}
.y5{bottom:998.213333pt;}
.y21{bottom:998.533333pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1095.840000pt;}
.ha{height:32.320000pt;}
.he{height:34.374375pt;}
.h4{height:42.233750pt;}
.h9{height:47.109375pt;}
.h5{height:49.622500pt;}
.h8{height:52.503750pt;}
.hf{height:52.834688pt;}
.hd{height:58.563750pt;}
.h2{height:61.055312pt;}
.hc{height:64.480000pt;}
.h3{height:64.500000pt;}
.h10{height:64.512000pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.h13{height:76.964840pt;}
.h12{height:128.640000pt;}
.hb{height:160.986667pt;}
.h11{height:193.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:95.680000pt;}
.w7{width:154.746667pt;}
.w4{width:171.866667pt;}
.w5{width:198.266667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x18{left:12.040000pt;}
.x12{left:15.040000pt;}
.x16{left:27.520000pt;}
.x14{left:66.880000pt;}
.x3{left:113.471988pt;}
.x1b{left:117.791988pt;}
.x4{left:120.351988pt;}
.x1d{left:132.351988pt;}
.xe{left:137.626655pt;}
.x1{left:140.666655pt;}
.xc{left:160.666655pt;}
.x1c{left:184.666655pt;}
.x5{left:209.946655pt;}
.x8{left:220.346655pt;}
.xa{left:271.106655pt;}
.x6{left:275.586655pt;}
.x13{left:286.626667pt;}
.xb{left:300.386655pt;}
.x1a{left:305.506655pt;}
.x9{left:312.866655pt;}
.xf{left:383.906655pt;}
.x7{left:425.373322pt;}
.x10{left:460.733310pt;}
.x11{left:466.813322pt;}
.x15{left:485.533333pt;}
.x2{left:546.493322pt;}
.x17{left:581.853333pt;}
.xd{left:671.973322pt;}
}




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