
    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_6248d2fc9bf1c40fcd615ca0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_698459f2a2582750a43fc076.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_67953d2b61f9ee1130d375d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_5e5da628dc309ec3d3666ad6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ea3d97a3d50864152f85042b.woff2')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_1159a341c8b1aeac41bc8176.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.253200px;}
.ls12{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.234000px;}
.lsb{letter-spacing:0.269280px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.709280px;}
.lsa{letter-spacing:3.149280px;}
.ls3{letter-spacing:11.700000px;}
.lsc{letter-spacing:13.860000px;}
.lse{letter-spacing:199.416000px;}
.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;}
}
.ws8{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.450800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.482000px;}
.ws6{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-12.960000px;}
._1a{margin-left:-5.139840px;}
._3{margin-left:-4.020000px;}
._2{margin-left:-2.760000px;}
._1{margin-left:-1.000080px;}
._0{width:1.254960px;}
._13{width:2.970000px;}
._12{width:4.320000px;}
._6{width:5.940000px;}
._9{width:7.614000px;}
._7{width:8.856000px;}
._8{width:10.044000px;}
._a{width:11.098080px;}
._4{width:12.420000px;}
._20{width:13.446720px;}
._16{width:14.502240px;}
._e{width:15.552000px;}
._11{width:16.956000px;}
._10{width:18.036000px;}
._1e{width:19.419120px;}
._5{width:20.520000px;}
._b{width:21.762000px;}
._15{width:23.652000px;}
._c{width:25.218000px;}
._d{width:26.256000px;}
._14{width:27.270000px;}
._17{width:28.458000px;}
._1b{width:29.593440px;}
._1f{width:30.656880px;}
._f{width:36.504000px;}
._19{width:37.817280px;}
._1c{width:48.818880px;}
._1d{width:49.818960px;}
._21{width:104.526720px;}
._22{width:1971.513360px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.880000px;}
.y3d{bottom:3.060000px;}
.y2{bottom:5.400000px;}
.y3f{bottom:8.460000px;}
.y40{bottom:18.360000px;}
.y3c{bottom:18.540000px;}
.y5{bottom:19.830000px;}
.y8{bottom:23.790000px;}
.y3b{bottom:34.020000px;}
.y4{bottom:39.630000px;}
.y7{bottom:43.590000px;}
.y3a{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y39{bottom:65.160000px;}
.y38{bottom:80.685000px;}
.y37{bottom:96.165000px;}
.y84{bottom:110.376000px;}
.y36{bottom:111.645000px;}
.y47{bottom:114.516000px;}
.y8e{bottom:114.876000px;}
.y83{bottom:124.236000px;}
.y8d{bottom:125.316000px;}
.y35{bottom:127.125000px;}
.y82{bottom:128.736000px;}
.y46{bottom:136.296000px;}
.y81{bottom:138.096000px;}
.y99{bottom:138.996000px;}
.y34{bottom:142.785000px;}
.y80{bottom:151.770000px;}
.y8c{bottom:151.950000px;}
.y7f{bottom:156.270000px;}
.y97{bottom:156.450000px;}
.y45{bottom:158.070000px;}
.y33{bottom:158.265000px;}
.y7e{bottom:165.630000px;}
.y96{bottom:165.810000px;}
.y95{bottom:170.310000px;}
.y8b{bottom:173.730000px;}
.y32{bottom:173.745000px;}
.y7d{bottom:179.490000px;}
.y94{bottom:179.670000px;}
.y44{bottom:179.850000px;}
.y7c{bottom:183.990000px;}
.y93{bottom:184.170000px;}
.y31{bottom:189.225000px;}
.y7b{bottom:193.350000px;}
.y92{bottom:194.430000px;}
.y8a{bottom:195.510000px;}
.y43{bottom:201.810000px;}
.y30{bottom:204.885000px;}
.y7a{bottom:207.210000px;}
.y79{bottom:211.710000px;}
.y89{bottom:217.290000px;}
.y2f{bottom:220.365000px;}
.y78{bottom:221.070000px;}
.y42{bottom:223.590000px;}
.y77{bottom:225.570000px;}
.y76{bottom:234.930000px;}
.y2e{bottom:235.845000px;}
.y3e{bottom:239.070000px;}
.y88{bottom:239.250000px;}
.y75{bottom:248.610000px;}
.y2d{bottom:251.325000px;}
.y74{bottom:253.110000px;}
.y87{bottom:261.030000px;}
.y73{bottom:263.550000px;}
.y2c{bottom:266.985000px;}
.y16{bottom:270.030000px;}
.y2b{bottom:282.465000px;}
.y86{bottom:282.810000px;}
.y91{bottom:288.750000px;}
.y2a{bottom:297.945000px;}
.y71{bottom:304.590000px;}
.y72{bottom:310.530000px;}
.y29{bottom:313.425000px;}
.y70{bottom:326.370000px;}
.y28{bottom:329.085000px;}
.y27{bottom:344.595000px;}
.y6f{bottom:348.375000px;}
.y26{bottom:360.075000px;}
.y6e{bottom:370.155000px;}
.y25{bottom:375.555000px;}
.y24{bottom:391.215000px;}
.y6d{bottom:391.935000px;}
.y23{bottom:406.695000px;}
.y6c{bottom:413.715000px;}
.y22{bottom:422.175000px;}
.y6a{bottom:435.495000px;}
.y21{bottom:437.655000px;}
.y6b{bottom:441.435000px;}
.y20{bottom:453.315000px;}
.y69{bottom:457.455000px;}
.y1f{bottom:468.795000px;}
.y68{bottom:479.235000px;}
.y1e{bottom:484.275000px;}
.y1d{bottom:499.755000px;}
.y67{bottom:501.015000px;}
.y1c{bottom:515.415000px;}
.y66{bottom:522.795000px;}
.y1b{bottom:530.895000px;}
.y65{bottom:544.755000px;}
.y1a{bottom:546.375000px;}
.y19{bottom:561.855000px;}
.y64{bottom:566.535000px;}
.y18{bottom:577.515000px;}
.y63{bottom:588.315000px;}
.y17{bottom:592.995000px;}
.y90{bottom:594.255000px;}
.y62{bottom:610.125000px;}
.y98{bottom:616.065000px;}
.y60{bottom:631.905000px;}
.y61{bottom:637.845000px;}
.y5f{bottom:653.865000px;}
.y5e{bottom:675.645000px;}
.y5d{bottom:697.425000px;}
.y5c{bottom:719.205000px;}
.y5a{bottom:741.165000px;}
.y5b{bottom:747.105000px;}
.y59{bottom:762.945000px;}
.y58{bottom:784.725000px;}
.y57{bottom:806.505000px;}
.y56{bottom:828.285000px;}
.y85{bottom:834.225000px;}
.y55{bottom:850.245000px;}
.y53{bottom:872.070000px;}
.y54{bottom:878.010000px;}
.y15{bottom:881.970000px;}
.y52{bottom:893.850000px;}
.y8f{bottom:899.790000px;}
.y14{bottom:903.210000px;}
.y51{bottom:915.630000px;}
.y13{bottom:923.010000px;}
.y50{bottom:937.590000px;}
.y12{bottom:948.210000px;}
.y4f{bottom:959.370000px;}
.y11{bottom:963.330000px;}
.y4e{bottom:981.150000px;}
.y10{bottom:983.310000px;}
.yf{bottom:1000.950000px;}
.y4d{bottom:1002.930000px;}
.ye{bottom:1022.730000px;}
.y4b{bottom:1024.710000px;}
.y4c{bottom:1030.650000px;}
.yd{bottom:1042.890000px;}
.y4a{bottom:1046.670000px;}
.yc{bottom:1061.790000px;}
.y49{bottom:1068.450000px;}
.yb{bottom:1087.530000px;}
.y48{bottom:1090.230000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h17{height:22.015547px;}
.hd{height:27.147656px;}
.h16{height:29.158594px;}
.h14{height:30.960000px;}
.h19{height:33.683203px;}
.h9{height:34.036523px;}
.h18{height:35.120039px;}
.h12{height:37.705078px;}
.h11{height:38.100586px;}
.h7{height:39.147891px;}
.hb{height:39.760312px;}
.h3{height:42.164648px;}
.h13{height:44.507812px;}
.h15{height:46.251562px;}
.hf{height:46.736719px;}
.he{height:48.027656px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.h10{height:605.625000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x15{left:30.600000px;}
.x2{left:70.374000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x23{left:112.175987px;}
.x12{left:116.136000px;}
.x7{left:131.805000px;}
.xd{left:133.595987px;}
.xa{left:135.395987px;}
.x31{left:150.509987px;}
.xf{left:153.389987px;}
.x16{left:161.129987px;}
.x3{left:180.030000px;}
.x8{left:185.985000px;}
.x10{left:216.929987px;}
.xb{left:225.029987px;}
.x11{left:232.409987px;}
.x22{left:324.074987px;}
.x24{left:344.594973px;}
.x25{left:349.814987px;}
.xe{left:358.274987px;}
.x1b{left:361.874973px;}
.x1c{left:367.094987px;}
.x21{left:372.494987px;}
.x26{left:417.494973px;}
.x27{left:422.714987px;}
.x1d{left:429.554973px;}
.x1e{left:434.774987px;}
.xc{left:446.474987px;}
.x30{left:456.194987px;}
.x9{left:506.084987px;}
.x1f{left:533.264973px;}
.x20{left:538.484987px;}
.x5{left:554.685000px;}
.x13{left:575.925000px;}
.x28{left:578.804973px;}
.x17{left:581.864973px;}
.x29{left:584.024987px;}
.x18{left:587.084987px;}
.x2a{left:616.604973px;}
.x2b{left:627.044987px;}
.x19{left:710.609973px;}
.x2c{left:713.309973px;}
.x1a{left:715.829987px;}
.x2d{left:723.749987px;}
.x2e{left:739.049973px;}
.x2f{left:749.489987px;}
.x14{left:777.930000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.225067pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.208000pt;}
.lsb{letter-spacing:0.239360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.519360pt;}
.lsa{letter-spacing:2.799360pt;}
.ls3{letter-spacing:10.400000pt;}
.lsc{letter-spacing:12.320000pt;}
.lse{letter-spacing:177.258667pt;}
.ws8{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.622933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.984000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-11.520000pt;}
._1a{margin-left:-4.568747pt;}
._3{margin-left:-3.573333pt;}
._2{margin-left:-2.453333pt;}
._1{margin-left:-0.888960pt;}
._0{width:1.115520pt;}
._13{width:2.640000pt;}
._12{width:3.840000pt;}
._6{width:5.280000pt;}
._9{width:6.768000pt;}
._7{width:7.872000pt;}
._8{width:8.928000pt;}
._a{width:9.864960pt;}
._4{width:11.040000pt;}
._20{width:11.952640pt;}
._16{width:12.890880pt;}
._e{width:13.824000pt;}
._11{width:15.072000pt;}
._10{width:16.032000pt;}
._1e{width:17.261440pt;}
._5{width:18.240000pt;}
._b{width:19.344000pt;}
._15{width:21.024000pt;}
._c{width:22.416000pt;}
._d{width:23.338667pt;}
._14{width:24.240000pt;}
._17{width:25.296000pt;}
._1b{width:26.305280pt;}
._1f{width:27.250560pt;}
._f{width:32.448000pt;}
._19{width:33.615360pt;}
._1c{width:43.394560pt;}
._1d{width:44.283520pt;}
._21{width:92.912640pt;}
._22{width:1752.456320pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.560000pt;}
.y3d{bottom:2.720000pt;}
.y2{bottom:4.800000pt;}
.y3f{bottom:7.520000pt;}
.y40{bottom:16.320000pt;}
.y3c{bottom:16.480000pt;}
.y5{bottom:17.626667pt;}
.y8{bottom:21.146667pt;}
.y3b{bottom:30.240000pt;}
.y4{bottom:35.226667pt;}
.y7{bottom:38.746667pt;}
.y3a{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y39{bottom:57.920000pt;}
.y38{bottom:71.720000pt;}
.y37{bottom:85.480000pt;}
.y84{bottom:98.112000pt;}
.y36{bottom:99.240000pt;}
.y47{bottom:101.792000pt;}
.y8e{bottom:102.112000pt;}
.y83{bottom:110.432000pt;}
.y8d{bottom:111.392000pt;}
.y35{bottom:113.000000pt;}
.y82{bottom:114.432000pt;}
.y46{bottom:121.152000pt;}
.y81{bottom:122.752000pt;}
.y99{bottom:123.552000pt;}
.y34{bottom:126.920000pt;}
.y80{bottom:134.906667pt;}
.y8c{bottom:135.066667pt;}
.y7f{bottom:138.906667pt;}
.y97{bottom:139.066667pt;}
.y45{bottom:140.506667pt;}
.y33{bottom:140.680000pt;}
.y7e{bottom:147.226667pt;}
.y96{bottom:147.386667pt;}
.y95{bottom:151.386667pt;}
.y8b{bottom:154.426667pt;}
.y32{bottom:154.440000pt;}
.y7d{bottom:159.546667pt;}
.y94{bottom:159.706667pt;}
.y44{bottom:159.866667pt;}
.y7c{bottom:163.546667pt;}
.y93{bottom:163.706667pt;}
.y31{bottom:168.200000pt;}
.y7b{bottom:171.866667pt;}
.y92{bottom:172.826667pt;}
.y8a{bottom:173.786667pt;}
.y43{bottom:179.386667pt;}
.y30{bottom:182.120000pt;}
.y7a{bottom:184.186667pt;}
.y79{bottom:188.186667pt;}
.y89{bottom:193.146667pt;}
.y2f{bottom:195.880000pt;}
.y78{bottom:196.506667pt;}
.y42{bottom:198.746667pt;}
.y77{bottom:200.506667pt;}
.y76{bottom:208.826667pt;}
.y2e{bottom:209.640000pt;}
.y3e{bottom:212.506667pt;}
.y88{bottom:212.666667pt;}
.y75{bottom:220.986667pt;}
.y2d{bottom:223.400000pt;}
.y74{bottom:224.986667pt;}
.y87{bottom:232.026667pt;}
.y73{bottom:234.266667pt;}
.y2c{bottom:237.320000pt;}
.y16{bottom:240.026667pt;}
.y2b{bottom:251.080000pt;}
.y86{bottom:251.386667pt;}
.y91{bottom:256.666667pt;}
.y2a{bottom:264.840000pt;}
.y71{bottom:270.746667pt;}
.y72{bottom:276.026667pt;}
.y29{bottom:278.600000pt;}
.y70{bottom:290.106667pt;}
.y28{bottom:292.520000pt;}
.y27{bottom:306.306667pt;}
.y6f{bottom:309.666667pt;}
.y26{bottom:320.066667pt;}
.y6e{bottom:329.026667pt;}
.y25{bottom:333.826667pt;}
.y24{bottom:347.746667pt;}
.y6d{bottom:348.386667pt;}
.y23{bottom:361.506667pt;}
.y6c{bottom:367.746667pt;}
.y22{bottom:375.266667pt;}
.y6a{bottom:387.106667pt;}
.y21{bottom:389.026667pt;}
.y6b{bottom:392.386667pt;}
.y20{bottom:402.946667pt;}
.y69{bottom:406.626667pt;}
.y1f{bottom:416.706667pt;}
.y68{bottom:425.986667pt;}
.y1e{bottom:430.466667pt;}
.y1d{bottom:444.226667pt;}
.y67{bottom:445.346667pt;}
.y1c{bottom:458.146667pt;}
.y66{bottom:464.706667pt;}
.y1b{bottom:471.906667pt;}
.y65{bottom:484.226667pt;}
.y1a{bottom:485.666667pt;}
.y19{bottom:499.426667pt;}
.y64{bottom:503.586667pt;}
.y18{bottom:513.346667pt;}
.y63{bottom:522.946667pt;}
.y17{bottom:527.106667pt;}
.y90{bottom:528.226667pt;}
.y62{bottom:542.333333pt;}
.y98{bottom:547.613333pt;}
.y60{bottom:561.693333pt;}
.y61{bottom:566.973333pt;}
.y5f{bottom:581.213333pt;}
.y5e{bottom:600.573333pt;}
.y5d{bottom:619.933333pt;}
.y5c{bottom:639.293333pt;}
.y5a{bottom:658.813333pt;}
.y5b{bottom:664.093333pt;}
.y59{bottom:678.173333pt;}
.y58{bottom:697.533333pt;}
.y57{bottom:716.893333pt;}
.y56{bottom:736.253333pt;}
.y85{bottom:741.533333pt;}
.y55{bottom:755.773333pt;}
.y53{bottom:775.173333pt;}
.y54{bottom:780.453333pt;}
.y15{bottom:783.973333pt;}
.y52{bottom:794.533333pt;}
.y8f{bottom:799.813333pt;}
.y14{bottom:802.853333pt;}
.y51{bottom:813.893333pt;}
.y13{bottom:820.453333pt;}
.y50{bottom:833.413333pt;}
.y12{bottom:842.853333pt;}
.y4f{bottom:852.773333pt;}
.y11{bottom:856.293333pt;}
.y4e{bottom:872.133333pt;}
.y10{bottom:874.053333pt;}
.yf{bottom:889.733333pt;}
.y4d{bottom:891.493333pt;}
.ye{bottom:909.093333pt;}
.y4b{bottom:910.853333pt;}
.y4c{bottom:916.133333pt;}
.yd{bottom:927.013333pt;}
.y4a{bottom:930.373333pt;}
.yc{bottom:943.813333pt;}
.y49{bottom:949.733333pt;}
.yb{bottom:966.693333pt;}
.y48{bottom:969.093333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h17{height:19.569375pt;}
.hd{height:24.131250pt;}
.h16{height:25.918750pt;}
.h14{height:27.520000pt;}
.h19{height:29.940625pt;}
.h9{height:30.254687pt;}
.h18{height:31.217812pt;}
.h12{height:33.515625pt;}
.h11{height:33.867188pt;}
.h7{height:34.798125pt;}
.hb{height:35.342500pt;}
.h3{height:37.479688pt;}
.h13{height:39.562500pt;}
.h15{height:41.112500pt;}
.hf{height:41.543750pt;}
.he{height:42.691250pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.h10{height:538.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x15{left:27.200000pt;}
.x2{left:62.554667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x23{left:99.711988pt;}
.x12{left:103.232000pt;}
.x7{left:117.160000pt;}
.xd{left:118.751988pt;}
.xa{left:120.351988pt;}
.x31{left:133.786655pt;}
.xf{left:136.346655pt;}
.x16{left:143.226655pt;}
.x3{left:160.026667pt;}
.x8{left:165.320000pt;}
.x10{left:192.826655pt;}
.xb{left:200.026655pt;}
.x11{left:206.586655pt;}
.x22{left:288.066655pt;}
.x24{left:306.306643pt;}
.x25{left:310.946655pt;}
.xe{left:318.466655pt;}
.x1b{left:321.666643pt;}
.x1c{left:326.306655pt;}
.x21{left:331.106655pt;}
.x26{left:371.106643pt;}
.x27{left:375.746655pt;}
.x1d{left:381.826643pt;}
.x1e{left:386.466655pt;}
.xc{left:396.866655pt;}
.x30{left:405.506655pt;}
.x9{left:449.853322pt;}
.x1f{left:474.013310pt;}
.x20{left:478.653322pt;}
.x5{left:493.053333pt;}
.x13{left:511.933333pt;}
.x28{left:514.493310pt;}
.x17{left:517.213310pt;}
.x29{left:519.133322pt;}
.x18{left:521.853322pt;}
.x2a{left:548.093310pt;}
.x2b{left:557.373322pt;}
.x19{left:631.653310pt;}
.x2c{left:634.053310pt;}
.x1a{left:636.293322pt;}
.x2d{left:643.333322pt;}
.x2e{left:656.933310pt;}
.x2f{left:666.213322pt;}
.x14{left:691.493333pt;}
}




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