
    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_9ebfeb11de1abdf3b5053479.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_177c2dcbdcc6b660d44da6bf.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_22457ec43925f203fc2ed81d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_4273230278093d6f73b88d3f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_c480bb0375ec3d26c1abfbaf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1d7dd2fdfbdd4af726ebe1a3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_361e897e2c09a28d54a23099.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-4.320000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.387600px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls1{letter-spacing:7.200000px;}
.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;}
}
.ws5{word-spacing:-28.977840px;}
.ws6{word-spacing:-28.590240px;}
.ws9{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.280000px;}
.ws3{word-spacing:-13.680000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-16.560000px;}
._a{margin-left:-9.036000px;}
._6{margin-left:-5.328000px;}
._5{margin-left:-4.320000px;}
._8{margin-left:-2.748000px;}
._0{margin-left:-1.068000px;}
._1{width:1.224000px;}
._d{width:2.304000px;}
._c{width:3.936000px;}
._b{width:5.028000px;}
._12{width:6.180000px;}
._4{width:7.200000px;}
._7{width:8.220000px;}
._15{width:9.492000px;}
._14{width:10.716000px;}
._13{width:11.808000px;}
._10{width:13.320000px;}
._e{width:14.832000px;}
._f{width:15.900000px;}
._17{width:16.980000px;}
._11{width:19.788000px;}
._1a{width:22.248000px;}
._16{width:25.704000px;}
._3{width:27.132000px;}
._2{width:28.140000px;}
._18{width:44.712000px;}
._19{width:46.368000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc6{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y1e{bottom:-29.880000px;}
.y28{bottom:-14.760060px;}
.y23{bottom:-8.820000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:8.820000px;}
.y27{bottom:9.180000px;}
.y22{bottom:14.580000px;}
.y20{bottom:14.940000px;}
.y58{bottom:15.300000px;}
.y24{bottom:16.200000px;}
.y4{bottom:16.920000px;}
.y1{bottom:24.480000px;}
.y26{bottom:32.940000px;}
.y3{bottom:41.400000px;}
.y57{bottom:46.800000px;}
.y25{bottom:56.700000px;}
.y1c{bottom:59.970000px;}
.y2{bottom:65.160000px;}
.y6{bottom:76.500000px;}
.y56{bottom:77.940000px;}
.y29{bottom:97.920000px;}
.y55{bottom:108.900000px;}
.y4a{bottom:112.500000px;}
.y77{bottom:117.720000px;}
.y90{bottom:134.676000px;}
.y54{bottom:140.040000px;}
.yb3{bottom:143.316000px;}
.y49{bottom:143.676000px;}
.yb9{bottom:144.936000px;}
.yae{bottom:148.716000px;}
.y76{bottom:148.896000px;}
.yb8{bottom:165.630000px;}
.y8f{bottom:165.810000px;}
.y53{bottom:171.000000px;}
.y48{bottom:174.630000px;}
.y75{bottom:175.530000px;}
.yad{bottom:179.850000px;}
.yb7{bottom:186.330000px;}
.y8e{bottom:196.770000px;}
.y52{bottom:202.185000px;}
.y98{bottom:205.410000px;}
.y47{bottom:205.770000px;}
.yac{bottom:210.450000px;}
.yb6{bottom:217.290000px;}
.y8d{bottom:227.910000px;}
.y51{bottom:233.145000px;}
.y97{bottom:236.370000px;}
.y46{bottom:236.730000px;}
.yab{bottom:241.590000px;}
.y8c{bottom:258.870000px;}
.y50{bottom:264.285000px;}
.y45{bottom:267.690000px;}
.yaa{bottom:272.910000px;}
.y8b{bottom:290.010000px;}
.y4f{bottom:295.245000px;}
.y44{bottom:298.830000px;}
.ya9{bottom:304.050000px;}
.yb5{bottom:305.490000px;}
.y8a{bottom:320.970000px;}
.y4e{bottom:326.385000px;}
.y43{bottom:329.790000px;}
.ya8{bottom:335.010000px;}
.y89{bottom:352.110000px;}
.y4d{bottom:357.345000px;}
.y42{bottom:360.930000px;}
.ya7{bottom:366.150000px;}
.y88{bottom:383.115000px;}
.y4c{bottom:388.125000px;}
.y41{bottom:391.935000px;}
.ya6{bottom:397.155000px;}
.y74{bottom:404.715000px;}
.y87{bottom:414.255000px;}
.y40{bottom:423.075000px;}
.yb2{bottom:425.235000px;}
.ya5{bottom:428.295000px;}
.y73{bottom:435.855000px;}
.y86{bottom:444.855000px;}
.y3f{bottom:454.035000px;}
.y1a{bottom:456.375000px;}
.yb1{bottom:458.895000px;}
.ya4{bottom:459.255000px;}
.y72{bottom:466.815000px;}
.y85{bottom:475.995000px;}
.y3e{bottom:485.175000px;}
.ya3{bottom:490.395000px;}
.y19{bottom:495.975000px;}
.y71{bottom:497.955000px;}
.y84{bottom:507.315000px;}
.y3d{bottom:516.135000px;}
.ya2{bottom:521.355000px;}
.y70{bottom:528.915000px;}
.y18{bottom:535.755000px;}
.y83{bottom:538.455000px;}
.y3c{bottom:547.275000px;}
.ya1{bottom:552.495000px;}
.y6f{bottom:559.695000px;}
.y82{bottom:569.415000px;}
.y17{bottom:575.355000px;}
.y69{bottom:578.235000px;}
.y3b{bottom:580.395000px;}
.ya0{bottom:583.455000px;}
.y6e{bottom:590.655000px;}
.y81{bottom:600.555000px;}
.y68{bottom:609.405000px;}
.y3a{bottom:614.265000px;}
.y9f{bottom:614.625000px;}
.y6d{bottom:622.185000px;}
.y16{bottom:626.325000px;}
.y80{bottom:631.545000px;}
.y67{bottom:640.365000px;}
.y39{bottom:645.225000px;}
.y9e{bottom:645.585000px;}
.y6c{bottom:648.825000px;}
.y15{bottom:657.465000px;}
.y7f{bottom:662.685000px;}
.y4b{bottom:665.385000px;}
.y66{bottom:671.505000px;}
.y38{bottom:676.365000px;}
.y9d{bottom:676.725000px;}
.y14{bottom:688.425000px;}
.y7e{bottom:693.645000px;}
.y65{bottom:702.465000px;}
.y37{bottom:707.325000px;}
.yb0{bottom:707.685000px;}
.y13{bottom:712.005000px;}
.y7d{bottom:724.605000px;}
.y64{bottom:733.605000px;}
.y12{bottom:736.125000px;}
.y36{bottom:738.465000px;}
.yaf{bottom:738.825000px;}
.y7c{bottom:755.745000px;}
.y11{bottom:759.885000px;}
.y63{bottom:764.565000px;}
.y35{bottom:769.425000px;}
.y9c{bottom:769.785000px;}
.y7b{bottom:786.705000px;}
.y10{bottom:790.485000px;}
.y62{bottom:795.705000px;}
.y34{bottom:800.385000px;}
.y9b{bottom:800.745000px;}
.yf{bottom:814.245000px;}
.y7a{bottom:817.845000px;}
.y61{bottom:826.665000px;}
.y96{bottom:828.825000px;}
.y33{bottom:831.525000px;}
.y9a{bottom:831.885000px;}
.ye{bottom:838.005000px;}
.y79{bottom:848.850000px;}
.y60{bottom:857.850000px;}
.yd{bottom:861.810000px;}
.y32{bottom:862.530000px;}
.y99{bottom:862.890000px;}
.y6b{bottom:870.630000px;}
.y78{bottom:875.490000px;}
.yc{bottom:885.390000px;}
.y5f{bottom:888.810000px;}
.y31{bottom:893.670000px;}
.y95{bottom:894.030000px;}
.y6a{bottom:897.270000px;}
.yb{bottom:909.510000px;}
.y5e{bottom:919.950000px;}
.y30{bottom:924.630000px;}
.y94{bottom:924.990000px;}
.ya{bottom:935.250000px;}
.y5d{bottom:950.550000px;}
.yb4{bottom:953.070000px;}
.y2f{bottom:955.770000px;}
.y93{bottom:956.130000px;}
.y9{bottom:967.110000px;}
.y5c{bottom:984.030000px;}
.y2e{bottom:986.730000px;}
.y92{bottom:987.090000px;}
.y8{bottom:999.690000px;}
.y2d{bottom:1017.870000px;}
.y91{bottom:1018.230000px;}
.y1b{bottom:1033.890000px;}
.y7{bottom:1034.970000px;}
.y2c{bottom:1048.830000px;}
.y5b{bottom:1049.190000px;}
.y2b{bottom:1079.970000px;}
.y5a{bottom:1080.330000px;}
.y2a{bottom:1110.960000px;}
.y59{bottom:1111.320000px;}
.y5{bottom:1131.120000px;}
.y21{bottom:1133.280000px;}
.y1f{bottom:1133.640000px;}
.hc{height:33.660000px;}
.hb{height:34.560000px;}
.h11{height:50.273438px;}
.h5{height:58.651172px;}
.h4{height:65.010937px;}
.h10{height:70.628906px;}
.h3{height:70.664062px;}
.h8{height:72.562500px;}
.hd{height:73.080000px;}
.h7{height:74.704922px;}
.h2{height:81.540000px;}
.he{height:84.898125px;}
.h9{height:87.336000px;}
.ha{height:90.884531px;}
.h6{height:96.508125px;}
.hf{height:405.930000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.w5{width:103.896000px;}
.w4{width:619.710000px;}
.w3{width:642.570000px;}
.w7{width:733.650000px;}
.w1{width:824.400000px;}
.w6{width:831.600000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.xd{left:10.800000px;}
.x2{left:20.700000px;}
.x11{left:24.300000px;}
.x1{left:41.760000px;}
.x10{left:43.200000px;}
.x5{left:57.059987px;}
.x7{left:64.619987px;}
.x19{left:71.639987px;}
.xb{left:85.715987px;}
.x14{left:89.136000px;}
.x3{left:164.010000px;}
.x12{left:167.610000px;}
.x17{left:218.909987px;}
.xc{left:238.170000px;}
.x9{left:248.069987px;}
.x16{left:251.894987px;}
.x1a{left:254.414987px;}
.x1c{left:266.654987px;}
.x8{left:344.594987px;}
.x4{left:402.225000px;}
.x13{left:405.825000px;}
.xa{left:440.204987px;}
.x15{left:594.689987px;}
.x18{left:600.269987px;}
.x1b{left:607.829987px;}
.xf{left:717.990000px;}
.x1d{left:768.239987px;}
.x6{left:834.119987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.344533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1{letter-spacing:6.400000pt;}
.ws5{word-spacing:-25.758080pt;}
.ws6{word-spacing:-25.413547pt;}
.ws9{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-14.720000pt;}
._a{margin-left:-8.032000pt;}
._6{margin-left:-4.736000pt;}
._5{margin-left:-3.840000pt;}
._8{margin-left:-2.442667pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.088000pt;}
._d{width:2.048000pt;}
._c{width:3.498667pt;}
._b{width:4.469333pt;}
._12{width:5.493333pt;}
._4{width:6.400000pt;}
._7{width:7.306667pt;}
._15{width:8.437333pt;}
._14{width:9.525333pt;}
._13{width:10.496000pt;}
._10{width:11.840000pt;}
._e{width:13.184000pt;}
._f{width:14.133333pt;}
._17{width:15.093333pt;}
._11{width:17.589333pt;}
._1a{width:19.776000pt;}
._16{width:22.848000pt;}
._3{width:24.117333pt;}
._2{width:25.013333pt;}
._18{width:39.744000pt;}
._19{width:41.216000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y1e{bottom:-26.560000pt;}
.y28{bottom:-13.120053pt;}
.y23{bottom:-7.840000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:7.840000pt;}
.y27{bottom:8.160000pt;}
.y22{bottom:12.960000pt;}
.y20{bottom:13.280000pt;}
.y58{bottom:13.600000pt;}
.y24{bottom:14.400000pt;}
.y4{bottom:15.040000pt;}
.y1{bottom:21.760000pt;}
.y26{bottom:29.280000pt;}
.y3{bottom:36.800000pt;}
.y57{bottom:41.600000pt;}
.y25{bottom:50.400000pt;}
.y1c{bottom:53.306667pt;}
.y2{bottom:57.920000pt;}
.y6{bottom:68.000000pt;}
.y56{bottom:69.280000pt;}
.y29{bottom:87.040000pt;}
.y55{bottom:96.800000pt;}
.y4a{bottom:100.000000pt;}
.y77{bottom:104.640000pt;}
.y90{bottom:119.712000pt;}
.y54{bottom:124.480000pt;}
.yb3{bottom:127.392000pt;}
.y49{bottom:127.712000pt;}
.yb9{bottom:128.832000pt;}
.yae{bottom:132.192000pt;}
.y76{bottom:132.352000pt;}
.yb8{bottom:147.226667pt;}
.y8f{bottom:147.386667pt;}
.y53{bottom:152.000000pt;}
.y48{bottom:155.226667pt;}
.y75{bottom:156.026667pt;}
.yad{bottom:159.866667pt;}
.yb7{bottom:165.626667pt;}
.y8e{bottom:174.906667pt;}
.y52{bottom:179.720000pt;}
.y98{bottom:182.586667pt;}
.y47{bottom:182.906667pt;}
.yac{bottom:187.066667pt;}
.yb6{bottom:193.146667pt;}
.y8d{bottom:202.586667pt;}
.y51{bottom:207.240000pt;}
.y97{bottom:210.106667pt;}
.y46{bottom:210.426667pt;}
.yab{bottom:214.746667pt;}
.y8c{bottom:230.106667pt;}
.y50{bottom:234.920000pt;}
.y45{bottom:237.946667pt;}
.yaa{bottom:242.586667pt;}
.y8b{bottom:257.786667pt;}
.y4f{bottom:262.440000pt;}
.y44{bottom:265.626667pt;}
.ya9{bottom:270.266667pt;}
.yb5{bottom:271.546667pt;}
.y8a{bottom:285.306667pt;}
.y4e{bottom:290.120000pt;}
.y43{bottom:293.146667pt;}
.ya8{bottom:297.786667pt;}
.y89{bottom:312.986667pt;}
.y4d{bottom:317.640000pt;}
.y42{bottom:320.826667pt;}
.ya7{bottom:325.466667pt;}
.y88{bottom:340.546667pt;}
.y4c{bottom:345.000000pt;}
.y41{bottom:348.386667pt;}
.ya6{bottom:353.026667pt;}
.y74{bottom:359.746667pt;}
.y87{bottom:368.226667pt;}
.y40{bottom:376.066667pt;}
.yb2{bottom:377.986667pt;}
.ya5{bottom:380.706667pt;}
.y73{bottom:387.426667pt;}
.y86{bottom:395.426667pt;}
.y3f{bottom:403.586667pt;}
.y1a{bottom:405.666667pt;}
.yb1{bottom:407.906667pt;}
.ya4{bottom:408.226667pt;}
.y72{bottom:414.946667pt;}
.y85{bottom:423.106667pt;}
.y3e{bottom:431.266667pt;}
.ya3{bottom:435.906667pt;}
.y19{bottom:440.866667pt;}
.y71{bottom:442.626667pt;}
.y84{bottom:450.946667pt;}
.y3d{bottom:458.786667pt;}
.ya2{bottom:463.426667pt;}
.y70{bottom:470.146667pt;}
.y18{bottom:476.226667pt;}
.y83{bottom:478.626667pt;}
.y3c{bottom:486.466667pt;}
.ya1{bottom:491.106667pt;}
.y6f{bottom:497.506667pt;}
.y82{bottom:506.146667pt;}
.y17{bottom:511.426667pt;}
.y69{bottom:513.986667pt;}
.y3b{bottom:515.906667pt;}
.ya0{bottom:518.626667pt;}
.y6e{bottom:525.026667pt;}
.y81{bottom:533.826667pt;}
.y68{bottom:541.693333pt;}
.y3a{bottom:546.013333pt;}
.y9f{bottom:546.333333pt;}
.y6d{bottom:553.053333pt;}
.y16{bottom:556.733333pt;}
.y80{bottom:561.373333pt;}
.y67{bottom:569.213333pt;}
.y39{bottom:573.533333pt;}
.y9e{bottom:573.853333pt;}
.y6c{bottom:576.733333pt;}
.y15{bottom:584.413333pt;}
.y7f{bottom:589.053333pt;}
.y4b{bottom:591.453333pt;}
.y66{bottom:596.893333pt;}
.y38{bottom:601.213333pt;}
.y9d{bottom:601.533333pt;}
.y14{bottom:611.933333pt;}
.y7e{bottom:616.573333pt;}
.y65{bottom:624.413333pt;}
.y37{bottom:628.733333pt;}
.yb0{bottom:629.053333pt;}
.y13{bottom:632.893333pt;}
.y7d{bottom:644.093333pt;}
.y64{bottom:652.093333pt;}
.y12{bottom:654.333333pt;}
.y36{bottom:656.413333pt;}
.yaf{bottom:656.733333pt;}
.y7c{bottom:671.773333pt;}
.y11{bottom:675.453333pt;}
.y63{bottom:679.613333pt;}
.y35{bottom:683.933333pt;}
.y9c{bottom:684.253333pt;}
.y7b{bottom:699.293333pt;}
.y10{bottom:702.653333pt;}
.y62{bottom:707.293333pt;}
.y34{bottom:711.453333pt;}
.y9b{bottom:711.773333pt;}
.yf{bottom:723.773333pt;}
.y7a{bottom:726.973333pt;}
.y61{bottom:734.813333pt;}
.y96{bottom:736.733333pt;}
.y33{bottom:739.133333pt;}
.y9a{bottom:739.453333pt;}
.ye{bottom:744.893333pt;}
.y79{bottom:754.533333pt;}
.y60{bottom:762.533333pt;}
.yd{bottom:766.053333pt;}
.y32{bottom:766.693333pt;}
.y99{bottom:767.013333pt;}
.y6b{bottom:773.893333pt;}
.y78{bottom:778.213333pt;}
.yc{bottom:787.013333pt;}
.y5f{bottom:790.053333pt;}
.y31{bottom:794.373333pt;}
.y95{bottom:794.693333pt;}
.y6a{bottom:797.573333pt;}
.yb{bottom:808.453333pt;}
.y5e{bottom:817.733333pt;}
.y30{bottom:821.893333pt;}
.y94{bottom:822.213333pt;}
.ya{bottom:831.333333pt;}
.y5d{bottom:844.933333pt;}
.yb4{bottom:847.173333pt;}
.y2f{bottom:849.573333pt;}
.y93{bottom:849.893333pt;}
.y9{bottom:859.653333pt;}
.y5c{bottom:874.693333pt;}
.y2e{bottom:877.093333pt;}
.y92{bottom:877.413333pt;}
.y8{bottom:888.613333pt;}
.y2d{bottom:904.773333pt;}
.y91{bottom:905.093333pt;}
.y1b{bottom:919.013333pt;}
.y7{bottom:919.973333pt;}
.y2c{bottom:932.293333pt;}
.y5b{bottom:932.613333pt;}
.y2b{bottom:959.973333pt;}
.y5a{bottom:960.293333pt;}
.y2a{bottom:987.520000pt;}
.y59{bottom:987.840000pt;}
.y5{bottom:1005.440000pt;}
.y21{bottom:1007.360000pt;}
.y1f{bottom:1007.680000pt;}
.hc{height:29.920000pt;}
.hb{height:30.720000pt;}
.h11{height:44.687500pt;}
.h5{height:52.134375pt;}
.h4{height:57.787500pt;}
.h10{height:62.781250pt;}
.h3{height:62.812500pt;}
.h8{height:64.500000pt;}
.hd{height:64.960000pt;}
.h7{height:66.404375pt;}
.h2{height:72.480000pt;}
.he{height:75.465000pt;}
.h9{height:77.632000pt;}
.ha{height:80.786250pt;}
.h6{height:85.785000pt;}
.hf{height:360.826667pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.w5{width:92.352000pt;}
.w4{width:550.853333pt;}
.w3{width:571.173333pt;}
.w7{width:652.133333pt;}
.w1{width:732.800000pt;}
.w6{width:739.200000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.xd{left:9.600000pt;}
.x2{left:18.400000pt;}
.x11{left:21.600000pt;}
.x1{left:37.120000pt;}
.x10{left:38.400000pt;}
.x5{left:50.719988pt;}
.x7{left:57.439988pt;}
.x19{left:63.679988pt;}
.xb{left:76.191988pt;}
.x14{left:79.232000pt;}
.x3{left:145.786667pt;}
.x12{left:148.986667pt;}
.x17{left:194.586655pt;}
.xc{left:211.706667pt;}
.x9{left:220.506655pt;}
.x16{left:223.906655pt;}
.x1a{left:226.146655pt;}
.x1c{left:237.026655pt;}
.x8{left:306.306655pt;}
.x4{left:357.533333pt;}
.x13{left:360.733333pt;}
.xa{left:391.293321pt;}
.x15{left:528.613321pt;}
.x18{left:533.573321pt;}
.x1b{left:540.293321pt;}
.xf{left:638.213333pt;}
.x1d{left:682.879988pt;}
.x6{left:741.439988pt;}
}




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