
    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_620a2ba821bcbdd6713790a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_efdcfb9ede106d29adec279d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_d9aeefa70d72ea6d5b459dd3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_5c0ab5be89980c98904ade39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_03c105c7c150e3c2e9406771.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_33b2770457bfa6e3c03c9d1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704590;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_5e3b940e44473d6f78b7bc7a.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-18.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:25.140000px;}
.ls6{letter-spacing:-1.602000px;}
.ls5{letter-spacing:-0.468000px;}
.lsd{letter-spacing:-0.453600px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.568800px;}
.ls0{letter-spacing:0.912000px;}
.ls7{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.404000px;}
.ls9{letter-spacing:1.584000px;}
.lsb{letter-spacing:1.764000px;}
.ls1{letter-spacing:1.800000px;}
.ls2{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.016000px;}
.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:-72.000000px;}
.ws7{word-spacing:-19.224000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.191200px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.032000px;}
.ws4{word-spacing:-11.898000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-7.344000px;}
._d{margin-left:-6.252000px;}
._7{margin-left:-4.414800px;}
._6{margin-left:-2.520000px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._4{width:2.676000px;}
._2{width:3.810000px;}
._8{width:5.379600px;}
._3{width:7.056000px;}
._5{width:8.064000px;}
._e{width:10.428000px;}
._10{width:11.712000px;}
._f{width:13.908000px;}
._12{width:15.198000px;}
._11{width:21.132000px;}
._9{width:22.392000px;}
._15{width:24.336000px;}
._b{width:25.488000px;}
._a{width:29.088000px;}
._18{width:31.680000px;}
._14{width:32.688000px;}
._13{width:35.784000px;}
._19{width:39.600000px;}
._17{width:42.408000px;}
._16{width:43.488000px;}
.fc1{color:rgb(32,33,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:25.200000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:46.800000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:6.345000px;}
.y62{bottom:13.500000px;}
.y79{bottom:13.530000px;}
.y6d{bottom:14.400000px;}
.y57{bottom:27.045000px;}
.y6c{bottom:45.030000px;}
.y61{bottom:45.045000px;}
.y35{bottom:56.737500px;}
.y60{bottom:75.645000px;}
.y78{bottom:75.675000px;}
.y7c{bottom:76.530000px;}
.y6b{bottom:76.545000px;}
.y72{bottom:76.560000px;}
.y34{bottom:77.437500px;}
.y5d{bottom:89.175000px;}
.y30{bottom:101.775000px;}
.y71{bottom:107.160000px;}
.y5f{bottom:107.175000px;}
.y99{bottom:109.875000px;}
.y5c{bottom:119.790000px;}
.y55{bottom:123.375000px;}
.y2f{bottom:131.475000px;}
.y77{bottom:137.805000px;}
.y5e{bottom:137.820000px;}
.y7b{bottom:138.675000px;}
.y6a{bottom:138.705000px;}
.y98{bottom:139.575000px;}
.y90{bottom:145.875000px;}
.y89{bottom:149.512500px;}
.y2e{bottom:152.220000px;}
.y54{bottom:154.905000px;}
.y97{bottom:160.305000px;}
.y69{bottom:169.305000px;}
.y5b{bottom:169.320000px;}
.y76{bottom:169.335000px;}
.y2d{bottom:172.920000px;}
.y8f{bottom:176.505000px;}
.y88{bottom:181.005000px;}
.y53{bottom:185.505000px;}
.y96{bottom:190.005000px;}
.y2c{bottom:193.620000px;}
.y7d{bottom:194.505000px;}
.y75{bottom:199.935000px;}
.y5a{bottom:199.950000px;}
.y70{bottom:200.835000px;}
.y68{bottom:200.850000px;}
.y8e{bottom:208.050000px;}
.y7a{bottom:209.850000px;}
.y95{bottom:210.750000px;}
.y87{bottom:211.650000px;}
.y2b{bottom:214.350000px;}
.y52{bottom:217.050000px;}
.y63{bottom:225.150000px;}
.y67{bottom:231.450000px;}
.y6f{bottom:231.480000px;}
.y2a{bottom:235.050000px;}
.y8d{bottom:238.650000px;}
.y94{bottom:240.450000px;}
.y86{bottom:243.150000px;}
.y51{bottom:247.650000px;}
.y29{bottom:255.780000px;}
.y93{bottom:261.195000px;}
.y74{bottom:262.080000px;}
.y66{bottom:262.980000px;}
.y8c{bottom:270.180000px;}
.y85{bottom:273.780000px;}
.y28{bottom:276.480000px;}
.y50{bottom:279.195000px;}
.y92{bottom:290.880000px;}
.y65{bottom:293.625000px;}
.y27{bottom:297.180000px;}
.y8b{bottom:300.780000px;}
.y84{bottom:305.325000px;}
.y4f{bottom:309.825000px;}
.y91{bottom:311.625000px;}
.y26{bottom:317.925000px;}
.y64{bottom:325.125000px;}
.y8a{bottom:332.325000px;}
.y83{bottom:335.925000px;}
.y4e{bottom:341.325000px;}
.y25{bottom:347.625000px;}
.y82{bottom:367.455000px;}
.y24{bottom:368.370000px;}
.y4d{bottom:371.970000px;}
.y23{bottom:398.055000px;}
.y4c{bottom:403.455000px;}
.y81{bottom:410.700000px;}
.yb4{bottom:417.900000px;}
.y22{bottom:427.800000px;}
.y4b{bottom:434.100000px;}
.y80{bottom:438.600000px;}
.yb3{bottom:447.600000px;}
.y21{bottom:448.500000px;}
.y4a{bottom:465.630000px;}
.y7f{bottom:467.445000px;}
.yb2{bottom:468.330000px;}
.y20{bottom:469.230000px;}
.yb1{bottom:489.030000px;}
.y1f{bottom:489.945000px;}
.y7e{bottom:494.445000px;}
.y49{bottom:496.230000px;}
.y73{bottom:507.945000px;}
.y1e{bottom:510.630000px;}
.yb0{bottom:518.775000px;}
.y48{bottom:527.775000px;}
.y1d{bottom:531.375000px;}
.yaf{bottom:539.475000px;}
.y1c{bottom:552.075000px;}
.y47{bottom:558.375000px;}
.yae{bottom:560.175000px;}
.y1b{bottom:572.805000px;}
.y59{bottom:585.405000px;}
.y46{bottom:589.905000px;}
.y1a{bottom:593.505000px;}
.yad{bottom:610.620000px;}
.y19{bottom:614.220000px;}
.y45{bottom:620.550000px;}
.yac{bottom:631.350000px;}
.y18{bottom:634.950000px;}
.y44{bottom:652.050000px;}
.y17{bottom:655.650000px;}
.yab{bottom:661.050000px;}
.yaa{bottom:681.780000px;}
.y43{bottom:682.680000px;}
.y16{bottom:685.380000px;}
.ya9{bottom:702.480000px;}
.y42{bottom:714.195000px;}
.y15{bottom:715.980000px;}
.ya8{bottom:732.225000px;}
.y14{bottom:744.825000px;}
.ya7{bottom:752.925000px;}
.y13{bottom:775.455000px;}
.y41{bottom:776.355000px;}
.ya6{bottom:782.655000px;}
.y12{bottom:797.070000px;}
.ya5{bottom:803.355000px;}
.y6e{bottom:805.170000px;}
.y40{bottom:806.955000px;}
.y56{bottom:820.455000px;}
.ya4{bottom:824.100000px;}
.y11{bottom:826.800000px;}
.y3f{bottom:838.500000px;}
.y10{bottom:848.400000px;}
.ya3{bottom:853.800000px;}
.y3e{bottom:869.100000px;}
.ya2{bottom:874.500000px;}
.yf{bottom:879.030000px;}
.y3d{bottom:900.630000px;}
.ye{bottom:902.445000px;}
.ya1{bottom:904.230000px;}
.ya0{bottom:924.945000px;}
.y3c{bottom:931.275000px;}
.yd{bottom:933.975000px;}
.y9f{bottom:945.675000px;}
.y3b{bottom:962.775000px;}
.yc{bottom:964.575000px;}
.y9e{bottom:975.375000px;}
.y3a{bottom:993.420000px;}
.yb{bottom:996.105000px;}
.y9d{bottom:1016.820000px;}
.y39{bottom:1024.905000px;}
.ya{bottom:1026.705000px;}
.y9c{bottom:1046.550000px;}
.y38{bottom:1055.550000px;}
.y9{bottom:1058.250000px;}
.y9b{bottom:1067.250000px;}
.y37{bottom:1087.080000px;}
.y9a{bottom:1087.995000px;}
.y8{bottom:1088.880000px;}
.y7{bottom:1109.580000px;}
.y36{bottom:1117.695000px;}
.y6{bottom:1127.580000px;}
.y5{bottom:1135.725000px;}
.y4{bottom:1150.125000px;}
.y3{bottom:1165.425000px;}
.y33{bottom:1169.925000px;}
.y2{bottom:1183.425000px;}
.y32{bottom:1187.955000px;}
.y31{bottom:1196.070000px;}
.y1{bottom:1202.370000px;}
.h2{height:22.000781px;}
.hd{height:36.684844px;}
.hb{height:36.744844px;}
.h5{height:40.858594px;}
.h4{height:47.144531px;}
.h9{height:52.171875px;}
.h6{height:53.430469px;}
.hc{height:54.864844px;}
.hf{height:56.573438px;}
.h11{height:59.343750px;}
.he{height:60.871289px;}
.h3{height:62.859375px;}
.h12{height:63.075000px;}
.h7{height:63.949219px;}
.h10{height:64.451953px;}
.h8{height:64.546875px;}
.ha{height:67.095469px;}
.h13{height:235.050000px;}
.h16{height:297.210000px;}
.h17{height:298.095000px;}
.h15{height:328.710000px;}
.h14{height:360.270000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:204.495000px;}
.w4{width:217.125000px;}
.w5{width:252.255000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x23{left:7.200000px;}
.x34{left:9.030000px;}
.x31{left:10.830000px;}
.x2c{left:12.630000px;}
.x22{left:15.330000px;}
.x33{left:17.130000px;}
.x32{left:18.930000px;}
.x2b{left:20.730000px;}
.x3a{left:22.530000px;}
.x24{left:24.330000px;}
.x37{left:27.930000px;}
.x25{left:32.430000px;}
.x1f{left:34.230000px;}
.x3b{left:36.030000px;}
.x17{left:38.745000px;}
.x28{left:42.330000px;}
.x21{left:45.975000px;}
.x2d{left:48.660000px;}
.x36{left:51.375000px;}
.x2a{left:53.175000px;}
.x1d{left:57.675000px;}
.x30{left:60.360000px;}
.x27{left:63.975000px;}
.x3c{left:70.275000px;}
.x29{left:73.860000px;}
.x35{left:76.575000px;}
.x16{left:78.375000px;}
.x20{left:81.105000px;}
.x1e{left:83.805000px;}
.x2f{left:87.375000px;}
.x19{left:91.905000px;}
.x1c{left:93.675000px;}
.x2e{left:95.505000px;}
.x26{left:98.175000px;}
.x39{left:101.805000px;}
.x38{left:104.475000px;}
.x1b{left:118.950000px;}
.xb{left:127.949987px;}
.x15{left:130.650000px;}
.x8{left:135.149987px;}
.x13{left:170.279987px;}
.x7{left:183.779987px;}
.xe{left:199.124987px;}
.x6{left:210.824987px;}
.xa{left:220.724987px;}
.x3f{left:236.069987px;}
.x14{left:301.799987px;}
.x2{left:324.329987px;}
.x18{left:336.045000px;}
.x5{left:340.544987px;}
.xc{left:350.474987px;}
.x9{left:391.004987px;}
.xd{left:404.504987px;}
.x4{left:412.619987px;}
.x3{left:418.949987px;}
.x3d{left:422.549987px;}
.x11{left:434.249987px;}
.x10{left:436.949987px;}
.x1{left:468.494987px;}
.x1a{left:554.070000px;}
.x40{left:792.824987px;}
.x12{left:800.924987px;}
.xf{left:809.024987px;}
.x3e{left:850.454987px;}
@media print{
.v3{vertical-align:-16.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:22.346667pt;}
.ls6{letter-spacing:-1.424000pt;}
.ls5{letter-spacing:-0.416000pt;}
.lsd{letter-spacing:-0.403200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.505600pt;}
.ls0{letter-spacing:0.810667pt;}
.ls7{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.248000pt;}
.ls9{letter-spacing:1.408000pt;}
.lsb{letter-spacing:1.568000pt;}
.ls1{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.760000pt;}
.lsa{letter-spacing:1.792000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws7{word-spacing:-17.088000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-12.614400pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.584000pt;}
.ws4{word-spacing:-10.576000pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-6.528000pt;}
._d{margin-left:-5.557333pt;}
._7{margin-left:-3.924267pt;}
._6{margin-left:-2.240000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._4{width:2.378667pt;}
._2{width:3.386667pt;}
._8{width:4.781867pt;}
._3{width:6.272000pt;}
._5{width:7.168000pt;}
._e{width:9.269333pt;}
._10{width:10.410667pt;}
._f{width:12.362667pt;}
._12{width:13.509333pt;}
._11{width:18.784000pt;}
._9{width:19.904000pt;}
._15{width:21.632000pt;}
._b{width:22.656000pt;}
._a{width:25.856000pt;}
._18{width:28.160000pt;}
._14{width:29.056000pt;}
._13{width:31.808000pt;}
._19{width:35.200000pt;}
._17{width:37.696000pt;}
._16{width:38.656000pt;}
.fs0{font-size:22.400000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:41.600000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:5.640000pt;}
.y62{bottom:12.000000pt;}
.y79{bottom:12.026667pt;}
.y6d{bottom:12.800000pt;}
.y57{bottom:24.040000pt;}
.y6c{bottom:40.026667pt;}
.y61{bottom:40.040000pt;}
.y35{bottom:50.433333pt;}
.y60{bottom:67.240000pt;}
.y78{bottom:67.266667pt;}
.y7c{bottom:68.026667pt;}
.y6b{bottom:68.040000pt;}
.y72{bottom:68.053333pt;}
.y34{bottom:68.833333pt;}
.y5d{bottom:79.266667pt;}
.y30{bottom:90.466667pt;}
.y71{bottom:95.253333pt;}
.y5f{bottom:95.266667pt;}
.y99{bottom:97.666667pt;}
.y5c{bottom:106.480000pt;}
.y55{bottom:109.666667pt;}
.y2f{bottom:116.866667pt;}
.y77{bottom:122.493333pt;}
.y5e{bottom:122.506667pt;}
.y7b{bottom:123.266667pt;}
.y6a{bottom:123.293333pt;}
.y98{bottom:124.066667pt;}
.y90{bottom:129.666667pt;}
.y89{bottom:132.900000pt;}
.y2e{bottom:135.306667pt;}
.y54{bottom:137.693333pt;}
.y97{bottom:142.493333pt;}
.y69{bottom:150.493333pt;}
.y5b{bottom:150.506667pt;}
.y76{bottom:150.520000pt;}
.y2d{bottom:153.706667pt;}
.y8f{bottom:156.893333pt;}
.y88{bottom:160.893333pt;}
.y53{bottom:164.893333pt;}
.y96{bottom:168.893333pt;}
.y2c{bottom:172.106667pt;}
.y7d{bottom:172.893333pt;}
.y75{bottom:177.720000pt;}
.y5a{bottom:177.733333pt;}
.y70{bottom:178.520000pt;}
.y68{bottom:178.533333pt;}
.y8e{bottom:184.933333pt;}
.y7a{bottom:186.533333pt;}
.y95{bottom:187.333333pt;}
.y87{bottom:188.133333pt;}
.y2b{bottom:190.533333pt;}
.y52{bottom:192.933333pt;}
.y63{bottom:200.133333pt;}
.y67{bottom:205.733333pt;}
.y6f{bottom:205.760000pt;}
.y2a{bottom:208.933333pt;}
.y8d{bottom:212.133333pt;}
.y94{bottom:213.733333pt;}
.y86{bottom:216.133333pt;}
.y51{bottom:220.133333pt;}
.y29{bottom:227.360000pt;}
.y93{bottom:232.173333pt;}
.y74{bottom:232.960000pt;}
.y66{bottom:233.760000pt;}
.y8c{bottom:240.160000pt;}
.y85{bottom:243.360000pt;}
.y28{bottom:245.760000pt;}
.y50{bottom:248.173333pt;}
.y92{bottom:258.560000pt;}
.y65{bottom:261.000000pt;}
.y27{bottom:264.160000pt;}
.y8b{bottom:267.360000pt;}
.y84{bottom:271.400000pt;}
.y4f{bottom:275.400000pt;}
.y91{bottom:277.000000pt;}
.y26{bottom:282.600000pt;}
.y64{bottom:289.000000pt;}
.y8a{bottom:295.400000pt;}
.y83{bottom:298.600000pt;}
.y4e{bottom:303.400000pt;}
.y25{bottom:309.000000pt;}
.y82{bottom:326.626667pt;}
.y24{bottom:327.440000pt;}
.y4d{bottom:330.640000pt;}
.y23{bottom:353.826667pt;}
.y4c{bottom:358.626667pt;}
.y81{bottom:365.066667pt;}
.yb4{bottom:371.466667pt;}
.y22{bottom:380.266667pt;}
.y4b{bottom:385.866667pt;}
.y80{bottom:389.866667pt;}
.yb3{bottom:397.866667pt;}
.y21{bottom:398.666667pt;}
.y4a{bottom:413.893333pt;}
.y7f{bottom:415.506667pt;}
.yb2{bottom:416.293333pt;}
.y20{bottom:417.093333pt;}
.yb1{bottom:434.693333pt;}
.y1f{bottom:435.506667pt;}
.y7e{bottom:439.506667pt;}
.y49{bottom:441.093333pt;}
.y73{bottom:451.506667pt;}
.y1e{bottom:453.893333pt;}
.yb0{bottom:461.133333pt;}
.y48{bottom:469.133333pt;}
.y1d{bottom:472.333333pt;}
.yaf{bottom:479.533333pt;}
.y1c{bottom:490.733333pt;}
.y47{bottom:496.333333pt;}
.yae{bottom:497.933333pt;}
.y1b{bottom:509.160000pt;}
.y59{bottom:520.360000pt;}
.y46{bottom:524.360000pt;}
.y1a{bottom:527.560000pt;}
.yad{bottom:542.773333pt;}
.y19{bottom:545.973333pt;}
.y45{bottom:551.600000pt;}
.yac{bottom:561.200000pt;}
.y18{bottom:564.400000pt;}
.y44{bottom:579.600000pt;}
.y17{bottom:582.800000pt;}
.yab{bottom:587.600000pt;}
.yaa{bottom:606.026667pt;}
.y43{bottom:606.826667pt;}
.y16{bottom:609.226667pt;}
.ya9{bottom:624.426667pt;}
.y42{bottom:634.840000pt;}
.y15{bottom:636.426667pt;}
.ya8{bottom:650.866667pt;}
.y14{bottom:662.066667pt;}
.ya7{bottom:669.266667pt;}
.y13{bottom:689.293333pt;}
.y41{bottom:690.093333pt;}
.ya6{bottom:695.693333pt;}
.y12{bottom:708.506667pt;}
.ya5{bottom:714.093333pt;}
.y6e{bottom:715.706667pt;}
.y40{bottom:717.293333pt;}
.y56{bottom:729.293333pt;}
.ya4{bottom:732.533333pt;}
.y11{bottom:734.933333pt;}
.y3f{bottom:745.333333pt;}
.y10{bottom:754.133333pt;}
.ya3{bottom:758.933333pt;}
.y3e{bottom:772.533333pt;}
.ya2{bottom:777.333333pt;}
.yf{bottom:781.360000pt;}
.y3d{bottom:800.560000pt;}
.ye{bottom:802.173333pt;}
.ya1{bottom:803.760000pt;}
.ya0{bottom:822.173333pt;}
.y3c{bottom:827.800000pt;}
.yd{bottom:830.200000pt;}
.y9f{bottom:840.600000pt;}
.y3b{bottom:855.800000pt;}
.yc{bottom:857.400000pt;}
.y9e{bottom:867.000000pt;}
.y3a{bottom:883.040000pt;}
.yb{bottom:885.426667pt;}
.y9d{bottom:903.840000pt;}
.y39{bottom:911.026667pt;}
.ya{bottom:912.626667pt;}
.y9c{bottom:930.266667pt;}
.y38{bottom:938.266667pt;}
.y9{bottom:940.666667pt;}
.y9b{bottom:948.666667pt;}
.y37{bottom:966.293333pt;}
.y9a{bottom:967.106667pt;}
.y8{bottom:967.893333pt;}
.y7{bottom:986.293333pt;}
.y36{bottom:993.506667pt;}
.y6{bottom:1002.293333pt;}
.y5{bottom:1009.533333pt;}
.y4{bottom:1022.333333pt;}
.y3{bottom:1035.933333pt;}
.y33{bottom:1039.933333pt;}
.y2{bottom:1051.933333pt;}
.y32{bottom:1055.960000pt;}
.y31{bottom:1063.173333pt;}
.y1{bottom:1068.773333pt;}
.h2{height:19.556250pt;}
.hd{height:32.608750pt;}
.hb{height:32.662083pt;}
.h5{height:36.318750pt;}
.h4{height:41.906250pt;}
.h9{height:46.375000pt;}
.h6{height:47.493750pt;}
.hc{height:48.768750pt;}
.hf{height:50.287500pt;}
.h11{height:52.750000pt;}
.he{height:54.107812pt;}
.h3{height:55.875000pt;}
.h12{height:56.066667pt;}
.h7{height:56.843750pt;}
.h10{height:57.290625pt;}
.h8{height:57.375000pt;}
.ha{height:59.640417pt;}
.h13{height:208.933333pt;}
.h16{height:264.186667pt;}
.h17{height:264.973333pt;}
.h15{height:292.186667pt;}
.h14{height:320.240000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:181.773333pt;}
.w4{width:193.000000pt;}
.w5{width:224.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x23{left:6.400000pt;}
.x34{left:8.026667pt;}
.x31{left:9.626667pt;}
.x2c{left:11.226667pt;}
.x22{left:13.626667pt;}
.x33{left:15.226667pt;}
.x32{left:16.826667pt;}
.x2b{left:18.426667pt;}
.x3a{left:20.026667pt;}
.x24{left:21.626667pt;}
.x37{left:24.826667pt;}
.x25{left:28.826667pt;}
.x1f{left:30.426667pt;}
.x3b{left:32.026667pt;}
.x17{left:34.440000pt;}
.x28{left:37.626667pt;}
.x21{left:40.866667pt;}
.x2d{left:43.253333pt;}
.x36{left:45.666667pt;}
.x2a{left:47.266667pt;}
.x1d{left:51.266667pt;}
.x30{left:53.653333pt;}
.x27{left:56.866667pt;}
.x3c{left:62.466667pt;}
.x29{left:65.653333pt;}
.x35{left:68.066667pt;}
.x16{left:69.666667pt;}
.x20{left:72.093333pt;}
.x1e{left:74.493333pt;}
.x2f{left:77.666667pt;}
.x19{left:81.693333pt;}
.x1c{left:83.266667pt;}
.x2e{left:84.893333pt;}
.x26{left:87.266667pt;}
.x39{left:90.493333pt;}
.x38{left:92.866667pt;}
.x1b{left:105.733333pt;}
.xb{left:113.733322pt;}
.x15{left:116.133333pt;}
.x8{left:120.133322pt;}
.x13{left:151.359988pt;}
.x7{left:163.359988pt;}
.xe{left:176.999988pt;}
.x6{left:187.399988pt;}
.xa{left:196.199988pt;}
.x3f{left:209.839988pt;}
.x14{left:268.266655pt;}
.x2{left:288.293322pt;}
.x18{left:298.706667pt;}
.x5{left:302.706655pt;}
.xc{left:311.533322pt;}
.x9{left:347.559988pt;}
.xd{left:359.559988pt;}
.x4{left:366.773322pt;}
.x3{left:372.399988pt;}
.x3d{left:375.599988pt;}
.x11{left:385.999988pt;}
.x10{left:388.399988pt;}
.x1{left:416.439988pt;}
.x1a{left:492.506667pt;}
.x40{left:704.733322pt;}
.x12{left:711.933322pt;}
.xf{left:719.133322pt;}
.x3e{left:755.959988pt;}
}




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