
    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_2a0edaef6f7b850a13877f2a.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_95ab6f647adf1a08619ced4b.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_9bb2778ec6ba63279e8b99b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_00678563d04e1e0bb265f089.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_79b0f7336ca13c749e509748.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c9d43bdcd7a2383ab6978515.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.lsa{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.181200px;}
.lsc{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.080000px;}
.ls12{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.060000px;}
.ls13{letter-spacing:23.760000px;}
.lsd{letter-spacing:39.881280px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws8{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-4.437120px;}
._c{margin-left:-2.907360px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._13{width:2.268000px;}
._d{width:3.396000px;}
._18{width:4.772880px;}
._9{width:5.778000px;}
._5{width:6.858000px;}
._2{width:7.992000px;}
._8{width:9.378720px;}
._12{width:11.087280px;}
._11{width:12.456720px;}
._1b{width:13.579200px;}
._10{width:14.688000px;}
._7{width:15.714000px;}
._6{width:17.010000px;}
._15{width:18.547200px;}
._a{width:19.710000px;}
._e{width:20.736000px;}
._f{width:21.861120px;}
._1d{width:23.212560px;}
._3{width:24.354000px;}
._4{width:25.536000px;}
._16{width:26.627520px;}
._19{width:27.827520px;}
._b{width:28.836000px;}
._1a{width:29.899680px;}
._1c{width:30.965280px;}
._20{width:36.554160px;}
._1f{width:37.903680px;}
._1e{width:39.162240px;}
._14{width:199.416000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{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;}
.y32{bottom:2.880000px;}
.y34{bottom:3.420000px;}
.y2{bottom:5.400000px;}
.y35{bottom:7.740000px;}
.y31{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y30{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y2f{bottom:49.500000px;}
.yb{bottom:57.420000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2e{bottom:64.980000px;}
.ya{bottom:75.456000px;}
.y2d{bottom:80.640000px;}
.y2c{bottom:96.120000px;}
.y44{bottom:110.376000px;}
.y2b{bottom:111.600000px;}
.y43{bottom:114.876000px;}
.y7b{bottom:124.236000px;}
.y42{bottom:125.136000px;}
.y2a{bottom:127.080000px;}
.y7a{bottom:128.736000px;}
.y7f{bottom:129.996000px;}
.y79{bottom:137.916000px;}
.y8e{bottom:138.996000px;}
.y29{bottom:142.770000px;}
.y78{bottom:151.770000px;}
.y7e{bottom:151.950000px;}
.y77{bottom:156.270000px;}
.y28{bottom:158.250000px;}
.y76{bottom:165.630000px;}
.y75{bottom:170.130000px;}
.y27{bottom:173.730000px;}
.y74{bottom:179.310000px;}
.y41{bottom:182.010000px;}
.y84{bottom:183.810000px;}
.y26{bottom:189.210000px;}
.y73{bottom:193.170000px;}
.y83{bottom:194.250000px;}
.y7d{bottom:195.510000px;}
.y72{bottom:197.670000px;}
.y40{bottom:203.970000px;}
.y25{bottom:204.870000px;}
.y8c{bottom:207.030000px;}
.y71{bottom:207.930000px;}
.y7c{bottom:217.290000px;}
.y24{bottom:220.350000px;}
.y8b{bottom:220.710000px;}
.y8a{bottom:225.210000px;}
.y3f{bottom:225.750000px;}
.y89{bottom:235.650000px;}
.y23{bottom:235.830000px;}
.y70{bottom:239.250000px;}
.y3e{bottom:247.530000px;}
.y22{bottom:251.310000px;}
.y6f{bottom:261.030000px;}
.y21{bottom:266.970000px;}
.y3d{bottom:269.310000px;}
.y20{bottom:282.450000px;}
.y6e{bottom:282.810000px;}
.y3c{bottom:291.090000px;}
.y1f{bottom:297.930000px;}
.y6d{bottom:304.590000px;}
.y3b{bottom:313.050000px;}
.y1e{bottom:313.410000px;}
.y6c{bottom:326.370000px;}
.y1d{bottom:329.070000px;}
.y39{bottom:334.830000px;}
.y3a{bottom:340.815000px;}
.y1c{bottom:344.550000px;}
.y6a{bottom:348.375000px;}
.y6b{bottom:354.315000px;}
.y38{bottom:356.655000px;}
.y1b{bottom:360.030000px;}
.y69{bottom:370.155000px;}
.y1a{bottom:375.510000px;}
.y8d{bottom:376.095000px;}
.y37{bottom:378.435000px;}
.y19{bottom:391.170000px;}
.y68{bottom:391.935000px;}
.y88{bottom:397.875000px;}
.y36{bottom:400.395000px;}
.y18{bottom:406.650000px;}
.y67{bottom:413.715000px;}
.y17{bottom:422.175000px;}
.y66{bottom:435.495000px;}
.y33{bottom:437.655000px;}
.y65{bottom:457.455000px;}
.y16{bottom:462.675000px;}
.y64{bottom:479.235000px;}
.y63{bottom:501.015000px;}
.y62{bottom:522.795000px;}
.y61{bottom:544.755000px;}
.y87{bottom:550.695000px;}
.y60{bottom:566.535000px;}
.y82{bottom:572.475000px;}
.y5f{bottom:588.315000px;}
.y5d{bottom:610.125000px;}
.y5e{bottom:616.065000px;}
.y5c{bottom:631.905000px;}
.y86{bottom:637.845000px;}
.y5b{bottom:653.865000px;}
.y5a{bottom:675.645000px;}
.y59{bottom:697.425000px;}
.y8f{bottom:703.365000px;}
.y58{bottom:719.205000px;}
.y57{bottom:741.165000px;}
.y56{bottom:762.945000px;}
.y81{bottom:768.885000px;}
.y55{bottom:784.725000px;}
.y54{bottom:806.505000px;}
.y53{bottom:828.285000px;}
.y80{bottom:834.225000px;}
.y52{bottom:850.245000px;}
.y51{bottom:872.070000px;}
.y50{bottom:893.850000px;}
.y15{bottom:903.210000px;}
.y4f{bottom:915.630000px;}
.y14{bottom:923.010000px;}
.y4d{bottom:937.590000px;}
.y13{bottom:942.990000px;}
.y4e{bottom:943.530000px;}
.y4c{bottom:959.370000px;}
.y12{bottom:963.330000px;}
.y4b{bottom:981.150000px;}
.y11{bottom:983.310000px;}
.y10{bottom:1000.950000px;}
.y4a{bottom:1002.930000px;}
.yf{bottom:1022.730000px;}
.y49{bottom:1024.710000px;}
.ye{bottom:1042.890000px;}
.y48{bottom:1046.670000px;}
.y85{bottom:1052.610000px;}
.yd{bottom:1061.790000px;}
.y47{bottom:1068.450000px;}
.yc{bottom:1087.530000px;}
.y45{bottom:1090.230000px;}
.y46{bottom:1096.170000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h15{height:21.114844px;}
.h12{height:25.020000px;}
.h14{height:29.158594px;}
.h16{height:33.683203px;}
.h9{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.hb{height:39.760312px;}
.hd{height:41.726953px;}
.h3{height:42.164648px;}
.h11{height:44.507812px;}
.h13{height:46.251562px;}
.hc{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.he{height:434.775000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x17{left:111.815987px;}
.xa{left:112.895987px;}
.x32{left:115.595987px;}
.x7{left:131.805000px;}
.x21{left:135.035987px;}
.x35{left:140.075987px;}
.x33{left:157.889973px;}
.x1e{left:162.029987px;}
.x1a{left:168.869973px;}
.x1b{left:174.089987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.xb{left:204.869987px;}
.x30{left:227.729973px;}
.x31{left:238.169987px;}
.x10{left:245.549987px;}
.xf{left:258.329987px;}
.x14{left:279.434973px;}
.x15{left:284.654987px;}
.xe{left:321.914987px;}
.x16{left:324.074987px;}
.x2e{left:326.954973px;}
.x2f{left:337.394987px;}
.xd{left:354.854987px;}
.x13{left:391.575000px;}
.x28{left:399.674973px;}
.x34{left:401.294987px;}
.x29{left:404.894987px;}
.x2c{left:414.794973px;}
.x2d{left:425.234987px;}
.xc{left:446.474987px;}
.x1c{left:470.444973px;}
.x1d{left:475.664987px;}
.x1f{left:485.924973px;}
.x20{left:491.144987px;}
.x9{left:496.004987px;}
.x26{left:502.304973px;}
.x27{left:507.524987px;}
.x2a{left:525.884973px;}
.x2b{left:536.324987px;}
.x22{left:539.564973px;}
.x23{left:544.784987px;}
.x5{left:554.685000px;}
.x11{left:567.105000px;}
.x24{left:637.844973px;}
.x25{left:643.064987px;}
.x18{left:652.964973px;}
.x19{left:658.229987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.161067pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.720000pt;}
.ls13{letter-spacing:21.120000pt;}
.lsd{letter-spacing:35.450027pt;}
.ws7{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws8{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-3.944107pt;}
._c{margin-left:-2.584320pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._13{width:2.016000pt;}
._d{width:3.018667pt;}
._18{width:4.242560pt;}
._9{width:5.136000pt;}
._5{width:6.096000pt;}
._2{width:7.104000pt;}
._8{width:8.336640pt;}
._12{width:9.855360pt;}
._11{width:11.072640pt;}
._1b{width:12.070400pt;}
._10{width:13.056000pt;}
._7{width:13.968000pt;}
._6{width:15.120000pt;}
._15{width:16.486400pt;}
._a{width:17.520000pt;}
._e{width:18.432000pt;}
._f{width:19.432107pt;}
._1d{width:20.633387pt;}
._3{width:21.648000pt;}
._4{width:22.698667pt;}
._16{width:23.668907pt;}
._19{width:24.735573pt;}
._b{width:25.632000pt;}
._1a{width:26.577493pt;}
._1c{width:27.524693pt;}
._20{width:32.492587pt;}
._1f{width:33.692160pt;}
._1e{width:34.810880pt;}
._14{width:177.258667pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{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;}
.y32{bottom:2.560000pt;}
.y34{bottom:3.040000pt;}
.y2{bottom:4.800000pt;}
.y35{bottom:6.880000pt;}
.y31{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y30{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y2f{bottom:44.000000pt;}
.yb{bottom:51.040000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2e{bottom:57.760000pt;}
.ya{bottom:67.072000pt;}
.y2d{bottom:71.680000pt;}
.y2c{bottom:85.440000pt;}
.y44{bottom:98.112000pt;}
.y2b{bottom:99.200000pt;}
.y43{bottom:102.112000pt;}
.y7b{bottom:110.432000pt;}
.y42{bottom:111.232000pt;}
.y2a{bottom:112.960000pt;}
.y7a{bottom:114.432000pt;}
.y7f{bottom:115.552000pt;}
.y79{bottom:122.592000pt;}
.y8e{bottom:123.552000pt;}
.y29{bottom:126.906667pt;}
.y78{bottom:134.906667pt;}
.y7e{bottom:135.066667pt;}
.y77{bottom:138.906667pt;}
.y28{bottom:140.666667pt;}
.y76{bottom:147.226667pt;}
.y75{bottom:151.226667pt;}
.y27{bottom:154.426667pt;}
.y74{bottom:159.386667pt;}
.y41{bottom:161.786667pt;}
.y84{bottom:163.386667pt;}
.y26{bottom:168.186667pt;}
.y73{bottom:171.706667pt;}
.y83{bottom:172.666667pt;}
.y7d{bottom:173.786667pt;}
.y72{bottom:175.706667pt;}
.y40{bottom:181.306667pt;}
.y25{bottom:182.106667pt;}
.y8c{bottom:184.026667pt;}
.y71{bottom:184.826667pt;}
.y7c{bottom:193.146667pt;}
.y24{bottom:195.866667pt;}
.y8b{bottom:196.186667pt;}
.y8a{bottom:200.186667pt;}
.y3f{bottom:200.666667pt;}
.y89{bottom:209.466667pt;}
.y23{bottom:209.626667pt;}
.y70{bottom:212.666667pt;}
.y3e{bottom:220.026667pt;}
.y22{bottom:223.386667pt;}
.y6f{bottom:232.026667pt;}
.y21{bottom:237.306667pt;}
.y3d{bottom:239.386667pt;}
.y20{bottom:251.066667pt;}
.y6e{bottom:251.386667pt;}
.y3c{bottom:258.746667pt;}
.y1f{bottom:264.826667pt;}
.y6d{bottom:270.746667pt;}
.y3b{bottom:278.266667pt;}
.y1e{bottom:278.586667pt;}
.y6c{bottom:290.106667pt;}
.y1d{bottom:292.506667pt;}
.y39{bottom:297.626667pt;}
.y3a{bottom:302.946667pt;}
.y1c{bottom:306.266667pt;}
.y6a{bottom:309.666667pt;}
.y6b{bottom:314.946667pt;}
.y38{bottom:317.026667pt;}
.y1b{bottom:320.026667pt;}
.y69{bottom:329.026667pt;}
.y1a{bottom:333.786667pt;}
.y8d{bottom:334.306667pt;}
.y37{bottom:336.386667pt;}
.y19{bottom:347.706667pt;}
.y68{bottom:348.386667pt;}
.y88{bottom:353.666667pt;}
.y36{bottom:355.906667pt;}
.y18{bottom:361.466667pt;}
.y67{bottom:367.746667pt;}
.y17{bottom:375.266667pt;}
.y66{bottom:387.106667pt;}
.y33{bottom:389.026667pt;}
.y65{bottom:406.626667pt;}
.y16{bottom:411.266667pt;}
.y64{bottom:425.986667pt;}
.y63{bottom:445.346667pt;}
.y62{bottom:464.706667pt;}
.y61{bottom:484.226667pt;}
.y87{bottom:489.506667pt;}
.y60{bottom:503.586667pt;}
.y82{bottom:508.866667pt;}
.y5f{bottom:522.946667pt;}
.y5d{bottom:542.333333pt;}
.y5e{bottom:547.613333pt;}
.y5c{bottom:561.693333pt;}
.y86{bottom:566.973333pt;}
.y5b{bottom:581.213333pt;}
.y5a{bottom:600.573333pt;}
.y59{bottom:619.933333pt;}
.y8f{bottom:625.213333pt;}
.y58{bottom:639.293333pt;}
.y57{bottom:658.813333pt;}
.y56{bottom:678.173333pt;}
.y81{bottom:683.453333pt;}
.y55{bottom:697.533333pt;}
.y54{bottom:716.893333pt;}
.y53{bottom:736.253333pt;}
.y80{bottom:741.533333pt;}
.y52{bottom:755.773333pt;}
.y51{bottom:775.173333pt;}
.y50{bottom:794.533333pt;}
.y15{bottom:802.853333pt;}
.y4f{bottom:813.893333pt;}
.y14{bottom:820.453333pt;}
.y4d{bottom:833.413333pt;}
.y13{bottom:838.213333pt;}
.y4e{bottom:838.693333pt;}
.y4c{bottom:852.773333pt;}
.y12{bottom:856.293333pt;}
.y4b{bottom:872.133333pt;}
.y11{bottom:874.053333pt;}
.y10{bottom:889.733333pt;}
.y4a{bottom:891.493333pt;}
.yf{bottom:909.093333pt;}
.y49{bottom:910.853333pt;}
.ye{bottom:927.013333pt;}
.y48{bottom:930.373333pt;}
.y85{bottom:935.653333pt;}
.yd{bottom:943.813333pt;}
.y47{bottom:949.733333pt;}
.yc{bottom:966.693333pt;}
.y45{bottom:969.093333pt;}
.y46{bottom:974.373333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h15{height:18.768750pt;}
.h12{height:22.240000pt;}
.h14{height:25.918750pt;}
.h16{height:29.940625pt;}
.h9{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.hb{height:35.342500pt;}
.hd{height:37.090625pt;}
.h3{height:37.479688pt;}
.h11{height:39.562500pt;}
.h13{height:41.112500pt;}
.hc{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.he{height:386.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x17{left:99.391988pt;}
.xa{left:100.351988pt;}
.x32{left:102.751988pt;}
.x7{left:117.160000pt;}
.x21{left:120.031988pt;}
.x35{left:124.511988pt;}
.x33{left:140.346643pt;}
.x1e{left:144.026655pt;}
.x1a{left:150.106643pt;}
.x1b{left:154.746655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.xb{left:182.106655pt;}
.x30{left:202.426643pt;}
.x31{left:211.706655pt;}
.x10{left:218.266655pt;}
.xf{left:229.626655pt;}
.x14{left:248.386643pt;}
.x15{left:253.026655pt;}
.xe{left:286.146655pt;}
.x16{left:288.066655pt;}
.x2e{left:290.626643pt;}
.x2f{left:299.906655pt;}
.xd{left:315.426655pt;}
.x13{left:348.066667pt;}
.x28{left:355.266643pt;}
.x34{left:356.706655pt;}
.x29{left:359.906655pt;}
.x2c{left:368.706643pt;}
.x2d{left:377.986655pt;}
.xc{left:396.866655pt;}
.x1c{left:418.173310pt;}
.x1d{left:422.813322pt;}
.x1f{left:431.933310pt;}
.x20{left:436.573322pt;}
.x9{left:440.893322pt;}
.x26{left:446.493310pt;}
.x27{left:451.133322pt;}
.x2a{left:467.453310pt;}
.x2b{left:476.733322pt;}
.x22{left:479.613310pt;}
.x23{left:484.253322pt;}
.x5{left:493.053333pt;}
.x11{left:504.093333pt;}
.x24{left:566.973310pt;}
.x25{left:571.613322pt;}
.x18{left:580.413310pt;}
.x19{left:585.093322pt;}
}




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