
    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_994753965f80acf540e2ff83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_77cace12c6cc18f3dac3ed80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c26d862db77ef9a8d7a72570.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_55049da3dc4800f012b881f4.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_0e791855dacbc2d376286f65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128418;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_16095d0d0c97a3e0498e4d1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128418;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a70c6ccd888f7c3a96c63b5c.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls9{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:15.720000px;}
.lsc{letter-spacing:45.720000px;}
.ls1{letter-spacing:91.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.000000px;}
.ws6{word-spacing:-12.900000px;}
.ws2{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-2.292000px;}
._1{margin-left:-1.008000px;}
._0{width:1.122000px;}
._9{width:2.580000px;}
._a{width:3.600000px;}
._b{width:4.800000px;}
._8{width:6.498000px;}
._7{width:7.620000px;}
._c{width:8.622000px;}
._d{width:10.578000px;}
._e{width:12.102000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1178.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y42{bottom:-15.900000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y6c{bottom:5.685000px;}
.y77{bottom:5.700000px;}
.y72{bottom:6.600000px;}
.y41{bottom:8.100000px;}
.y75{bottom:9.285000px;}
.y5{bottom:12.337500px;}
.y6e{bottom:20.715000px;}
.y71{bottom:24.000000px;}
.y78{bottom:25.500000px;}
.y74{bottom:26.400000px;}
.y40{bottom:27.600000px;}
.y3f{bottom:42.000000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3e{bottom:59.400000px;}
.y44{bottom:74.137500px;}
.y3d{bottom:76.545000px;}
.y3{bottom:81.337500px;}
.y3c{bottom:93.945000px;}
.y3b{bottom:111.045000px;}
.y33{bottom:117.937500px;}
.y6a{bottom:127.537500px;}
.y3a{bottom:128.445000px;}
.y32{bottom:135.037500px;}
.y69{bottom:144.637500px;}
.y39{bottom:145.545000px;}
.y31{bottom:151.530000px;}
.y68{bottom:162.030000px;}
.y38{bottom:162.930000px;}
.y30{bottom:166.230000px;}
.y67{bottom:179.175000px;}
.y37{bottom:180.030000px;}
.y2f{bottom:183.375000px;}
.y66{bottom:196.575000px;}
.y36{bottom:197.445000px;}
.y2e{bottom:200.775000px;}
.y65{bottom:213.675000px;}
.y35{bottom:215.145000px;}
.y2d{bottom:217.875000px;}
.y64{bottom:231.075000px;}
.y2c{bottom:235.275000px;}
.y63{bottom:248.175000px;}
.y2b{bottom:251.775000px;}
.y62{bottom:265.575000px;}
.y2a{bottom:266.175000px;}
.y61{bottom:279.375000px;}
.y29{bottom:283.575000px;}
.y28{bottom:300.675000px;}
.y9a{bottom:307.275000px;}
.y27{bottom:318.075000px;}
.y99{bottom:327.975000px;}
.y26{bottom:335.175000px;}
.y98{bottom:348.420000px;}
.y25{bottom:352.620000px;}
.y97{bottom:365.520000px;}
.y24{bottom:370.320000px;}
.y96{bottom:382.920000px;}
.y23{bottom:389.820000px;}
.y95{bottom:400.005000px;}
.y22{bottom:404.220000px;}
.y94{bottom:417.405000px;}
.y21{bottom:421.620000px;}
.y93{bottom:434.505000px;}
.y20{bottom:438.705000px;}
.y92{bottom:451.920000px;}
.y1f{bottom:456.120000px;}
.y91{bottom:469.005000px;}
.y1e{bottom:473.205000px;}
.y90{bottom:486.405000px;}
.y1d{bottom:490.620000px;}
.y8f{bottom:503.505000px;}
.y1c{bottom:507.705000px;}
.y8e{bottom:520.950000px;}
.y1b{bottom:525.450000px;}
.y8d{bottom:538.050000px;}
.y1a{bottom:545.850000px;}
.y8c{bottom:555.450000px;}
.y8b{bottom:572.550000px;}
.y8a{bottom:589.950000px;}
.y89{bottom:607.050000px;}
.y34{bottom:613.050000px;}
.y88{bottom:624.450000px;}
.y87{bottom:641.550000px;}
.y86{bottom:658.950000px;}
.y60{bottom:668.850000px;}
.y85{bottom:676.050000px;}
.y5f{bottom:688.380000px;}
.y84{bottom:693.495000px;}
.y5e{bottom:703.095000px;}
.y83{bottom:710.595000px;}
.y5d{bottom:720.195000px;}
.y82{bottom:727.995000px;}
.y5c{bottom:737.595000px;}
.y81{bottom:745.695000px;}
.y5b{bottom:754.695000px;}
.y5a{bottom:772.080000px;}
.y80{bottom:777.480000px;}
.y59{bottom:789.195000px;}
.y7f{bottom:795.195000px;}
.y58{bottom:806.580000px;}
.y57{bottom:823.695000px;}
.y7e{bottom:823.995000px;}
.y56{bottom:841.080000px;}
.y7d{bottom:841.695000px;}
.y55{bottom:858.825000px;}
.y7c{bottom:876.225000px;}
.y54{bottom:879.525000px;}
.y19{bottom:880.125000px;}
.y7b{bottom:893.325000px;}
.y18{bottom:897.225000px;}
.y53{bottom:899.025000px;}
.y7a{bottom:910.725000px;}
.y52{bottom:913.425000px;}
.y17{bottom:917.025000px;}
.y79{bottom:928.425000px;}
.y51{bottom:930.825000px;}
.y16{bottom:935.625000px;}
.y50{bottom:947.925000px;}
.y15{bottom:959.625000px;}
.y4f{bottom:965.325000px;}
.y14{bottom:977.325000px;}
.y4e{bottom:982.425000px;}
.y13{bottom:988.425000px;}
.y76{bottom:999.525000px;}
.y4d{bottom:999.825000px;}
.y12{bottom:1002.825000px;}
.y4c{bottom:1016.955000px;}
.y73{bottom:1019.970000px;}
.y11{bottom:1020.570000px;}
.y4b{bottom:1034.370000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y4a{bottom:1051.455000px;}
.y70{bottom:1061.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y49{bottom:1068.870000px;}
.ya{bottom:1083.570000px;}
.y48{bottom:1085.955000px;}
.y9{bottom:1097.955000px;}
.y6d{bottom:1099.455000px;}
.y47{bottom:1103.370000px;}
.y8{bottom:1115.670000px;}
.y46{bottom:1120.455000px;}
.y7{bottom:1133.670000px;}
.y6b{bottom:1134.570000px;}
.y45{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y43{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h16{height:19.500000px;}
.h1a{height:19.537500px;}
.ha{height:21.000000px;}
.hd{height:27.650391px;}
.hc{height:33.515625px;}
.h7{height:33.867188px;}
.h17{height:34.500000px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.h18{height:37.800000px;}
.he{height:38.100586px;}
.h14{height:38.953125px;}
.h1b{height:39.300000px;}
.h19{height:40.185000px;}
.h11{height:41.894531px;}
.h4{height:42.333984px;}
.h12{height:43.681641px;}
.hb{height:49.250391px;}
.h15{height:49.280273px;}
.h6{height:50.800781px;}
.h10{height:54.755859px;}
.hf{height:58.429688px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h13{height:231.945000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.wb{width:120.937500px;}
.wa{width:134.137500px;}
.w9{width:141.037500px;}
.w8{width:154.530000px;}
.w6{width:253.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.800000px;}
.x2{left:10.799998px;}
.x13{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1c{left:32.685000px;}
.x18{left:58.200000px;}
.x1e{left:60.330000px;}
.x1a{left:70.245000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.x12{left:84.037500px;}
.x11{left:90.637487px;}
.x10{left:94.837487px;}
.xf{left:98.737487px;}
.x20{left:108.037487px;}
.xe{left:117.330000px;}
.x9{left:153.629987px;}
.x19{left:236.775000px;}
.xc{left:241.582500px;}
.x17{left:308.819987px;}
.x6{left:311.219987px;}
.x1b{left:378.720000px;}
.x16{left:446.549987px;}
.x1d{left:513.450000px;}
.x14{left:549.194987px;}
.xd{left:561.495000px;}
.x8{left:619.379987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.x15{left:776.069987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls9{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:13.973333pt;}
.lsc{letter-spacing:40.640000pt;}
.ls1{letter-spacing:81.173333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws6{word-spacing:-11.466667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-2.037333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.997333pt;}
._9{width:2.293333pt;}
._a{width:3.200000pt;}
._b{width:4.266667pt;}
._8{width:5.776000pt;}
._7{width:6.773333pt;}
._c{width:7.664000pt;}
._d{width:9.402667pt;}
._e{width:10.757333pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1047.840000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y42{bottom:-14.133333pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y6c{bottom:5.053333pt;}
.y77{bottom:5.066667pt;}
.y72{bottom:5.866667pt;}
.y41{bottom:7.200000pt;}
.y75{bottom:8.253333pt;}
.y5{bottom:10.966667pt;}
.y6e{bottom:18.413333pt;}
.y71{bottom:21.333333pt;}
.y78{bottom:22.666667pt;}
.y74{bottom:23.466667pt;}
.y40{bottom:24.533333pt;}
.y3f{bottom:37.333333pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3e{bottom:52.800000pt;}
.y44{bottom:65.900000pt;}
.y3d{bottom:68.040000pt;}
.y3{bottom:72.300000pt;}
.y3c{bottom:83.506667pt;}
.y3b{bottom:98.706667pt;}
.y33{bottom:104.833333pt;}
.y6a{bottom:113.366667pt;}
.y3a{bottom:114.173333pt;}
.y32{bottom:120.033333pt;}
.y69{bottom:128.566667pt;}
.y39{bottom:129.373333pt;}
.y31{bottom:134.693333pt;}
.y68{bottom:144.026667pt;}
.y38{bottom:144.826667pt;}
.y30{bottom:147.760000pt;}
.y67{bottom:159.266667pt;}
.y37{bottom:160.026667pt;}
.y2f{bottom:163.000000pt;}
.y66{bottom:174.733333pt;}
.y36{bottom:175.506667pt;}
.y2e{bottom:178.466667pt;}
.y65{bottom:189.933333pt;}
.y35{bottom:191.240000pt;}
.y2d{bottom:193.666667pt;}
.y64{bottom:205.400000pt;}
.y2c{bottom:209.133333pt;}
.y63{bottom:220.600000pt;}
.y2b{bottom:223.800000pt;}
.y62{bottom:236.066667pt;}
.y2a{bottom:236.600000pt;}
.y61{bottom:248.333333pt;}
.y29{bottom:252.066667pt;}
.y28{bottom:267.266667pt;}
.y9a{bottom:273.133333pt;}
.y27{bottom:282.733333pt;}
.y99{bottom:291.533333pt;}
.y26{bottom:297.933333pt;}
.y98{bottom:309.706667pt;}
.y25{bottom:313.440000pt;}
.y97{bottom:324.906667pt;}
.y24{bottom:329.173333pt;}
.y96{bottom:340.373333pt;}
.y23{bottom:346.506667pt;}
.y95{bottom:355.560000pt;}
.y22{bottom:359.306667pt;}
.y94{bottom:371.026667pt;}
.y21{bottom:374.773333pt;}
.y93{bottom:386.226667pt;}
.y20{bottom:389.960000pt;}
.y92{bottom:401.706667pt;}
.y1f{bottom:405.440000pt;}
.y91{bottom:416.893333pt;}
.y1e{bottom:420.626667pt;}
.y90{bottom:432.360000pt;}
.y1d{bottom:436.106667pt;}
.y8f{bottom:447.560000pt;}
.y1c{bottom:451.293333pt;}
.y8e{bottom:463.066667pt;}
.y1b{bottom:467.066667pt;}
.y8d{bottom:478.266667pt;}
.y1a{bottom:485.200000pt;}
.y8c{bottom:493.733333pt;}
.y8b{bottom:508.933333pt;}
.y8a{bottom:524.400000pt;}
.y89{bottom:539.600000pt;}
.y34{bottom:544.933333pt;}
.y88{bottom:555.066667pt;}
.y87{bottom:570.266667pt;}
.y86{bottom:585.733333pt;}
.y60{bottom:594.533333pt;}
.y85{bottom:600.933333pt;}
.y5f{bottom:611.893333pt;}
.y84{bottom:616.440000pt;}
.y5e{bottom:624.973333pt;}
.y83{bottom:631.640000pt;}
.y5d{bottom:640.173333pt;}
.y82{bottom:647.106667pt;}
.y5c{bottom:655.640000pt;}
.y81{bottom:662.840000pt;}
.y5b{bottom:670.840000pt;}
.y5a{bottom:686.293333pt;}
.y80{bottom:691.093333pt;}
.y59{bottom:701.506667pt;}
.y7f{bottom:706.840000pt;}
.y58{bottom:716.960000pt;}
.y57{bottom:732.173333pt;}
.y7e{bottom:732.440000pt;}
.y56{bottom:747.626667pt;}
.y7d{bottom:748.173333pt;}
.y55{bottom:763.400000pt;}
.y7c{bottom:778.866667pt;}
.y54{bottom:781.800000pt;}
.y19{bottom:782.333333pt;}
.y7b{bottom:794.066667pt;}
.y18{bottom:797.533333pt;}
.y53{bottom:799.133333pt;}
.y7a{bottom:809.533333pt;}
.y52{bottom:811.933333pt;}
.y17{bottom:815.133333pt;}
.y79{bottom:825.266667pt;}
.y51{bottom:827.400000pt;}
.y16{bottom:831.666667pt;}
.y50{bottom:842.600000pt;}
.y15{bottom:853.000000pt;}
.y4f{bottom:858.066667pt;}
.y14{bottom:868.733333pt;}
.y4e{bottom:873.266667pt;}
.y13{bottom:878.600000pt;}
.y76{bottom:888.466667pt;}
.y4d{bottom:888.733333pt;}
.y12{bottom:891.400000pt;}
.y4c{bottom:903.960000pt;}
.y73{bottom:906.640000pt;}
.y11{bottom:907.173333pt;}
.y4b{bottom:919.440000pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y4a{bottom:934.626667pt;}
.y70{bottom:943.173333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y49{bottom:950.106667pt;}
.ya{bottom:963.173333pt;}
.y48{bottom:965.293333pt;}
.y9{bottom:975.960000pt;}
.y6d{bottom:977.293333pt;}
.y47{bottom:980.773333pt;}
.y8{bottom:991.706667pt;}
.y46{bottom:995.960000pt;}
.y7{bottom:1007.706667pt;}
.y6b{bottom:1008.506667pt;}
.y45{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y43{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h16{height:17.333333pt;}
.h1a{height:17.366667pt;}
.ha{height:18.666667pt;}
.hd{height:24.578125pt;}
.hc{height:29.791667pt;}
.h7{height:30.104167pt;}
.h17{height:30.666667pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.h18{height:33.600000pt;}
.he{height:33.867188pt;}
.h14{height:34.625000pt;}
.h1b{height:34.933333pt;}
.h19{height:35.720000pt;}
.h11{height:37.239583pt;}
.h4{height:37.630208pt;}
.h12{height:38.828125pt;}
.hb{height:43.778125pt;}
.h15{height:43.804688pt;}
.h6{height:45.156250pt;}
.h10{height:48.671875pt;}
.hf{height:51.937500pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h13{height:206.173333pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.wb{width:107.500000pt;}
.wa{width:119.233333pt;}
.w9{width:125.366667pt;}
.w8{width:137.360000pt;}
.w6{width:225.666667pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.933333pt;}
.x2{left:9.599999pt;}
.x13{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1c{left:29.053333pt;}
.x18{left:51.733333pt;}
.x1e{left:53.626667pt;}
.x1a{left:62.440000pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.x12{left:74.700000pt;}
.x11{left:80.566655pt;}
.x10{left:84.299988pt;}
.xf{left:87.766655pt;}
.x20{left:96.033322pt;}
.xe{left:104.293333pt;}
.x9{left:136.559988pt;}
.x19{left:210.466667pt;}
.xc{left:214.740000pt;}
.x17{left:274.506655pt;}
.x6{left:276.639988pt;}
.x1b{left:336.640000pt;}
.x16{left:396.933322pt;}
.x1d{left:456.400000pt;}
.x14{left:488.173322pt;}
.xd{left:499.106667pt;}
.x8{left:550.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.x15{left:689.839988pt;}
.xa{left:722.106655pt;}
}




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